pub trait Search<N> {
type Output;
// Required method
fn search(&mut self, start: N) -> Result<Self::Output>;
}
Expand description
The Search
establishes a common interface for operators on hypergraphs capable of
performing a search.
pub trait Search<N> {
type Output;
// Required method
fn search(&mut self, start: N) -> Result<Self::Output>;
}
The Search
establishes a common interface for operators on hypergraphs capable of
performing a search.