Skip to content

Commit

Permalink
Merge pull request #2085 from The-OpenROAD-Project-staging/drt-end-it…
Browse files Browse the repository at this point in the history
…er-fix

drt: fix end iter off by one
  • Loading branch information
maliberty authored Jul 23, 2022
2 parents d5043fd + 0a42ee8 commit c4a8479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drt/src/dr/FlexDR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2221,7 +2221,7 @@ int FlexDR::main()
if (getDesign()->getTopBlock()->getNumMarkers() == 0) {
break;
}
if (iter_ >= END_ITERATION) {
if (iter_ > END_ITERATION) {
break;
}
if (logger_->debugCheck(DRT, "snapshot", 1)) {
Expand Down

0 comments on commit c4a8479

Please sign in to comment.