placements_tree/
recalc.rs

1pub trait Recalc<V, E> {
2    fn recalc(&self, vertex: &V, edge: &E) -> Self;
3}