Skip to content

Commit

Permalink
Merge pull request #5442 from luis201420/grt_track_structure_issue
Browse files Browse the repository at this point in the history
grt: adding error message when no routing layer has a track structure
  • Loading branch information
eder-matheus authored Jul 24, 2024
2 parents 6bac0a7 + 86ba70b commit adf2bb3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/grt/src/GlobalRouter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3504,6 +3504,9 @@ int GlobalRouter::computeMaxRoutingLayer()
max_routing_layer = layer;
}

if (max_routing_layer == -1) {
logger_->error(GRT, 701, "Missing track structure for routing layers.");
}
return max_routing_layer;
}

Expand Down

0 comments on commit adf2bb3

Please sign in to comment.