Creates a LinearAnnealingSchedule instance with the specified number of steps, iterations per step, and starting temperature.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public LinearAnnealingSchedule(
	int steps,
	int iterations,
	double startTemperature
)
Visual Basic (Declaration)
Public Sub New ( _
	steps As Integer, _
	iterations As Integer, _
	startTemperature As Double _
)
Visual C++
public:
LinearAnnealingSchedule(
	int steps, 
	int iterations, 
	double startTemperature
)

Parameters

steps
Type: System..::.Int32
The number of annealing steps.
iterations
Type: System..::.Int32
The number of iterations to perform at each step.
startTemperature
Type: System..::.Double
The starting temperature.

See Also