pub trait Simulate<S>where
    S: State,
{ fn simulate(state: &S, neighbor_states: &[&S]) -> S; }
Expand description

Trait that tells QDF how to simulate states of space.

Required Methods

Performs simulation of state based on neighbor states.

Arguments
  • state - current state.
  • neighbor_states - current neighbor states.

Implementations on Foreign Types

Implementors