* ./katabatic:

- Change: In KatabaticEngine, change messages of unmanaged nets from warning
        to info.
This commit is contained in:
Jean-Paul Chaput 2012-12-22 18:22:38 +00:00
parent 8c79521982
commit 2913d8aea1
1 changed files with 4 additions and 4 deletions

View File

@ -506,8 +506,8 @@ namespace Katabatic {
if ( net->getType() == Net::Type::GROUND ) excludedType = "GROUND"; if ( net->getType() == Net::Type::GROUND ) excludedType = "GROUND";
if ( net->getType() == Net::Type::CLOCK ) excludedType = "CLOCK"; if ( net->getType() == Net::Type::CLOCK ) excludedType = "CLOCK";
if ( excludedType ) { if ( excludedType ) {
cerr << Warning("%s is not a routable net (%s,excluded)." cout << "[INFO] " << getString(*net).c_str() << " is not a routable net ("
,getString(*net).c_str(),excludedType) << endl; << excludedType << ",excluded)." << endl;
continue; continue;
} }
if ( af->isBLOCKAGE(net->getName()) ) continue; if ( af->isBLOCKAGE(net->getName()) ) continue;
@ -522,8 +522,8 @@ namespace Katabatic {
if ( (*it)->getType() == Net::Type::CLOCK ) excludedType = "CLOCK"; if ( (*it)->getType() == Net::Type::CLOCK ) excludedType = "CLOCK";
if ( af->isBLOCKAGE((*it)->getName()) ) excludedType = "BLOCKAGE"; if ( af->isBLOCKAGE((*it)->getName()) ) excludedType = "BLOCKAGE";
if ( excludedType ) { if ( excludedType ) {
cerr << Warning("%s is not a routable net (%s), removed from set." cout << "[INFO] " << getString(*it).c_str() << " is not a routable net ("
,getString(*it).c_str(),excludedType) << endl; << excludedType << "), removed from set." << endl;
} else } else
_routingNets.insert ( *it ); _routingNets.insert ( *it );
} }