Constructor used at the Branch method.

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

Syntax

C#
protected State(
	State parent,
	int idNewNode,
	int newValue
)
Visual Basic
Protected Sub New ( _
	parent As State, _
	idNewNode As Integer, _
	newValue As Integer _
)
Visual C++
protected:
State(
	State^ parent, 
	int idNewNode, 
	int newValue
)

Parameters

parent
Type: Tsp.BB..::..State
The parent State.
idNewNode
Type: System..::..Int32
The new node to add to the path.
newValue
Type: System..::..Int32
The new value for this State.

See Also