tChanged input arguments - sphere - GPU-based 3D discrete element method algorithm with optional fluid coupling
(HTM) git clone git://src.adamsgaard.dk/sphere
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit 68a49f80dc94fb880984eb0b4f2b393a8756d1d3
(DIR) parent 8f7887e73874905c6326d16096840858bfa50c2f
(HTM) Author: Anders Damsgaard <adc@geo.au.dk>
Date: Tue, 27 Nov 2012 12:50:37 +0100
Changed input arguments
Diffstat:
M src/main.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
(DIR) diff --git a/src/main.cpp b/src/main.cpp
t@@ -50,9 +50,9 @@ int main(const int argc, const char *argv[])
<< "-q, --quiet\t\tsuppress status messages to stdout\n"
<< "-n, --dry\t\tshow key experiment parameters and quit\n"
<< "-r, --render\t\trender input files instead of simulating temporal evolution\n"
- << "-dcv, --dpnt-check-values\t\tdon't check values before running\n"
+ << "-dc, --dont-check\t\tdon't check values before running\n"
<< "Raytracer (-r) specific options:\n"
- << "-m <method> <maxval>, --method <method> <maxval>\tcolor visualization method, possible values:\n"
+ << "-m <method> <maxval>, --method <method> <maxval>\n\tcolor visualization method, possible values:\n"
<< "\t\t\t\tpres, vel, angvel, xdisp, angpos\n"
<< std::endl;
return 0; // Exit with success
t@@ -82,7 +82,7 @@ int main(const int argc, const char *argv[])
else if (argvi == "-r" || argvi == "--render")
render = 1;
- else if (argvi == "-dcv" || argvi == "--dont-check-values")
+ else if (argvi == "-dc" || argvi == "--dont-check")
checkVals = 0;
else if (argvi == "-m" || argvi == "--method") {