X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/014983949544db9a324cece29a0ccc46b1e3e1f3..afd307b9711af19f9053bad1aec0b8e60c3ea467:/options.h diff --git a/options.h b/options.h index e751535..37a4d8c 100644 --- a/options.h +++ b/options.h @@ -10,6 +10,9 @@ // 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; @@ -37,7 +40,8 @@ namespace opt { // 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 @@ -52,7 +56,7 @@ namespace opt { } topologies; // Utility functions - int parse_args(int* argc, char* argv[]); + bool parse_args(int* argc, char* argv[]); void print(); void usage();