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

Private GIT Repository
Do not call flush automatically in communcator::send...
[loba.git] / options.h
index e751535bd8f0b3a3a1e9cb2ede251e57a8818103..37a4d8c71159873f99b7c691cc8a5359ed768da4 100644 (file)
--- a/options.h
+++ b/options.h
@@ -10,6 +10,9 @@
 // Global parameters, shared by all the processes
 namespace opt {
 
 // Global parameters, shared by all the processes
 namespace opt {
 
+    // Constants
+    extern const double load_ratio_threshold;
+
     // Global options
     extern std::string program_name;
     extern int help_requested;
     // Global options
     extern std::string program_name;
     extern int help_requested;
@@ -37,7 +40,8 @@ namespace opt {
     // Application parameters
     extern cost_func comp_cost;
     extern cost_func comm_cost;
     // Application parameters
     extern cost_func comp_cost;
     extern cost_func comm_cost;
-    extern unsigned maxiter;
+    extern unsigned comp_maxiter;
+    extern unsigned lb_maxiter;
     extern bool exit_on_close;
 
     // Named parameters lists
     extern bool exit_on_close;
 
     // Named parameters lists
@@ -52,7 +56,7 @@ namespace opt {
     } topologies;
 
     // Utility functions
     } topologies;
 
     // Utility functions
-    int parse_args(int* argc, char* argv[]);
+    bool parse_args(int* argc, char* argv[]);
     void print();
     void usage();
 
     void print();
     void usage();