Skip to content
Snippets Groups Projects
Commit 4d41f63f authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Merge branch 'fix/reproductible-sum-cli-option' into 'develop'

Fix command line option for reproducible summations

See merge request !189
parents d1fabcaa 0ed26721
No related branches found
No related tags found
1 merge request!189Fix command line option for reproducible summations
......@@ -130,7 +130,7 @@ initialize(int& argc, char* argv[])
app.add_flag("-p,--pause-on-error", pause_on_error, "Pause for debugging on unexpected error [default: false]");
bool reproducible_sums = true;
app.add_flag("--reproducible-sums,!--no-reproducible-sums", show_preamble,
app.add_flag("--reproducible-sums,!--no-reproducible-sums", reproducible_sums,
"Special treatment of array sums to ensure reproducibility [default: true]");
app.add_flag("--parallel-output", parallel_output, "All MPI processes output to console [default: false]");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment