Skip to content

Commit

Permalink
Update sn3d.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Mar 8, 2025
1 parent 4261d73 commit 253cf21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sn3d.cc
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ auto main(int argc, char *argv[]) -> int {
// initialise or read in virtual packet spectra
vpkt_init(globals::timestep, my_rank, globals::simulation_continued_from_saved);

while (globals::timestep < std::min(globals::timestep_finish, globals::ntimesteps - 1) && !terminate_early) {
while (globals::timestep < std::min(globals::timestep_finish, globals::ntimesteps) && !terminate_early) {
MPI_Barrier(MPI_COMM_WORLD);

// titer example: Do 3 iterations on timestep 0-6
Expand Down

0 comments on commit 253cf21

Please sign in to comment.