Apply library bloating during free space computation

This commit is contained in:
Gabriel Gouvine 2023-06-29 14:37:46 +02:00
parent dcf3e7bd77
commit ffb5e38de2
1 changed files with 1 additions and 1 deletions

View File

@ -754,7 +754,7 @@ namespace Etesian {
for ( Occurrence occurrence : getCell()->getTerminalNetlistInstanceOccurrences(getBlockInstance()) ) {
++instancesNb;
Instance* instance = static_cast<Instance*>(occurrence.getEntity());
Box instanceAb = instance->getAbutmentBox();
Box instanceAb = _bloatCells.getAb( occurrence );
string masterName = getString( instance->getMasterCell()->getName() );
DbU::Unit length = (instanceAb.getHeight() / sliceHeight) * instanceAb.getWidth();
if (af->isRegister(masterName)) {