extern std::string program_name;
extern int help_requested;
extern bool version_requested;
- extern int option_x; // hidden option, for debugging purpose
+ extern int option_x; // hidden option (int), for testing
+ extern double option_X; // hidden option (double), for testing
// Simulation parameters
extern int log_rate;
// Load balancing algorithm
extern std::string loba_algo;
extern bool bookkeeping;
+ extern bool egocentric;
extern double min_transfer_amount;
extern double max_transfer_amount;
extern double min_lb_iter_duration;
+ extern bool integer_transfer;
// Application parameters
extern cost_func comp_cost;