Constructor that takes a default capacity.

Namespace: Tsp.GA
Assembly: Tsp (in Tsp.exe) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public Tour(
	int capacity
)
Visual Basic
Public Sub New ( _
	capacity As Integer _
)
Visual C++
public:
Tour(
	int capacity
)

Parameters

capacity
Type: System..::..Int32
Initial size of the tour. Should be the number of cities in the tour.

See Also