Filter new type of RoutingGauge in KatanaEngine::annotateGlobalGraph().
* Change: RoutingGauge in KatanaEngine::annotateGlobalGraph(), when accounting for obstacles, skip new types of RoutingGauges that are not accounted either when computing initial edge capacity in EdgeCapacity CTOR. Now only take into account the "Default" kind.
This commit is contained in:
parent
5cd83019db
commit
373cbe9835
|
@ -473,7 +473,7 @@ namespace Katana {
|
|||
|
||||
for ( size_t depth=0 ; depth<_routingPlanes.size() ; ++depth ) {
|
||||
RoutingPlane* rp = _routingPlanes[depth];
|
||||
if (rp->getLayerGauge()->getType() == Constant::PinOnly) continue;
|
||||
if (rp->getLayerGauge()->getType() != Constant::Default) continue;
|
||||
if (rp->getLayerGauge()->getDepth() > getConfiguration()->getAllowedDepth()) continue;
|
||||
|
||||
int elementCapacity = 1;
|
||||
|
|
Loading…
Reference in New Issue