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

Private GIT Repository
Use numerical algorithms for stddev computation.
[loba.git] / options.h
index 4e352c604f30fb914429c985dc35d21689df0378..838dfa020233fe2820d3e8189c0c330c3daf6735 100644 (file)
--- a/options.h
+++ b/options.h
@@ -3,12 +3,16 @@
 
 #include <string>
 #include "cost_func.h"
 
 #include <string>
 #include "cost_func.h"
+#include "deployment.h"
 #include "named_object_list.h"
 #include "process.h"
 
 // Global parameters, shared by all the processes
 namespace opt {
 
 #include "named_object_list.h"
 #include "process.h"
 
 // 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;
@@ -45,15 +49,13 @@ namespace opt {
             loba_algorithms_type();
     } loba_algorithms;
 
             loba_algorithms_type();
     } loba_algorithms;
 
-#if 0
     extern struct topologies_type:
     extern struct topologies_type:
-        public named_object_list<xxx> {
+        public named_object_list<deployment_generator> {
             topologies_type();
     } topologies;
             topologies_type();
     } topologies;
-#endif
 
     // Utility functions
 
     // Utility functions
-    int parse_args(int* argc, char* argv[]);
+    bool parse_args(int* argc, char* argv[]);
     void print();
     void usage();
 
     void print();
     void usage();