Try our new documentation site (beta).
Filter Content By
Version
Text Search
${sidebar_list_label} - Back
Filter by Language
QConstr.setAttr()
setAttr ( attrname, newvalue )
Set the value of a quadratic constraint attribute. Note that, due to our lazy update approach, the change won't actually take effect until you update the model (using Model.update), optimize the model (using Model.optimize), or write the model to disk (using Model.write).
The full list of available attributes can be found in the Attributes section.
Raises an AttributeError
if the specified attribute doesn't
exist or can't be set.
Arguments:
attrname: The attribute being modified.
newvalue: The desired new value of the attribute.
Example usage:
constr.setAttr(GRB.Attr.QCRHS, 0.0) constr.setAttr("qcrhs", 0.0)