Correctly print the margin in error messages. Suppress annoying CR.
This commit is contained in:
parent
2e939e5355
commit
7a6dcd1527
|
@ -485,7 +485,7 @@ typedef list<PlacementProblem*> PlacementProblemList;
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (_margin < 0.15)
|
if (_margin < 0.15)
|
||||||
cerr << Warning("Low margin %d, may not be able to complete successfully",_margin) << endl;
|
cerr << Warning("Low margin %f, may not be able to complete successfully",_margin) << endl;
|
||||||
|
|
||||||
_computeCapacity();
|
_computeCapacity();
|
||||||
}
|
}
|
||||||
|
@ -704,7 +704,7 @@ void Surface::_DisplayInstances(MaukaEngine::UVector& instanceids, SubRowList& s
|
||||||
|
|
||||||
if (srlit == subrowlist.end())
|
if (srlit == subrowlist.end())
|
||||||
{
|
{
|
||||||
if ( cmess2.enabled() ) cerr << "\n";
|
//if ( cmess2.enabled() ) cerr << "\n";
|
||||||
cerr << Warning("Mauka::_DisplayInstances(): Cannot honor Bin margin, bypassing.") << endl;
|
cerr << Warning("Mauka::_DisplayInstances(): Cannot honor Bin margin, bypassing.") << endl;
|
||||||
|
|
||||||
srlit = subrowlist.begin();
|
srlit = subrowlist.begin();
|
||||||
|
|
Loading…
Reference in New Issue