round_durations

The durations for each round in seconds. If None, it is set to (15, 15). The first component of the pair is the duration of the first round and the second component is the duration of the second round. All subsequent rounds have linearly increasing durations with the same increase between the first and the second round.

For instance,

#![allow(unused)]
fn main() {
round_durations = Some (3, 5)
}

the actual durations of the round will be (in seconds):

  • round 0 : 3
  • round 1 : 5
  • round 2 : 7
  • round 3 : 9
  • round 4 : 11
  • ...

Similarly if we set

#![allow(unused)]
fn main() {
round_durations = Some (1, 1)
}

each round will be 1 second.