Skip to content

Commit

Permalink
Not a vote
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdempsey90 committed Aug 23, 2024
1 parent abc0c6c commit 21bed3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/driver/driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ void EvolutionDriver::SetGlobalTimeStep() {
tm.dt = std::min(tm.dt, pmb->NewDt());
pmb->SetAllowedDt(std::numeric_limits<Real>::max());
}
// Allow the user to vote
// Allow the user to enforce maximum timestep
tm.dt = std::min(tm.dt, dt_user);
// Force timestep to be in the allowable range
tm.dt = std::max(dt_floor, std::min(tm.dt, dt_ceil));
Expand Down

0 comments on commit 21bed3a

Please sign in to comment.