pub trait TigAlgorithm<Graph: GraphBase>: Default {
    type Configuration;

    fn compute_tigs(
        graph: &mut Graph,
        configuration: &Self::Configuration
    ) -> Vec<VecEdgeWalk<Graph>>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
    A: Allocator,
; }
Expand description

An algorithm to compute tigs for a graph.

Required Associated Types

The configuration of the algorithm.

Required Methods

Compute the tigs given a graph and configuration.

Implementors