X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/014983949544db9a324cece29a0ccc46b1e3e1f3..0dd2651f302ede2afb676a68211474f2b3a9b5c1:/options.h?ds=sidebyside diff --git a/options.h b/options.h index e751535..d507208 100644 --- a/options.h +++ b/options.h @@ -3,13 +3,18 @@ #include #include "cost_func.h" -#include "deployment.h" #include "named_object_list.h" -#include "process.h" + +// These classes may use include options.h, so make forward declarations +class deployment_generator; +class process; // 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 +42,10 @@ namespace opt { // Application parameters extern cost_func comp_cost; extern cost_func comm_cost; - extern unsigned maxiter; + + // Parameters for the end of the simulation + extern unsigned comp_maxiter; + extern unsigned lb_maxiter; extern bool exit_on_close; // Named parameters lists @@ -52,7 +60,7 @@ namespace opt { } topologies; // Utility functions - int parse_args(int* argc, char* argv[]); + bool parse_args(int* argc, char* argv[]); void print(); void usage();