Try our new documentation site (beta).
Filter Content By
Version
Text Search
${sidebar_list_label} - Back
Filter by Language
QuadExpr.add()
add ( expr, mult=1.0 )
Add an expression into a quadratic expression. Argument can be either a linear or a quadratic expression. Upon completion, the invoking quadratic expression will be equal to the sum of itself and the argument expression.
Arguments:
expr: Linear or quadratic expression to add.
mult (optional): Multiplier for argument expression.
Example usage:
e = x * x + 2 * y * y e.add(z * z, 3.0)