Trait genevo::simulation::SimulationBuilder [] [src]

pub trait SimulationBuilder<S, A> where
    S: Simulation<A>,
    A: Algorithm
{ fn build(self) -> S; }

The SimulationBuilder creates a new Simulation with given parameters and options. It forms the initialization stage of the algorithm.

Required Methods

Finally build the Simulation.

Implementors