multi-driver net delay calc with multiple threads

This commit is contained in:
James Cherry 2020-03-06 15:01:28 -08:00
parent 1dbae09fb7
commit ce90db2b94
1 changed files with 3 additions and 1 deletions

View File

@ -546,8 +546,10 @@ GraphDelayCalc1::makeMultiDrvrNet(PinSet &drvr_pins)
drvr_vertices->insert(drvr_vertex);
Level drvr_level = drvr_vertex->level();
if (max_drvr == nullptr
|| drvr_level > max_drvr_level)
|| drvr_level > max_drvr_level) {
max_drvr = drvr_vertex;
max_drvr_level = drvr_level;
}
}
multi_drvr->setDcalcDrvr(max_drvr);
multi_drvr->findCaps(this, sdc_);