luka 0.4.0

Library for working with graphs
Documentation
1
2
3
4
use crate::Vertex;

pub type Parents<'a, T> = Vec<Option<&'a Vertex<T>>>;
pub type ConnectedComponents<'a, T> = Vec<Vec<&'a Vertex<T>>>;