[][src]Type Definition lasy::EulerCircuit

type EulerCircuit = Vec<(EdgeIndex<u32>, Direction)>;

A type used to represent a eulerian circuit through an eulerian graph.

The EdgeIndex referes to an index into the EulerGraph. The Direction describes whether traversal is performed from source to target (Direction::Outgoing) or target to source (Direction::Incoming).