dscale 0.5.3

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

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