Merge pull request #674 from adamgreig/heap-spreader-fix
HeAP: Skip high-strength cells in both cell loops
This commit is contained in:
commit
5cd2a7f9c2
@ -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