Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
Module exporting all classes and functions needed for MathOpt. This module defines aliases to all classes and functions needed for regular use of MathOpt. It removes the need for users to have multiple imports for specific sub-modules. For example instead of: from ortools.math_opt.python import model from ortools.math_opt.python import solve m = model.Model() solve.solve(m) we can simply do: from ortools.math_opt.python import mathopt m = mathopt.Model() mathopt.solve(m)