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 ed062c4 commit fb75878Copy full SHA for fb75878
src/rsz/src/RepairHold.cc
@@ -405,7 +405,7 @@ bool RepairHold::repairHold(VertexSeq& ends,
405
int pass = 1;
406
while (worst_slack < hold_margin && progress && !resizer_->overMaxArea()
407
&& inserted_buffer_count_ <= max_buffer_count && pass <= max_passes
408
- && pass <= max_iterations) {
+ && (max_iterations < 0 || pass <= max_iterations)) {
409
if (verbose || pass == 1) {
410
printProgress(pass, false, false);
411
}
0 commit comments