Пример #1
0
 /// <summary>
 /// Calculates STSP.
 /// </summary>
 public static Route CalculateSTSP(this RouterBase router, Profile profile, Coordinate[] locations, float max, int first = 0, int?last = null)
 {
     return(router.TryCalculateSTSP(profile, locations, max, first, last).Value);
 }