GreaterThanOrEqual Operator (Double, XPRBterm)
Create an XPRBrelation from a number and an XPRBterm
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0

Parameters
- lhs
-
Type:
SystemDouble
The lhs number. - rhs
-
Type:
BCLXPRBterm
The rhs XPRBterm.
Return Value
Type: XPRBrelationThe resultant XPRBrelation.

This is usually used when creating constraints directly in the method call.

XPRBvar var = new XPRBvar("Variable1"); XPRBvar var2 = new XPRBvar("Variable2"); XPRBterm term1 = new XPRBterm(6.7, var1); XPRBterm term1 = new XPRBterm(9, var2); XPRBrelation rel; ... rel = term1 >= term2;
