Skip to content

Commit

Permalink
Small aesthetical fix in LefImport.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpc-lip6 committed Nov 1, 2024
1 parent 5dcb3cd commit 52ab23d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions crlcore/src/ccore/lefdef/LefImport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ namespace {
, _nthRouting (0)
, _routingGauge (nullptr)
, _cellGauge (nullptr)
, _minTerminalWidth(Cfg::getParamInt("lefImport.minTerminalWidth",0)->asInt())
, _minTerminalWidth(DbU::fromMicrons( Cfg::getParamDouble("lefImport.minTerminalWidth",0)->asDouble() ))
{
_routingGauge = AllianceFramework::get()->getRoutingGauge();
_cellGauge = AllianceFramework::get()->getCellGauge();
Expand Down Expand Up @@ -649,7 +649,6 @@ namespace {
if (net->isGround()) parser->setGdsGround( net );
if (parser->getForeignPosition() != Point(0,0)) {
for ( Component* component : net->getComponents() ) {
cerr << "| Translate " << component << endl;
component->translate( parser->getForeignPosition().getX()
, parser->getForeignPosition().getY() );
}
Expand Down Expand Up @@ -836,9 +835,9 @@ namespace {
else parser->_pinPadPostProcess();
parser->clearPinComponents();

cerr << " o " << cellName
<< " " << DbU::getValueString(width) << " " << DbU::getValueString(height)
<< " " << gaugeName;
cmess2 << " o " << cellName
<< " " << DbU::getValueString(width) << " " << DbU::getValueString(height)
<< " " << gaugeName;
if (isPad) cerr << " (PAD)";
cerr << endl;

Expand Down

0 comments on commit 52ab23d

Please sign in to comment.