pub trait BestFirstVisitor<N, T, BV> {
type Result;
// Required method
fn visit(
&mut self,
best_cost_so_far: N,
bv: &BV,
value: Option<&T>,
) -> BestFirstVisitStatus<N, Self::Result>;
}
Expand description
Trait implemented by cost functions used by the best-first search on a BVT
.