LessThanOrEqual Operator (XPRBterm, XPRBvar)
  Create an XPRBrelation from an XPRBvar and an XPRBterm. 
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0
 Syntax
Syntax
Parameters
- t1
- 
   Type: 
   BCLXPRBterm
   
 The lhs XPRBterm.
- v2
- 
   Type: 
   BCLXPRBvar
   
 The rhs XPRBvar.
Return Value
Type: XPRBrelationThe resultant XPRBrelation.
 Remarks
Remarks
 This is usually used when creating constraints directly in the method call.
 Examples
Examples
  XPRBvar var = new XPRBvar("Variable1"); XPRBvar var2 = new XPRBvar("Variable2"); XPRBterm term = new XPRBterm(6.7, var2); XPRBrelation rel; ... rel = term <= var; 
 See Also
See Also
 
