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:
Adam Greig 2021-04-12 13:42:20 +01:00
parent fc15105643
commit 2fdf41ac01
No known key found for this signature in database
GPG Key ID: 8B3FE5477B1DD9A0

View File

@ -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)) {