File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class throughput : public interface {
3838 std::size_t cold_run_events = 10 ;
3939
4040 // / Enable or disable the randomization of event processing
41- bool deterministic_event_order = false ;
41+ bool deterministic_event_order = true ;
4242 // / Set the random event processing seed
4343 unsigned int random_seed = 0 ;
4444
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ throughput::throughput() : interface("Throughput Measurement Options") {
3737 po::value (&cold_run_events)->default_value (cold_run_events),
3838 " Number of events to run 'cold'" );
3939 m_desc.add_options ()(" deterministic" ,
40- po::bool_switch (&deterministic_event_order)
40+ po::value< bool > (&deterministic_event_order)
4141 ->default_value (deterministic_event_order),
4242 " Process events in deterministic order" );
4343 m_desc.add_options ()(" random-seed" ,
You can’t perform that action at this time.
0 commit comments