X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/5279f43fc9be71815091e79c76d5bc04c8c88421..f620be5869815a0dccd5b37089c2ee91399915e4:/options.cpp diff --git a/options.cpp b/options.cpp index 18d4613..a16023a 100644 --- a/options.cpp +++ b/options.cpp @@ -19,6 +19,8 @@ namespace opt { int help_requested = 0; bool version_requested = false; + unsigned log_rate = 1; + unsigned maxiter = 4; bool exit_on_close = false; @@ -46,7 +48,7 @@ int opt::parse_args(int* argc, char* argv[]) int c; opterr = 0; - while ((c = getopt(*argc, argv, "bc:ehi:V")) != -1) { + while ((c = getopt(*argc, argv, "bc:ehi:l:V")) != -1) { switch (c) { case 'b': opt::bookkeeping = true; @@ -63,6 +65,9 @@ int opt::parse_args(int* argc, char* argv[]) case 'i': std::istringstream(optarg) >> opt::maxiter; break; + case 'l': + std::istringstream(optarg) >> opt::log_rate; + break; case 'V': opt::version_requested = true; break; @@ -103,6 +108,7 @@ void opt::print() INFO0(",----[ Simulation parameters ]"); INFO1("| platform_file.......: \"%s\"", opt::platform_file); INFO1("| application_file....: \"%s\"", opt::application_file); + INFO1("| log rate............: %u", opt::log_rate); INFO1("| maxiter.............: %u", opt::maxiter); INFO1("| exit on close.......: %s", on_off(opt::exit_on_close)); INFO1("| bookkeeping.........: %s", on_off(opt::bookkeeping)); @@ -137,6 +143,9 @@ void opt::usage() std::clog << oo("-i", "value") << "maximum number of iterations, 0 for infinity (" << opt::maxiter << ")\n"; + std::clog << oo("-l", "value") + << "print current load every \"value\" iterations, 0 to disable (" + << opt::log_rate << ")\n"; #undef o #undef oo