Merge pull request #674 from adamgreig/heap-spreader-fix

HeAP: Skip high-strength cells in both cell loops
This commit is contained in:
gatecat 2021-04-12 14:16:22 +01:00 committed by GitHub
commit 5cd2a7f9c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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