blob: 133ce40dad522ad2837fc41c5d72a9a0e40a51c1 [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);
#endif