1717#include " dbProperty.h"
1818#include " dbTable.h"
1919#include " dbUnfoldedChipBumpInst.h"
20+ #include " dbUnfoldedChipConn.h"
2021#include " dbUnfoldedChipInst.h"
2122#include " dbUnfoldedChipNet.h"
2223#include " dbUnfoldedChipRegionInst.h"
23- #include " dbUnfoldedConn.h"
2424#include " odb/db.h"
2525#include " odb/dbSet.h"
2626// User Code Begin Includes
@@ -138,7 +138,7 @@ bool _dbDatabase::operator==(const _dbDatabase& rhs) const
138138 if (*unfolded_chip_bump_inst_tbl_ != *rhs.unfolded_chip_bump_inst_tbl_ ) {
139139 return false ;
140140 }
141- if (*unfolded_conn_tbl_ != *rhs.unfolded_conn_tbl_ ) {
141+ if (*unfolded_chip_conn_tbl_ != *rhs.unfolded_chip_conn_tbl_ ) {
142142 return false ;
143143 }
144144 if (*unfolded_chip_net_tbl_ != *rhs.unfolded_chip_net_tbl_ ) {
@@ -228,11 +228,11 @@ _dbDatabase::_dbDatabase(_dbDatabase* db)
228228 this ,
229229 (GetObjTbl_t) &_dbDatabase::getObjectTable,
230230 dbUnfoldedChipBumpInstObj);
231- unfolded_conn_tbl_
232- = new dbTable<_dbUnfoldedConn>( this ,
233- this ,
234- (GetObjTbl_t) &_dbDatabase::getObjectTable,
235- dbUnfoldedConnObj );
231+ unfolded_chip_conn_tbl_ = new dbTable<_dbUnfoldedChipConn>(
232+ this ,
233+ this ,
234+ (GetObjTbl_t) &_dbDatabase::getObjectTable,
235+ dbUnfoldedChipConnObj );
236236 unfolded_chip_net_tbl_ = new dbTable<_dbUnfoldedChipNet>(
237237 this ,
238238 this ,
@@ -513,8 +513,8 @@ dbObjectTable* _dbDatabase::getObjectTable(dbObjectType type)
513513 return unfolded_chip_region_inst_tbl_;
514514 case dbUnfoldedChipBumpInstObj:
515515 return unfolded_chip_bump_inst_tbl_;
516- case dbUnfoldedConnObj :
517- return unfolded_conn_tbl_ ;
516+ case dbUnfoldedChipConnObj :
517+ return unfolded_chip_conn_tbl_ ;
518518 case dbUnfoldedChipNetObj:
519519 return unfolded_chip_net_tbl_;
520520 // User Code Begin getObjectTable
@@ -553,7 +553,8 @@ void _dbDatabase::collectMemInfo(MemInfo& info)
553553 info.children [" unfolded_chip_region_inst_tbl_" ]);
554554 unfolded_chip_bump_inst_tbl_->collectMemInfo (
555555 info.children [" unfolded_chip_bump_inst_tbl_" ]);
556- unfolded_conn_tbl_->collectMemInfo (info.children [" unfolded_conn_tbl_" ]);
556+ unfolded_chip_conn_tbl_->collectMemInfo (
557+ info.children [" unfolded_chip_conn_tbl_" ]);
557558 unfolded_chip_net_tbl_->collectMemInfo (
558559 info.children [" unfolded_chip_net_tbl_" ]);
559560
@@ -578,7 +579,7 @@ _dbDatabase::~_dbDatabase()
578579 delete unfolded_chip_inst_tbl_;
579580 delete unfolded_chip_region_inst_tbl_;
580581 delete unfolded_chip_bump_inst_tbl_;
581- delete unfolded_conn_tbl_ ;
582+ delete unfolded_chip_conn_tbl_ ;
582583 delete unfolded_chip_net_tbl_;
583584 // User Code Begin Destructor
584585 delete tech_tbl_;
@@ -758,10 +759,10 @@ dbSet<dbUnfoldedChipBumpInst> dbDatabase::getUnfoldedChipBumpInsts() const
758759 return dbSet<dbUnfoldedChipBumpInst>(obj, obj->unfolded_chip_bump_inst_tbl_ );
759760}
760761
761- dbSet<dbUnfoldedConn > dbDatabase::getUnfoldedConns () const
762+ dbSet<dbUnfoldedChipConn > dbDatabase::getUnfoldedChipConns () const
762763{
763764 _dbDatabase* obj = (_dbDatabase*) this ;
764- return dbSet<dbUnfoldedConn >(obj, obj->unfolded_conn_tbl_ );
765+ return dbSet<dbUnfoldedChipConn >(obj, obj->unfolded_chip_conn_tbl_ );
765766}
766767
767768dbSet<dbUnfoldedChipNet> dbDatabase::getUnfoldedChipNets () const
0 commit comments