diff options
Diffstat (limited to 'src/gemma.cpp')
-rw-r--r-- | src/gemma.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gemma.cpp b/src/gemma.cpp index 4e3ae88..0ced70c 100644 --- a/src/gemma.cpp +++ b/src/gemma.cpp @@ -716,7 +716,7 @@ void GEMMA::PrintHelp(size_t option) { if (option == 14) { cout << " DEBUG OPTIONS" << endl; - cout << " -no-check disable checks" << endl; + cout << " -check enable checks (slower)" << endl; cout << " -no-fpe-check disable hardware floating point checking" << endl; cout << " -strict strict mode will stop when there is a problem" << endl; cout << " -silence silent terminal display" << endl; @@ -1603,6 +1603,9 @@ void GEMMA::Assign(int argc, char **argv, PARAM &cPar) { } else if (strcmp(argv[i], "-debug") == 0) { // cPar.mode_debug = true; debug_set_debug_mode(true); + } else if (strcmp(argv[i], "-check") == 0) { + // cPar.mode_check = false; + debug_set_check_mode(true); } else if (strcmp(argv[i], "-no-check") == 0) { // cPar.mode_check = false; debug_set_no_check_mode(true); |