Returns the sortest possible path according to the specified points.

Namespace: FlightPlan.Optimizer.TSPAlgorithms
Assembly: FlightPlanOptimizer (in FlightPlanOptimizer.exe) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public abstract Leg[] GetSortedPath(
	Waypoint[] points
)
Visual Basic
Public MustOverride Function GetSortedPath ( _
	points As Waypoint() _
) As Leg()
Visual C++
public:
virtual array<Leg^>^ GetSortedPath(
	array<Waypoint^>^ points
) abstract

Parameters

points
Type: array<Waypoint>[]()[][]
The points

Return Value

[Missing <returns> documentation for "M:FlightPlan.Optimizer.TSPAlgorithms.TSPAlgorithm.GetSortedPath(FlightPlan.Waypoint[])"]

Implements

ITSPAlgorithm..::..GetSortedPath(array<Waypoint>[]()[][])

See Also