+namespace {
+ // Failure exit status
+ enum {
+ EXIT_NO_FAILURE = 0x00, // no error
+ EXIT_FAILURE_ARGS = 0x01, // bad arguments
+ EXIT_FAILURE_INIT = 0x02, // failed to initialize simulator
+ EXIT_FAILURE_SIMU = 0x04, // simulation failed
+ EXIT_FAILURE_CLEAN = 0x08, // error at cleanup
+ };
+
+ std::vector<double> comps;
+ double comp_total;
+ double comp_avg;
+ double comp_stddev;
+
+ std::vector<double> loads;
+ double load_avg;
+ double load_stddev;
+}
+
+static int simulation_main(int argc, char* argv[])
+{
+ int result;
+ process* proc;
+ try {
+ proc = opt::loba_algorithms.new_instance(opt::loba_algo, argc, argv);
+ result = proc->run();
+ comps.push_back(proc->get_comp());
+ loads.push_back(proc->get_load());
+ delete proc;
+ }
+ catch (std::invalid_argument& e) {
+ THROW1(arg_error, 0, "%s", e.what());
+ }
+ return result;
+}
+
+static void check_for_lost_load()
+{
+ double total_init = process::get_total_load_init();
+
+ double total_exit = process::get_total_load_exit();
+ double lost = total_init - total_exit;
+ double lost_ratio = 100.0 * lost / total_init;
+ if (lost_ratio < -opt::load_ratio_threshold)
+ CRITICAL2("Gained load at exit! %g (%g%%) <============",
+ lost, lost_ratio);
+ else if (lost_ratio > opt::load_ratio_threshold)
+ CRITICAL2("Lost load at exit! %g (%g%%) <============",
+ lost, lost_ratio);
+ else
+ DEBUG2("Total load at exit looks good: %g (%g%%)", lost, lost_ratio);