pub trait Cycles: Incidence {
    fn is_acyclic(&self) -> bool
    where
        Self: VertexList + WithVertexProp<Color>
, { ... } fn is_dag(&self) -> bool
    where
        Self: VertexList + WithVertexProp<Color>
, { ... } }

Provided Methods

Implementors