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

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