pub trait Graph {
    type State: State;
    type Params: Set;
    type States: Iterator<Item = Self::State>;
    type FwdEdges: EvolutionOperator;
    type BwdEdges: EvolutionOperator;
    fn states(&self) -> Self::States;
fn fwd(&self) -> Self::FwdEdges;
fn bwd(&self) -> Self::BwdEdges; }
Expand description

A parametrised variant of a Graph.

Associated Types

Required methods

Implementors