Skip to content

Commit

Permalink
Remove forgotten log trace in Katana::rsetNoExtractFlag().
Browse files Browse the repository at this point in the history
  • Loading branch information
jpc-lip6 committed Aug 14, 2024
1 parent 8bf4562 commit d923e48
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions katana/src/KatanaEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,9 @@ namespace {
if (processeds.find(cell) != processeds.end()) return;
processeds.insert( cell );
}
cerr << "Look for depth=" << depth << " " << cell << endl;

if (cell->isRouted() or cell->isTerminalNetlist()) return;
if (depth) {
cell->setNoExtractConsistent( true );
cerr << "FLAG " << cell << " " << cell->isExtractConsistent() << endl;
}
if (depth) cell->setNoExtractConsistent( true );

for ( Instance* instance : cell->getInstances() )
rsetNoExtractFlag( instance->getMasterCell(), depth+1 );
Expand Down

0 comments on commit d923e48

Please sign in to comment.