Inequality operator. Tests for inequality of two schedules.

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

Syntax

C#
public static bool operator !=(
	CustomAnnealingSchedule left,
	CustomAnnealingSchedule right
)
Visual Basic (Declaration)
Public Shared Operator <> ( _
	left As CustomAnnealingSchedule, _
	right As CustomAnnealingSchedule _
) As Boolean
Visual C++
public:
static bool operator !=(
	CustomAnnealingSchedule^ left, 
	CustomAnnealingSchedule^ right
)

Parameters

left
Type: CenterSpace.NMath.Analysis..::.CustomAnnealingSchedule
A custom annealing schedule.
right
Type: CenterSpace.NMath.Analysis..::.CustomAnnealingSchedule
A custom annealing schedule.

Return Value

True if both schedules have different iterations or temperatures; otherwise, false.

See Also