MINOS#
MINOS is an established choice for both linear and nonlinear optimization problems. It incorporates proven methods for large-scale sparse nonlinear constraints, and its methods are especially effective for nonlinear objectives subject to linear and near-linear constraints.
Learn More | Options | Changes | Download MINOS | Start a MINOS Trial Now!
How to use it#
ampl: option solver minos; # change the solver
ampl: option minos_options 'option1=value1 option2=value2'; # specify options
ampl: solve; # solve the problem
How to install using amplpy:
# Install Python API for AMPL:
$ python -m pip install amplpy --upgrade
# Install AMPL & solver modules:
$ python -m amplpy.modules install minos # install MINOS
# Activate your license (e.g., free ampl.com/ce or ampl.com/courses licenses):
$ python -m amplpy.modules activate <your-license-uuid>
How to use:
from amplpy import AMPL
ampl = AMPL()
...
ampl.solve(solver="minos", minos_options="option1=value1 option2=value2")
Learn more about what we have to offer to implement and deploy Optimization in Python.
Options#
Full list of solver options:
Changelog#
- MINOS Changelog
- 20211109
- 20201030.1
- 20201030
- 20201018
- 20190908
- 20190318
- 20181120
- 20180525
- 20180519
- 20180503
- 20171129
- 20170803
- 20170802
- 20170511
- 20160329
- 20151026
- 20151014
- 20150814
- 20150630
- 20150424
- 20150217
- 20141124
- 20141029
- 20141013
- 20140828
- 20140313
- 20131023
- 20131018
- 20130320
- 20120320
- 20120120
- 20120117
- 20111229
- 20111107
- 20111003
- 20110527
- 20110426
- 20110117