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.
2 parents fdf1122 + a8537dc commit f4d2f0eCopy full SHA for f4d2f0e
src/ant/src/AntennaChecker.cc
@@ -1098,9 +1098,15 @@ bool AntennaChecker::designIsPlaced()
1098
}
1099
1100
1101
- for (odb::dbInst* inst : block_->getInsts()) {
1102
- if (!inst->isPlaced()) {
1103
- return false;
+ for (odb::dbNet* net : block_->getNets()) {
+ if (net->isSpecial()) {
+ continue;
1104
+ }
1105
+ for (odb::dbITerm* iterm : net->getITerms()) {
1106
+ odb::dbInst* inst = iterm->getInst();
1107
+ if (!inst->isPlaced()) {
1108
+ return false;
1109
1110
1111
1112
0 commit comments