Skip to content
Snippets Groups Projects
Commit 3dd27763 authored by Peter W. Draper's avatar Peter W. Draper
Browse files

Whoops first step is -1, so don't use that

parent a87a6cd6
Branches
Tags
1 merge request!191Mpi skip
...@@ -26,8 +26,8 @@ Valid options are: ...@@ -26,8 +26,8 @@ Valid options are:
-f {int} Overwrite the CPU frequency (Hz) to be used for time measurements -f {int} Overwrite the CPU frequency (Hz) to be used for time measurements
-g Run with an external gravitational potential -g Run with an external gravitational potential
-G Run with self-gravity -G Run with self-gravity
-n {int} Execute a fixed number of time steps. Defaults to -1, which means -n {int} Execute a fixed number of time steps. When unset use the time_end
use the time_end parameter to stop. parameter to stop.
-s Run with SPH -s Run with SPH
-t {int} The number of threads to use on each MPI rank. Defaults to 1 if not specified. -t {int} The number of threads to use on each MPI rank. Defaults to 1 if not specified.
-v [12] Increase the level of verbosity 1: MPI-rank 0 writes -v [12] Increase the level of verbosity 1: MPI-rank 0 writes
......
...@@ -139,7 +139,7 @@ int main(int argc, char *argv[]) { ...@@ -139,7 +139,7 @@ int main(int argc, char *argv[]) {
int with_aff = 0; int with_aff = 0;
int dry_run = 0; int dry_run = 0;
int dump_tasks = 0; int dump_tasks = 0;
int nsteps = -1; int nsteps = -2;
int with_cosmology = 0; int with_cosmology = 0;
int with_external_gravity = 0; int with_external_gravity = 0;
int with_self_gravity = 0; int with_self_gravity = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment