Creates a Tsp.Graph with the specified waypoints.

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

Syntax

C#
protected Graph CreateGraph(
	Waypoint[] points
)
Visual Basic
Protected Function CreateGraph ( _
	points As Waypoint() _
) As Graph
Visual C++
protected:
Graph^ CreateGraph(
	array<Waypoint^>^ points
)

Parameters

points
Type: array<Waypoint>[]()[][]
The waypoints representing each graph node.

Return Value

The resulting graph.

See Also