namespace HeuristicLab.Algorithms.GraphRouting.Interfaces { public interface IRouter { long[] Calculate(long sourceNodeId, long targetNodeId); } }