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

Parameters
- lhs
-
Type:
BCLXPRBterm
The lhs XPRBterm. - rhs
-
Type:
SystemDouble
The rhs number.
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;
