#ifndef OPTIONS_H
#define OPTIONS_H
+#include <csignal> // std::sig_atomic_t
#include <string>
#include "cost_func.h"
#include "named_object_list.h"
// Simulation parameters
extern int log_rate;
- extern bool exit_request;
+ extern volatile std::sig_atomic_t exit_request;
// Platform and deployment
extern std::string platform_file;
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;