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