Skip to content
Snippets Groups Projects
Commit 5d405d0a authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Added the new runtime option to the documentation.

parent 41b0438b
No related branches found
No related tags found
1 merge request!956Fully implement the timestep limiter (non MPI)
...@@ -41,7 +41,9 @@ Parameters: ...@@ -41,7 +41,9 @@ Parameters:
black holes seeding. black holes seeding.
-x, --velociraptor Run with structure finding. -x, --velociraptor Run with structure finding.
--limiter Run with time-step limiter. --limiter Run with time-step limiter.
--sync Run with time-step synchronization
of particles hit by feedback events.
Control options: Control options:
-a, --pin Pin runners using processor affinity. -a, --pin Pin runners using processor affinity.
......
...@@ -92,6 +92,8 @@ Parameters: ...@@ -92,6 +92,8 @@ Parameters:
perform black hole seeding. perform black hole seeding.
-x, --velociraptor Run with structure finding. -x, --velociraptor Run with structure finding.
--limiter Run with time-step limiter. --limiter Run with time-step limiter.
--sync Run with time-step synchronization
of particles hit by feedback events.
Control options: Control options:
......
...@@ -38,6 +38,8 @@ can be found by typing ``./swift -h``: ...@@ -38,6 +38,8 @@ can be found by typing ``./swift -h``:
perform black hole seeding. perform black hole seeding.
-x, --velociraptor Run with structure finding. -x, --velociraptor Run with structure finding.
--limiter Run with time-step limiter. --limiter Run with time-step limiter.
--sync Run with time-step synchronization
of particles hit by feedback events.
Control options: Control options:
......
...@@ -222,7 +222,9 @@ int main(int argc, char *argv[]) { ...@@ -222,7 +222,9 @@ int main(int argc, char *argv[]) {
"Run with structure finding.", NULL, 0, 0), "Run with structure finding.", NULL, 0, 0),
OPT_BOOLEAN(0, "limiter", &with_timestep_limiter, OPT_BOOLEAN(0, "limiter", &with_timestep_limiter,
"Run with time-step limiter.", NULL, 0, 0), "Run with time-step limiter.", NULL, 0, 0),
OPT_BOOLEAN(0, "sync", &with_timestep_sync, "Run with time-step sync.", OPT_BOOLEAN(0, "sync", &with_timestep_sync,
"Run with time-step synchronization of particles hit by "
"feedback events.",
NULL, 0, 0), NULL, 0, 0),
OPT_GROUP(" Control options:\n"), OPT_GROUP(" Control options:\n"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment