We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bf8123 commit 6f62c9dCopy full SHA for 6f62c9d
src/gpl/src/routeBase.cpp
@@ -738,12 +738,16 @@ std::pair<bool, bool> RouteBase::routability(
738
739
// max density detection
740
if (nbVec_[i]->getTargetDensity() > rbVars_.maxDensity) {
741
+ string group_text;
742
+ if (nbVec_[i]->group()) {
743
+ group_text = " in group " + string(nbVec_[i]->group()->getName());
744
+ }
745
log_->info(GPL,
746
53,
- "Target density {:.4f} exceeds the maximum allowed {:.4f} in group {}.",
747
+ "Target density {:.4f} exceeds the maximum allowed {:.4f}{}.",
748
nbVec_[i]->getTargetDensity(),
749
rbVars_.maxDensity,
- nbVec_[i]->group()->getName());
750
+ group_text);
751
752
revertToMinCongestion();
753
return std::make_pair(false, true);
0 commit comments