Runner

Trait Runner 

Source
pub trait Runner {
    // Required method
    fn run_corries(&mut self) -> Result<()>;
}
Expand description

This trait is written solely for the purpose of implementing this method on CorriesComponents, which itself is just a type alias.

Refer to CorriesComponents for a detailed usage example.

Required Methods§

Source

fn run_corries(&mut self) -> Result<()>

Runs a corries simulation.

Refer to CorriesComponents for a detailed usage example.

Implementors§

Source§

impl<P, N, T, const E: usize, const S: usize> Runner for CorriesComponents<P, N, T, E, S>
where P: Physics<E, S>, N: NumFlux<E, S>, T: TimeSolver<P, E, S>,