@@ -2655,7 +2655,7 @@ Net* dbNetwork::mergedInto(Net*)
26552655
26562656bool dbNetwork::isSpecial (Net* net)
26572657{
2658- dbNet* db_net = getOrFindFlatDbNet (net);
2658+ dbNet* db_net = findFlatDbNet (net);
26592659 return (db_net && db_net->isSpecial ());
26602660}
26612661
@@ -3977,15 +3977,15 @@ void dbNetwork::checkAxioms()
39773977// If the net is already a flat net, it is returned as is.
39783978// If the net is a hierarchical net (dbModNet), find the associated dbNet and
39793979// return it as Net*.
3980- Net* dbNetwork::getOrFindFlatNet (const Net* net) const
3980+ Net* dbNetwork::findFlatNet (const Net* net) const
39813981{
3982- return dbToSta (getOrFindFlatDbNet (net));
3982+ return dbToSta (findFlatDbNet (net));
39833983}
39843984
39853985// Given a net that may be hierarchical, find the corresponding flat dbNet.
39863986// If the net is already a flat net (dbNet), it is returned as is.
39873987// If the net is a hierarchical net (dbModNet), find the associated dbNet.
3988- dbNet* dbNetwork::getOrFindFlatDbNet (const Net* net) const
3988+ dbNet* dbNetwork::findFlatDbNet (const Net* net) const
39893989{
39903990 if (!net) {
39913991 return nullptr ;
@@ -4010,14 +4010,14 @@ dbNet* dbNetwork::getOrFindFlatDbNet(const Net* net) const
40104010
40114011// Find the flat net connected to the pin.
40124012// This function handles both internal instance pins and top-level port pins.
4013- Net* dbNetwork::getOrFindFlatNet (const Pin* pin) const
4013+ Net* dbNetwork::findFlatNet (const Pin* pin) const
40144014{
4015- return dbToSta (getOrFindFlatDbNet (pin));
4015+ return dbToSta (findFlatDbNet (pin));
40164016}
40174017
40184018// Find the flat net (dbNet) connected to the pin in the OpenDB database.
40194019// This function handles both internal instance pins and top-level port pins.
4020- dbNet* dbNetwork::getOrFindFlatDbNet (const Pin* pin) const
4020+ dbNet* dbNetwork::findFlatDbNet (const Pin* pin) const
40214021{
40224022 dbNet* db_net = nullptr ;
40234023 if (isTopLevelPort (pin)) {
0 commit comments