An open-source library for mathematical programming.
Documentation: http://ampl.github.io
- Reusable high-performance .nl file reader which is up to 6x faster than the one provided by ASL
- Efficient type-safe C++ API for connecting solvers to AMPL and other systems: source
- Interfaces to solvers supporting
AMPL extensions for logic and constraint programming:
- Ilogcp: IBM ILOG CPLEX and CPLEX CP Optimizer
- Gecode
- JaCoP
- LocalSolver
- Interfaces to COIN-OR Solvers (in the ampl/coin repository):
- Clp
- Cbc
- Ipopt
- Bonmin
- Couenne
- Interfaces to other solvers via AMPL Solver Library: list of supported solvers
- Cross-platform build support with CMake and continuous integration systems. This includes third-party solvers and libraries (COIN-OR solvers with CMake support are available in the ampl/coin repository).
- AMPLGSL, an AMPL function library providing access to the GNU Scientific Library (GSL) functions. See the AMPLGSL documentation.
- Database support on Linux and MacOS X. See Database and spreadsheet connection guide.
- SMPSWriter, a converter from deterministic equivalent of a two-stage stochastic programming (SP) problem written in AMPL to an SP problem in SMPS format.
Reading an .nl file:
#include "mp/nl.h" #include "mp/problem.h" mp::Problem p; ReadNLFile("diet.nl", p);
Binaries for the open-source AMPL solvers for major platforms can be downloaded from the AMPL's Open Source Solvers page. To use a solver with AMPL, extract the binaries from a downloaded archive into the AMPL installation directory.
An included CMake build script can be used to build the MP library, solver interfaces and function libraries on a wide range of platforms. You can download CMake for free from http://www.cmake.org/download/.
CMake works by generating native makefiles or project files that can be used in the compiler environment of your choice. The typical workflow starts with:
mkdir build # Create a directory to hold the build output. cd build cmake <path/to/mp> # Generate native build scripts.
where <path/to/mp>
is a path to the mp
repository.
If you are on a *nix system, you should now see a Makefile in the
current directory. Now you can build MP by running make
.
Once MP has been built you can invoke make test
to run the tests.
If you use Windows and have Vistual Studio installed, an MP.sln
file
and several .vcproj
files will be created. You can then build them
using Visual Studio or msbuild.
On Mac OS X with Xcode installed, an .xcodeproj
file will be generated.
AMPL/MP allows building only parts of the project you are interested in, for example you can choose to build only a single solver interface. This is done with the help of modules which are optional components that can be built separately. Each solver interface and function library is a module.
By default all modules are disabled and only the main MP libraries are built.
To enable modules, pass their names as a comma-separated list in the BUILD
variable when running CMake:
cmake -DBUILD=gsl,ilogcp .
Use -DBUILD=all
to build all modules.
If a module is enabled, its dependencies are automatically downloaded
and built when necessary. For example, enabling the gecode
module
will download the source code of Gecode constraint programming solver,
build the solver and its AMPL interface.
Dependencies of some modules cannot be handled automatically due to
licensing restrictions. If you enable such module, you should have its
dependencies installed on the systems or it will not be built.
For example, if you enable the ilogcp
module, you should have
IBM ILOG CPLEX Optimization Studio installed.
You can generate Eclipse CDT project files with CMake:
cmake -G "Eclipse CDT 4 - Unix Makefiles"
To get rid of semantic errors reported by Indexer add preprocessor symbols
_GLIBCPP_USE_NAMESPACES
, __GXX_EXPERIMENTAL_CXX0X__
and STAND_ALONE
in "Project Properties" / "C/C++ Include Files and Symbols" and rebuild
the index.
To build the documentation you need the following software installed on your system:
First generate makefiles or project files using CMake as described in
the previous section. Then compile the doc
target/project, for example:
make doc
This will generate the HTML documenation in doc/ampl.github.io
.
AMPL home | AMPL book | Discussion group | SolverStudio for Excel