ConstraintRelation Enumeration

Constraint relation.

Definition

Namespace: Orx.MathProg
Assembly: Orx.MathProg (in Orx.MathProg.dll) Version: 1.0.0
C#
public enum ConstraintRelation

Members

Leq0 Constraint relation where left-hand-side is less than or equal to the right-hand-side:
C#
lhs <= rhs
Geq1 Constraint relation where left-hand-side is greater than or equal to the right-hand-side:
C#
lhs >= rhs
Eq2 Constraint relation where left-hand-side is equal to the right-hand-side:
C#
lhs == rhs

See Also