pub trait MaximalMacrotigsAlgorithm<Graph: StaticGraph> {
    // Required method
    fn compute_maximal_macrotigs(
        graph: &Graph,
        microtigs: &Microtigs<Graph>
    ) -> Macrotigs<Graph>;
}
Expand description

A trait abstracting over the concrete algorithm used to compute maximal macrotigs.

Required Methods§

source

fn compute_maximal_macrotigs( graph: &Graph, microtigs: &Microtigs<Graph> ) -> Macrotigs<Graph>

Compute the maximal macrotigs from the given maximal microtigs.

Implementors§