Trait biodivine_lib_param_bn::biodivine_std::traits::Graph
source · [−]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
.