Creates a test set of random graphs at the specified folder.

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

Syntax

C#
public static void CreateRandomTestSet(
	string folder,
	int minNbNodes,
	int maxNbNodes,
	int repetitions
)
Visual Basic
Public Shared Sub CreateRandomTestSet ( _
	folder As String, _
	minNbNodes As Integer, _
	maxNbNodes As Integer, _
	repetitions As Integer _
)
Visual C++
public:
static void CreateRandomTestSet(
	String^ folder, 
	int minNbNodes, 
	int maxNbNodes, 
	int repetitions
)

Parameters

folder
Type: System..::..String
The folder where to save the files.
minNbNodes
Type: System..::..Int32
The minimun number of nodes.
maxNbNodes
Type: System..::..Int32
The maximun number of nodes.
repetitions
Type: System..::..Int32
The number of graphs to create for each iteration between [min-max]

See Also