pub type UnweightedList<Ix> = List<(), Ix>;
A very simple adjacency list with no node or label weights.
pub struct UnweightedList<Ix> { suc: Vec<Vec<WSuc<(), Ix>>>, }
suc: Vec<Vec<WSuc<(), Ix>>>