blob: 4cf1dbbbb31cda2f102908638f6b9c714a23b12c [file] [log] [blame]
#ifndef CONSTANT_NETS_H
#define CONSTANT_NETS_H
#include "clustered_netlist_fwd.h"
enum e_constant_net_method {
CONSTANT_NET_GLOBAL, //Treat constant nets as globals (i.e. not routed)
CONSTANT_NET_ROUTE //Treat constant nets a non-globals (i.e. routed)
};
void process_constant_nets(ClusteredNetlist& nlist, e_constant_net_method method, int verbosity);
#endif