dscale 0.6.3

A fast & deterministic simulation framework for benchmarking and testing distributed systems
Documentation
1
2
3
4
5
6
7
8
use crate::ThreadNumber;

#[derive(Default)]
pub(crate) enum SimulationFlavor {
    #[default]
    Seq,
    Par(ThreadNumber),
}