JijZept Solver Python

JijZept Solver is a mixed-integer optimization solver for OMMX instances. This site documents its Python interface.

The API reference documents the supported classes, functions, and options in the public Python interface.

from ommx.v1 import Instance
from jijzept_solver import solve

instance = Instance.load_mps("model.mps")
solution = solve(instance, time_limit=60.0)

Continue with the Python getting started guide.