namespace MoonTools.Graph { public interface IUnweightedGraph { void AddEdge(TNode v, TNode u, TEdgeData edgeData); } }