Skip to content

Commit

Permalink
Minor follow-up for #258.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminRodenberg committed May 28, 2023
1 parent d280ec6 commit a97b745
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ while (not simulationDone()){ // time loop
solverDt = beginTimeStep(); // e.g. compute adaptive dt
dt = min(preciceDt, solverDt);
solveTimeStep(dt);
preciceDt = precice.advance(dt);
precice.advance(dt);
endTimeStep(); // e.g. update variables, increment time
}
```
Expand Down

0 comments on commit a97b745

Please sign in to comment.