pub trait Heuristic {
    fn handle_decision<T>(
        a: T::IdentifierType,
        b: T::IdentifierType,
        heuristic: &mut [usize],
        representative: &mut [T]
    )
    where
        T: VertexType
; }
Expand description

Heuristic for quick union algorithm

Required Methods§

Implementors§