We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9e73c7 commit ec576f6Copy full SHA for ec576f6
src/grt/src/cugr/src/Design.cpp
@@ -71,7 +71,8 @@ void Design::readNetlist()
71
{
72
int net_index = 0;
73
for (odb::dbNet* db_net : block_->getNets()) {
74
- if (db_net->isSpecial() || db_net->getSigType().isSupply()) {
+ if (db_net->isSpecial() || db_net->getSigType().isSupply()
75
+ || !db_net->getSWires().empty() || db_net->isConnectedByAbutment()) {
76
continue;
77
}
78
0 commit comments