@@ -106,6 +108,7 @@ int main(int argc, char ** argv)
...
@@ -106,6 +108,7 @@ int main(int argc, char ** argv)
args::ValueFlag<string>flag_variant_options(parser,"options","Sets the scheduling variant options. Must be formatted as a JSON object.",{"variant_options"},"{}");
args::ValueFlag<string>flag_variant_options(parser,"options","Sets the scheduling variant options. Must be formatted as a JSON object.",{"variant_options"},"{}");
args::ValueFlag<string>flag_variant_options_filepath(parser,"options-filepath","Sets the scheduling variant options as the content of the given filepath. Overrides the variant_options options.",{"variant_options_filepath"},"");
args::ValueFlag<string>flag_variant_options_filepath(parser,"options-filepath","Sets the scheduling variant options as the content of the given filepath. Overrides the variant_options options.",{"variant_options_filepath"},"");
args::ValueFlag<string>flag_queue_order(parser,"order","Sets the queue order. Available values are "+queue_orders_string,{'o',"queue_order"},"fcfs");
args::ValueFlag<string>flag_queue_order(parser,"order","Sets the queue order. Available values are "+queue_orders_string,{'o',"queue_order"},"fcfs");
args::ValueFlag<string>flag_verbosity_level(parser,"verbosity-level","Sets the verbosity level. Available values are "+verbosity_levels_string,{"verbosity"},"info");
args::ValueFlag<bool>flag_call_make_decisions_on_single_nop(parser,"flag","If set to true, make_decisions will be called after single NOP messages.",{"call_make_decisions_on_single_nop"},true);
args::ValueFlag<bool>flag_call_make_decisions_on_single_nop(parser,"flag","If set to true, make_decisions will be called after single NOP messages.",{"call_make_decisions_on_single_nop"},true);