Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
maggul committed Sep 11, 2024
1 parent 3cf2dd3 commit dd71653
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmarks/diffusion_2D/main_arkode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ void UserOptions::help()
cout << endl;
cout << "Integrator command line options:" << endl;
cout << " --rtol <rtol> : relative tolerance" << endl;
cout << " --atol <atol> : absoltue tolerance" << endl;
cout << " --atol <atol> : absolute tolerance" << endl;
cout << " --controller <ctr> : time step adaptivity controller" << endl;
cout << " --fixedstep <step> : used fixed step size" << endl;
cout << " --explicit : use LSRKStep (instead of ARKStep)" << endl;
Expand Down
2 changes: 1 addition & 1 deletion examples/arkode/CXX_manyvector/ark_sod_lsrk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ static void InputHelp()
cout << " --gamma <real> : ideal gas constant\n";
cout << " --nx <int> : number of mesh points\n";
cout << " --rtol <real> : relative tolerance\n";
cout << " --atol <real> : absoltue tolerance\n";
cout << " --atol <real> : absolute tolerance\n";
cout << " --fixed_h <real> : fixed step size\n";
cout << " --maxsteps <int> : max steps between outputs\n";
cout << " --output <int> : output level\n";
Expand Down
2 changes: 1 addition & 1 deletion examples/arkode/CXX_parallel/ark_heat2D_lsrk_p.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,7 @@ static void InputHelp()
cout << " --noforcing : disable forcing term" << endl;
cout << " --tf <time> : final time" << endl;
cout << " --rtol <rtol> : relative tolerance" << endl;
cout << " --atol <atol> : absoltue tolerance" << endl;
cout << " --atol <atol> : absolute tolerance" << endl;
cout << " --fixedstep <step> : used fixed step size" << endl;
cout << " --controller <ctr> : time step adaptivity controller" << endl;
cout << " --method <mth> : LSRK method choice" << endl;
Expand Down

0 comments on commit dd71653

Please sign in to comment.