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

Private GIT Repository
Change format for log messages.
[loba.git] / options.h
1 #ifndef OPTIONS_H
2 #define OPTIONS_H
3
4 #include <string>
5 #include "cost_func.h"
6 #include "named_object_list.h"
7
8 // These classes may use include options.h, so make forward declarations
9 class deployment_generator;
10 class process;
11
12 // Global parameters, shared by all the processes
13 namespace opt {
14
15     // Constants
16     extern const double load_ratio_threshold;
17
18     // Global options
19     extern std::string program_name;
20     extern int help_requested;
21     extern bool version_requested;
22
23     // Simulation parameters
24     extern int log_rate;
25
26     // Platform and deployment
27     extern std::string platform_file;
28     extern std::string deployment_file;
29
30     // Automatic deployment
31     namespace auto_depl {
32         extern bool        enabled;
33         extern std::string topology;
34         extern unsigned    nhosts;
35         extern double      load;
36     }
37
38     // Load balancing algorithm
39     extern std::string loba_algo;
40     extern bool bookkeeping;
41     extern double min_lb_iter_duration;
42     extern unsigned comp_iter_delay;
43     extern double comp_time_delay;
44
45     // Application parameters
46     extern cost_func comp_cost;
47     extern cost_func comm_cost;
48     extern double min_comp_iter_duration;
49
50     // Parameters for the end of the simulation
51     extern unsigned lb_maxiter;
52     extern unsigned comp_maxiter;
53     extern double time_limit;
54     extern bool exit_on_close;
55
56     // Named parameters lists
57     extern struct loba_algorithms_type:
58         public named_object_list2<process, int, char** > {
59             loba_algorithms_type();
60     } loba_algorithms;
61
62     extern struct topologies_type:
63         public named_object_list<deployment_generator> {
64             topologies_type();
65     } topologies;
66
67     // Utility functions
68     bool parse_args(int* argc, char* argv[]);
69     void print();
70     void usage();
71
72 } // namespace opt
73
74 #endif // !OPTIONS_H
75
76 // Local variables:
77 // mode: c++
78 // End: