Try our new documentation site (beta).
Filter Content By
Version
Text Search
${sidebar_list_label} - Back
Filter by Language
Model.chgCoeff()
chgCoeff ( constr, var, newvalue )
Change one coefficient in the model. The desired change is captured
using a Var
object, a Constr
object, and a desired
coefficient for the specified variable in the specified constraint.
If you make multiple changes to the same coefficient, the last one
will be applied.
Note that the change won't take effect until the next call to Model.update or Model.optimize.
Arguments:
constr: Constraint for coefficient to be changed.
var: Variable for coefficient to be changed.
newvalue: Desired new value for coefficient.
Example usage:
model.chgCoeff(c0, x, 2.0)