public int Degree(Vertex node) => itsAdjacencies[node.index].Count;
public HashSet <Vertex> Neighbours(Vertex node) => itsAdjacencies[node.index];