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#
Leg[] GetSortedPath(
	Waypoint[] points
)
Visual Basic
Function GetSortedPath ( _
	points As Waypoint() _
) As Leg()
Visual C++
array<Leg^>^ GetSortedPath(
	array<Waypoint^>^ points
)

Parameters

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

Return Value

A sorted list of legs representing the best solution found.

See Also