Try our new documentation site (beta).
MVar.setAttr()
setAttr ( attrname, newvalue )
Set the value of a matrix variable 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. The shape must be the same as that of the input argument. The one exception is a scalar argument, where the argument is automatically promoted to have the right shape.
Example usage:
var.setAttr("ub", np.full((5,), 0) var.setAttr(GRB.Attr.UB, 0.0) var.setAttr("ub", 0.0)