Comment out debug messages in GdsDriver & GdsParser.
This commit is contained in:
parent
2002282483
commit
dd28bbba7a
|
@ -721,6 +721,8 @@ namespace {
|
||||||
if (cell->getName() == "control_r") return *this;
|
if (cell->getName() == "control_r") return *this;
|
||||||
if (not hasLayout(cell)) return *this;
|
if (not hasLayout(cell)) return *this;
|
||||||
|
|
||||||
|
//cerr << "GdsStream::operator<<(Cell*): " << getString(cell) << endl;
|
||||||
|
|
||||||
Technology* tech = DataBase::getDB()->getTechnology();
|
Technology* tech = DataBase::getDB()->getTechnology();
|
||||||
|
|
||||||
time_t t = time( 0 );
|
time_t t = time( 0 );
|
||||||
|
@ -746,6 +748,7 @@ namespace {
|
||||||
for ( Instance* instance : cell->getInstances() ) {
|
for ( Instance* instance : cell->getInstances() ) {
|
||||||
if (instance->getMasterCell()->getName() == "control_r") continue;
|
if (instance->getMasterCell()->getName() == "control_r") continue;
|
||||||
if (not hasLayout(instance->getMasterCell())) continue;
|
if (not hasLayout(instance->getMasterCell())) continue;
|
||||||
|
//cerr << "| " << getString(instance) << endl;
|
||||||
|
|
||||||
if (instance->getPlacementStatus() == Instance::PlacementStatus::UNPLACED) continue;
|
if (instance->getPlacementStatus() == Instance::PlacementStatus::UNPLACED) continue;
|
||||||
|
|
||||||
|
|
|
@ -867,7 +867,7 @@ namespace {
|
||||||
string cellName = "gds_" + _record.getName();
|
string cellName = "gds_" + _record.getName();
|
||||||
_cell = _library->getCell( cellName );
|
_cell = _library->getCell( cellName );
|
||||||
if (not _cell) {
|
if (not _cell) {
|
||||||
cerr << Warning( "GdsStream::readStructure(): No Cell named \"gds_%s\" in Library \"%s\" (created)."
|
cparanoid << Warning( "GdsStream::readStructure(): No Cell named \"gds_%s\" in Library \"%s\" (created)."
|
||||||
, _record.getName().c_str()
|
, _record.getName().c_str()
|
||||||
, getString(_library).c_str()
|
, getString(_library).c_str()
|
||||||
) << endl;
|
) << endl;
|
||||||
|
|
Loading…
Reference in New Issue