Skip to content

Commit

Permalink
Merge branch 'master' into grt_arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
eder-matheus committed Jan 26, 2024
2 parents c13da34 + 5f8ba2b commit 4a355ac
Show file tree
Hide file tree
Showing 5 changed files with 17,003 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pdn/src/connect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ void Connect::populateGenerateRules()
use_fixed_via = true;
}
}
if (use_fixed_via) {
if (use_fixed_via || !fixed_tech_vias_.empty()) {
continue;
}
for (odb::dbTechViaGenerateRule* db_via : tech->getViaGenerateRules()) {
Expand Down Expand Up @@ -789,7 +789,7 @@ void Connect::populateTechVias()
use_fixed_via = true;
}
}
if (use_fixed_via) {
if (use_fixed_via || !fixed_generate_vias_.empty()) {
continue;
}
for (odb::dbTechVia* db_via : tech->getVias()) {
Expand Down
Loading

0 comments on commit 4a355ac

Please sign in to comment.