pub type RunFunc<CellDataType> = dyn Fn(&ExecFunc<CellDataType>, &TransitionFunc<CellDataType>, &NeighborFuncParser<CellDataType>, usize, usize, &mut [CellDataType], &GridDataType<CellDataType>);
Expand description

RunFunc is the function that runs a function (of type ExecFunc) on a seperate thread (or, if there are no threads, simply runs the function)