1 2 3 4 5 6 7 8
use crate::runners::threads::Threads; #[derive(Default)] pub(crate) enum SimulationFlavor { #[default] Simple, Parallel(Threads), }