Unverified Commit d226f5d0 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

cosmetic changes

parent 35483a95
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -221,11 +221,10 @@ void Temper::command(int narg, char **arg)
    update->integrate->run(nevery);

    // check for timeout across all procs

    int my_timeout=0;
    int any_timeout=0;
    if (timer->is_timeout()){
      my_timeout=1;
    }
    if (timer->is_timeout()) my_timeout=1;
    MPI_Allreduce(&my_timeout, &any_timeout, 1, MPI_INT, MPI_SUM, universe->uworld);
    if (any_timeout) break;