delTerm Method
  This deletes a term in the XPRBctr constraint relating to a specific XPRBvar variable. 
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.13.0
 Syntax
Syntax
Parameters
- var
- 
   Type: 
   BCLXPRBvar
   
 The XPRBvar object to remove from the term.
Return Value
Type: Int320 on success.
 Examples
Examples
  XPRBprob prob = new XPRBprob("NewProb"); XPRBvar x; XPRBvar y; x = prob.newVar("x"); y = prob.newVar("y"); XPRBctr ctr = prob.newCtr("Constraint1", 5.0 * x + 20.0 * y); ... int returned = ctr.delTerm(y); 
 See Also
See Also
 
