Expression

Basic expression

PyOptInterface currently supports polynomial expressions with degree up to 2, including

  • quadratic expression

  • linear expression

  • constant expression

The expression can be expressed by arithmetic operations of variables and constants. For example, we can create a quadratic expression by adding two quadratic expressions, multiplying a linear expression with a constant expression, etc.

import pyoptinterface as poi
from pyoptinterface import highs

model = highs.Model()

x = model.add_variable()

# create a quadratic expression
expr1 = x * x + 2 * x + 1
# create a linear expression
expr2 = 2 * x + 1

# create a quadratic expression by adding two quadratic expressions
expr3 = x * expr2 + expr1
Running HiGHS 1.7.0 (git hash: 50670fd): Copyright (c) 2024 HiGHS under MIT licence terms

Efficient expression construction

PyOptInterface provides a special class ExprBuilder to construct expressions efficiently. It is especially useful when we need to construct a large expression with many terms.

It supports the following in-place assignment operations:

  • +=: add a term to the expression

  • -=: subtract a term from the expression

  • *=: multiply the expression with a constant or another expression

  • /=: divide the expression with a constant

For example, we can use ExprBuilder to construct the following expression efficiently:

\[ \frac{1}{2} \sum_{i=1}^N x_i^2 - \sum_{i=1}^N x_i \]
N = 1000
x = [model.add_variable() for _ in range(N)]

def fast_expr():
    expr = poi.ExprBuilder()
    for i in range(N):
        expr += 0.5 * x[i] * x[i]
        expr -= x[i]

def slow_expr():
    expr = 0
    for i in range(N):
        expr += 0.5 * x[i] * x[i]
        expr -= x[i]
%time fast_expr()
CPU times: user 539 µs, sys: 91 µs, total: 630 µs
Wall time: 633 µs
%time slow_expr()
CPU times: user 26 ms, sys: 0 ns, total: 26 ms
Wall time: 25.7 ms

Pretty print expression

If the names of variables are specified, We can use the pprint method to print the expression in a human-readable format:

x = model.add_variable(name="x")
y = model.add_variable(name="y")

expr = x * x + 2 * x * y + y * y

model.pprint(expr)
'1*x*x+2*x*y+1*y*y'

Value of expression

We can use the get_value method to get the value of an expression after optimization:

expr = x*y + x*x
expr_value = model.get_value(expr)