Click or drag to resize

CustomAnnealingSchedule(Int32, Double) Constructor

Constructs a CustomAnnealingSchedule instance.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public CustomAnnealingSchedule(
	int[] iterations,
	params double[] temperatures
)

Parameters

iterations  Int32
The number of iterations to perform at each temperature.
temperatures  Double
The temperature at each step.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown if the number of iterations is different from the number of temperatures.
InvalidArgumentException Thrown if the number of steps is less than one, any iteration is less than one, any temperature is negative, or the last temperature is not zero.
Remarks
Uses the default tolerance.
See Also