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 e12cfa1 commit 12d1cf3Copy full SHA for 12d1cf3
src/pdn/src/via.cpp
@@ -1973,9 +1973,9 @@ void ViaGenerator::determineRowsAndColumns(
1973
1974
for (const auto& [rule_cuts, rule_spacing] :
1975
rule->getCutsArraySpacing()) {
1976
- if (rule_cuts > array_size_min + rule->isLongArray() ? 1 : 0) {
1977
- // this rules does not apply because the smaller dimension of the array is
1978
- // less than the rule
+ if (rule_cuts > array_size_min + (rule->isLongArray() ? 1 : 0)) {
+ // this rules does not apply because the smaller dimension of the
+ // array is less than the rule
1979
continue;
1980
}
1981
0 commit comments