Skip to content

Commit 9ba63d4

Browse files
committed
Fixes possible infinite loop.
1 parent ab46dc0 commit 9ba63d4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

resource_estimator/src/estimates/physical_estimation/estimate_without_restrictions.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ impl<
107107
));
108108
}
109109

110-
num_cycles = max_allowed_num_cycles_for_code_parameter + 1;
110+
num_cycles = std::cmp::max(
111+
max_allowed_num_cycles_for_code_parameter + 1,
112+
num_cycles + 1,
113+
);
111114
}
112115
}
113116

0 commit comments

Comments
 (0)