Skip to content

Latest commit

 

History

History
351 lines (256 loc) · 10.2 KB

solvers.rst

File metadata and controls

351 lines (256 loc) · 10.2 KB

Future Solver Interface Changes

Note

The new solver interfaces are still under active development. They are included in the releases as development previews. Please be aware that APIs and functionality may change with no notice.

We welcome any feedback and ideas as we develop this capability. Please post feedback on Issue 1030.

Pyomo offers interfaces into multiple solvers, both commercial and open source. To support better capabilities for solver interfaces, the Pyomo team is actively redesigning the existing interfaces to make them more maintainable and intuitive for use. A preview of the redesigned interfaces can be found in pyomo.contrib.solver.

pyomo.contrib.solver

New Interface Usage

The new interfaces are not completely backwards compatible with the existing Pyomo solver interfaces. However, to aid in testing and evaluation, we are distributing versions of the new solver interfaces that are compatible with the existing ("legacy") solver interface. These "legacy" interfaces are registered with the current SolverFactory using slightly different names (to avoid conflicts with existing interfaces).

Available Redesigned Solvers and Names Registered in the SolverFactories
Solver Name registered in the pyomo.contrib.solver.factory.SolverFactory Name registered in the pyomo.opt.base.solvers.LegacySolverFactory
Ipopt ipopt ipopt_v2
Gurobi (persistent) gurobi gurobi_v2
Gurobi (direct) gurobi_direct gurobi_direct_v2

Using the new interfaces through the legacy interface

Here we use the new interface as exposed through the existing (legacy) solver factory and solver interface wrapper. This provides an API that is compatible with the existing (legacy) Pyomo solver interface and can be used with other Pyomo tools / capabilities.

import pyomo.environ as pyo from pyomo.contrib.solver.util import assert_optimal_termination

model = pyo.ConcreteModel() model.x = pyo.Var(initialize=1.5) model.y = pyo.Var(initialize=1.5)

def rosenbrock(model):

return (1.0 - model.x) ** 2 + 100.0 * (model.y - model.x*2)* 2

model.obj = pyo.Objective(rule=rosenbrock, sense=pyo.minimize)

status = pyo.SolverFactory('ipopt_v2').solve(model) assert_optimal_termination(status) model.pprint()

2 Var Declarations ... 3 Declarations: x y obj

In keeping with our commitment to backwards compatibility, both the legacy and future methods of specifying solver options are supported:

import pyomo.environ as pyo

model = pyo.ConcreteModel() model.x = pyo.Var(initialize=1.5) model.y = pyo.Var(initialize=1.5)

def rosenbrock(model):

return (1.0 - model.x) ** 2 + 100.0 * (model.y - model.x*2)* 2

model.obj = pyo.Objective(rule=rosenbrock, sense=pyo.minimize)

# Backwards compatible status = pyo.SolverFactory('ipopt_v2').solve(model, options={'max_iter' : 6}) # Forwards compatible status = pyo.SolverFactory('ipopt_v2').solve(model, solver_options={'max_iter' : 6}) model.pprint()

2 Var Declarations ... 3 Declarations: x y obj

Using the new interfaces directly

Here we use the new interface by importing it directly:

# Direct import import pyomo.environ as pyo from pyomo.contrib.solver.util import assert_optimal_termination from pyomo.contrib.solver.ipopt import Ipopt

model = pyo.ConcreteModel() model.x = pyo.Var(initialize=1.5) model.y = pyo.Var(initialize=1.5)

def rosenbrock(model):

return (1.0 - model.x) ** 2 + 100.0 * (model.y - model.x*2)* 2

model.obj = pyo.Objective(rule=rosenbrock, sense=pyo.minimize)

opt = Ipopt() status = opt.solve(model) assert_optimal_termination(status) # Displays important results information; only available through the new interfaces status.display() model.pprint()

solution_loader: ... ... 3 Declarations: x y obj

Using the new interfaces through the "new" SolverFactory

Here we use the new interface by retrieving it from the new SolverFactory:

# Import through new SolverFactory import pyomo.environ as pyo from pyomo.contrib.solver.util import assert_optimal_termination from pyomo.contrib.solver.factory import SolverFactory

model = pyo.ConcreteModel() model.x = pyo.Var(initialize=1.5) model.y = pyo.Var(initialize=1.5)

def rosenbrock(model):

return (1.0 - model.x) ** 2 + 100.0 * (model.y - model.x*2)* 2

model.obj = pyo.Objective(rule=rosenbrock, sense=pyo.minimize)

opt = SolverFactory('ipopt') status = opt.solve(model) assert_optimal_termination(status) # Displays important results information; only available through the new interfaces status.display() model.pprint()

solution_loader: ... ... 3 Declarations: x y obj

Switching all of Pyomo to use the new interfaces

We also provide a mechanism to get a "preview" of the future where we replace the existing (legacy) SolverFactory and utilities with the new (development) version (see future):

# Change default SolverFactory version import pyomo.environ as pyo from pyomo.contrib.solver.util import assert_optimal_termination from pyomo.__future__ import solver_factory_v3

model = pyo.ConcreteModel() model.x = pyo.Var(initialize=1.5) model.y = pyo.Var(initialize=1.5)

def rosenbrock(model):

return (1.0 - model.x) ** 2 + 100.0 * (model.y - model.x*2)* 2

model.obj = pyo.Objective(rule=rosenbrock, sense=pyo.minimize)

status = pyo.SolverFactory('ipopt').solve(model) assert_optimal_termination(status) # Displays important results information; only available through the new interfaces status.display() model.pprint()

solution_loader: ... ... 3 Declarations: x y obj

from pyomo.__future__ import solver_factory_v1

Linear Presolve and Scaling

The new interface allows access to new capabilities in the various problem writers, including the linear presolve and scaling options recently incorporated into the redesigned NL writer. For example, you can control the NL writer in the new ipopt interface through the solver's writer_config configuration option:

pyomo.contrib.solver.ipopt.Ipopt

from pyomo.contrib.solver.ipopt import Ipopt opt = Ipopt() opt.config.writer_config.display()

show_section_timing: false skip_trivial_constraints: true file_determinism: FileDeterminism.ORDERED symbolic_solver_labels: false scale_model: true export_nonlinear_variables: None row_order: None column_order: None export_defined_variables: true linear_presolve: true

Note that, by default, both linear_presolve and scale_model are enabled. Users can manipulate linear_presolve and scale_model to their preferred states by changing their values.

>>> opt.config.writer_config.linear_presolve = False

Interface Implementation

All new interfaces should be built upon one of two classes (currently): SolverBase<pyomo.contrib.solver.base.SolverBase> or PersistentSolverBase<pyomo.contrib.solver.base.PersistentSolverBase>.

All solvers should have the following:

pyomo.contrib.solver.base.SolverBase

Persistent solvers include additional members as well as other configuration options:

pyomo.contrib.solver.base.PersistentSolverBase

Results

Every solver, at the end of a solve<pyomo.contrib.solver.base.SolverBase.solve> call, will return a Results<pyomo.contrib.solver.results.Results> object. This object is a :pypyomo.common.config.ConfigDict, which can be manipulated similar to a standard dict in Python.

pyomo.contrib.solver.results.Results

Termination Conditions

Pyomo offers a standard set of termination conditions to map to solver returns. The intent of TerminationCondition<pyomo.contrib.solver.results.TerminationCondition> is to notify the user of why the solver exited. The user is expected to inspect the Results<pyomo.contrib.solver.results.Results> object or any returned solver messages or logs for more information.

pyomo.contrib.solver.results.TerminationCondition

Solution Status

Pyomo offers a standard set of solution statuses to map to solver output. The intent of SolutionStatus<pyomo.contrib.solver.results.SolutionStatus> is to notify the user of what the solver returned at a high level. The user is expected to inspect the Results<pyomo.contrib.solver.results.Results> object or any returned solver messages or logs for more information.

pyomo.contrib.solver.results.SolutionStatus

Solution

Solutions can be loaded back into a model using a SolutionLoader. A specific loader should be written for each unique case. Several have already been implemented. For example, for ipopt:

pyomo.contrib.solver.ipopt.IpoptSolutionLoader