A high-level constraint modelling language that allows you to easily
express and solve discrete optimisation problems.
Visit our website »
View Documentation
·
Report Bug
·
Request Feature
MiniZinc is a free and open-source constraint modeling language.
You can use MiniZinc to model constraint satisfaction and optimisation problems in a high-level, solver-independent way, taking advantage of a large library of pre-defined constraints. Your model is then compiled into FlatZinc, a solver input language that is understood by a wide range of solvers.
MiniZinc is developed at Monash University in collaboration with Data61 Decision Sciences.
To get a MiniZinc up and running follow these simple steps.
The recommended way to install MiniZinc is by the use of the bundled binary packages. These packages are available for machines running Linux, Mac, and Windows.
The latest release can be found on the MiniZinc website.
Once the MiniZinc bundle is installed on your machine, you can start expressing and solving discrete optimisation problems. The following code segment shows a MiniZinc model for the well known n-queens problem.
int: n = 8; % The number of queens.
array [1..n] of var 1..n: q;
include "alldifferent.mzn";
constraint alldifferent(q);
constraint alldifferent(i in 1..n)(q[i] + i);
constraint alldifferent(i in 1..n)(q[i] - i);
You have two easy options to solve this model:
- In the MiniZincIDE: Select your preferred solver and press the "Run" button.
- With the
minizinc
executable available on your path: runminizinc --solver gecode nqueens.mzn
.
For more example MiniZinc models and more information about working with MiniZinc, please refer to our Documentation
The following instructions will help you compile the MiniZinc compiler. Note that this repository does not include the IDE, findMUS, or any solvers that are part of the MiniZinc project. These can be found in the following repositories:
- CMake (>=3.4)
- A recent C++ compiler - Compilation is tested with recent versions of Clang, GCC, and Microsoft Visual C++.
- (optional) Bison (>=3.4) and Flex (>=2.5) - To make changes to the MiniZinc lexer or parser.
- (optional) Gecode - To compile the internal Gecode solver interface (included in the MiniZinc bundle)
- (optional) Coin OR's CBC - To compile the internal CBC solver interface (included in the MiniZinc bundle)
- (optional) Proprietary solver headers (CPLEX, Gurobi, SCIP, Xpress) - To load these solvers at runtime (included in the MiniZinc bundle)
The MiniZinc compiler is compiled as a CMake project. CMake's User Interaction Guide can provide you with a quick introduction to compiling CMake projects. The following CMake variables can be used in the MiniZinc project to instruct the compilation behaviour:
Variable | Default | Description |
---|---|---|
CMAKE_BUILD_TYPE | Release | Build type of single-configuration generators. |
CMAKE_INSTALL_PREFIX | Install directory used by --target install . |
|
CMAKE_POSITION_INDEPENDENT_CODE | TRUE | Whether to create a position-independent targets |
<solver_name>_ROOT | Additional directory to look for <solver_name> | |
CMAKEDISABLE_FIND_PACKAGE**<solver_name>** | FALSE | Disable compilation of <solver_name>'s solver interface |
CPLEX_PLUGIN | TRUE | Load CPLEX at runtime (instead of static compilation) |
Possible values for <solver_name> are CPlex
, Geas
, Gecode
, and OsiCBC
.
The correctness of the MiniZinc compiler is tested using a PyTest test suite. Instruction on how to run the test suite and how to add new tests can be found here
Distributed under the Mozilla Public License Version 2.0. See LICENSE
for more information.
🏛 MiniZinc Community
- Website: https://www.minizinc.org/
- StackOverflow: https://stackoverflow.com/questions/tagged/minizinc
- Google Groups: https://groups.google.com/g/minizinc
🏛 Monash Optimisation Group