Returns true if the given LinearConstraint is equal to self. Two constraints are equal if they have the same coefficients, right hand side, and are of the same type (equality or inequality).

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

Syntax

C#
public bool Equals(
	LinearConstraint other
)
Visual Basic (Declaration)
Public Function Equals ( _
	other As LinearConstraint _
) As Boolean
Visual C++
public:
virtual bool Equals(
	LinearConstraint^ other
) sealed

Parameters

other
Type: CenterSpace.NMath.Analysis..::.LinearConstraint
Constraint to compare self to.

Return Value

true if the constraints are equal.

Implements

IEquatable<(Of <(T>)>)..::.Equals(T)

See Also