GreaterThanOrEqual Operator (XPRBvar, XPRBterm)
  Create an XPRBrelation from an XPRBvar and an XPRBterm. 
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 37.1.1.0
Parameters
- l1
 - 
   Type: 
   BCLXPRBvar
   
The lhs XPRBvar. - tl2
 - 
   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 term = new XPRBterm(6.7, var2); XPRBrelation rel; ... rel = var >= term; 
