HeAP: Skip high-strength cells in both cell loops.
Previously only the first loop skipped cells with high belStrength, but they can't be processed by the second loop either, so skip them there too.
This commit is contained in:
parent
fc15105643
commit
2fdf41ac01
@ -1322,6 +1322,10 @@ class HeAPPlacer
|
||||
continue;
|
||||
}
|
||||
|
||||
if (cell.belStrength > STRENGTH_STRONG) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Transfer chain extents to the actual chains structure
|
||||
ChainExtent *ce = nullptr;
|
||||
if (p->chain_root.count(cell_name)) {
|
||||
|
Loading…
Reference in New Issue
Block a user