Initializes the class for creating TPSA objects of the given number of variable and order.

Namespace: TPSA
Assembly: TPSA (in TPSA.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static void Init(
	int nvars,
	int ord,
	bool reinit = false
)
Visual Basic
Public Shared Sub Init ( _
	nvars As Integer, _
	ord As Integer, _
	Optional reinit As Boolean = False _
)
Visual C++
public:
static void Init(
	int nvars, 
	int ord, 
	bool reinit = false
)

Parameters

nvars
Type: System..::..Int32
Number of variables in the algebra.
ord
Type: System..::..Int32
The orderof the TPSA.
reinit (Optional)
Type: System..::..Boolean
Ensures that the class is reinitializes. If false and the same number of variables and order are specified, then nothing changes.

Remarks