Skip to content

Commit

Permalink
Removed call to StopRequested() in Iterate_p() to avoid excessive IO …
Browse files Browse the repository at this point in the history
…calls (#36)
  • Loading branch information
tiagopereira committed Sep 20, 2022
1 parent 99acbd9 commit 8f2bc61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rh15d/iterate_p.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void Iterate_p(int NmaxIter, double iterLimit)
else
input.prdswitch = 1.0;

while (niter <= NmaxIter && !StopRequested()) {
while (niter <= NmaxIter) {
getCPU(2, TIME_START, NULL);

for (nact = 0; nact < atmos.Nactiveatom; nact++)
Expand Down

0 comments on commit 8f2bc61

Please sign in to comment.