Macro create_simulation_setup

Source
macro_rules! create_simulation_setup {
    (
        Domain: $domain:expr,
        Cells: $cells:expr,
        Time: $time:expr,
        MetaParams: $meta_params:expr,
        Storage: $storage:expr,
        Controller: $controller:expr$(,)?
    ) => { ... };
    (
        Domain: $domain:expr,
        Cells: $cells:expr,
        Time: $time:expr,
        MetaParams: $meta_params:expr,
        Storage: $storage:expr$(,)?
    ) => { ... };
}
Available on crate feature cpu_os_threads only.