]> AND Private Git Repository - loba.git/blobdiff - options.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Wip++...
[loba.git] / options.cpp
index 24ae952789781cba83c8517e0d3836d6cbf446fc..4dd53150f784f3f5f680d19b46e7082c80bb8a32 100644 (file)
@@ -17,29 +17,39 @@ namespace opt {
     int help_requested = 0;
     bool version_requested = false;
 
+    bool bookkeeping = false;
+
     cost_func comp_cost("1e9, 0"); // fixme: find better defaults
-    cost_func comm_cost("1e9, 0"); // fixme: find better defaults
 
 } // namespace opt
 
+namespace {
+
+    const char* on_off(bool b)
+    {
+        return b ? "on" : "off";
+    }
+
+}
+
 int opt::parse_args(int* argc, char* argv[])
 {
-    char *tmp = strrchr(argv[0], '/');
+    chartmp = strrchr(argv[0], '/');
     opt::program_name = (tmp ? tmp + 1 : argv[0]);
 
     int c;
     opterr = 0;
-    while ((c = getopt(*argc, argv, "hc:C:V")) != -1) {
+    while ((c = getopt(*argc, argv, "bc:hV")) != -1) {
         switch (c) {
+        case 'b':
+            opt::bookkeeping = true;
+            break;
         case 'h':
             opt::help_requested++;
             break;
         case 'c':
             opt::comp_cost = cost_func(optarg);
             break;
-        case 'C':
-            opt::comm_cost = cost_func(optarg);
-            break;
         case 'V':
             opt::version_requested = true;
             break;
@@ -74,8 +84,8 @@ void opt::print()
     INFO0(",----[ Simulation parameters ]");
     INFO1("| platform_file.......: \"%s\"", opt::platform_file);
     INFO1("| application_file....: \"%s\"", opt::application_file);
-    INFO1("| comp. cost factors..: [%s]", opt::comp_cost.to_string().c_str());
-    INFO1("| comm. cost factors..: [%s]", opt::comm_cost.to_string().c_str());
+    INFO1("| bookkeeping.........: %s",     on_off(opt::bookkeeping));
+    INFO1("| comp. cost factors..: [%s]",   opt::comp_cost.to_string().c_str());
     INFO0("`----");
 }
 
@@ -97,12 +107,10 @@ void opt::usage()
     if (opt::help_requested < 1)
         return;
     std::clog << o("-V") << "print version and exit\n";
+    std::clog << o("-b") << "activate bookkeeping\n";
     std::clog << oo("-c", "[fn,...]f0")
               << "polynomial factors for computation cost ("
               << opt::comp_cost.to_string() << ")\n";
-    std::clog << oo("-C", "[fn,...]f0")
-              << "polynomial factors for communication cost ("
-              << opt::comm_cost.to_string() << ")\n";
 
 #undef o
 #undef oo