pub trait Combine<A, B> { type Output; // Required method fn combine(&mut self, src: A, tgt: B) -> Result<Self::Output>; }
Combine defines a common interface for merging two edges in a hypergraph.
Combine