namespace MoonTools.Graph { public interface IWeightedMultiGraph { System.Guid AddEdge(TNode v, TNode u, int weight, TEdgeData edgeData); } }