dscale 0.5.2

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

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