Skip to content

Commit

Permalink
fix logic so that only one step is taken if mres_step > M
Browse files Browse the repository at this point in the history
  • Loading branch information
dpanici committed Oct 19, 2023
1 parent 68718dc commit bf580f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desc/continuation.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _solve_axisym(

ii = 0
stop = False
while ii <= mres_steps and not stop:
while ii < mres_steps and not stop:
timer.start("Iteration {} total".format(ii + 1))

if ii > 0:
Expand Down

0 comments on commit bf580f4

Please sign in to comment.