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 override Leg[] GetSortedPath(
	Waypoint[] points
)
Visual Basic
Public Overrides Function GetSortedPath ( _
	points As Waypoint() _
) As Leg()
Visual C++
public:
virtual array<Leg^>^ GetSortedPath(
	array<Waypoint^>^ points
) override

Parameters

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

Return Value

A sorted list of legs representing the best solution found.

Implements

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

See Also