Skip to main content

IPython extensions for the MiniZinc constraint modelling language

Project description

Author:

Guido Tack <guido.tack@monash.edu>

homepage:

https://github.com/minizinc/iminizinc

This module provides a cell magic extension for IPython / Jupyter notebooks that lets you solve MiniZinc models.

The module requires an existing installation of MiniZinc.

Installation

You can install or upgrade this module via pip

pip install -U iminizinc

Consult your Python documentation to find out if you need any extra options (e.g. you may want to use the –user flag to install only for the current user, or you may want to use virtual environments).

Make sure that the mzn2fzn binary as well as solver binaries (currently only fzn-gecode and mzn-cbc are supported) are on the PATH when you start the notebook server. The easiest way to do that is to get the “bundled installation” that includes the MiniZinc IDE and a few solvers, available from GitHub here: https://github.com/MiniZinc/MiniZincIDE/releases/latest You then need to change your PATH environment variable to include the MiniZinc installation.

Basic usage

After installing the module, you have to load the extension using %load_ext iminizinc. This will enable the cell magic %%minizinc, which lets you solve MiniZinc models. Here is a simple example:

In[1]:  %load_ext iminizinc

In[2]:  n=8

In[3]:  %%minizinc

        include "globals.mzn";
        int: n;
        array[1..n] of var 1..n: queens;
        constraint all_different(queens);
        constraint all_different([queens[i]+i | i in 1..n]);
        constraint all_different([queens[i]-i | i in 1..n]);
        solve satisfy;
Out[3]: {u'queens': [4, 2, 7, 3, 6, 8, 5, 1]}

As you can see, the model binds variables in the environment (in this case, n) to MiniZinc parameters, and returns an object with fields for all declared decision variables.

Alternatively, you can bind the decision variables to Python variables:

In[1]:  %load_ext iminizinc

In[2]:  n=8

In[3]:  %%minizinc -m bind

        include "globals.mzn";
        int: n;
        array[1..n] of var 1..n: queens;
        constraint all_different(queens);
        constraint all_different([queens[i]+i | i in 1..n]);
        constraint all_different([queens[i]-i | i in 1..n]);
        solve satisfy;

In[4]:  queens

Out[4]: [4, 2, 7, 3, 6, 8, 5, 1]

If you want to find all solutions of a satisfaction problem, or all intermediate solutions of an optimisation problem, you can use the -a flag:

In[1]:  %load_ext iminizinc

In[2]:  n=6

In[3]:  %%minizinc -a

        include "globals.mzn";
        int: n;
        array[1..n] of var 1..n: queens;
        constraint all_different(queens);
        constraint all_different([queens[i]+i | i in 1..n]);
        constraint all_different([queens[i]-i | i in 1..n]);
        solve satisfy;

Out[3]: [{u'queens': [5, 3, 1, 6, 4, 2]},
         {u'queens': [4, 1, 5, 2, 6, 3]},
         {u'queens': [3, 6, 2, 5, 1, 4]},
         {u'queens': [2, 4, 6, 1, 3, 5]}]

You can also store your model to use the model iteratively:

In[1]:  %load_ext iminizinc

In[2]:  %%mzn_model queens

        include "globals.mzn";
        int: n;
        array[1..n] of var 1..n: queens;
        constraint all_different(queens);
        constraint all_different([queens[i]+i | i in 1..n]);
        constraint all_different([queens[i]-i | i in 1..n]);
        solve satisfy;

In[3]:  for n in range(5,9):
            x = %minizinc queens
            print(x)

Out[3]: {'queens': [4, 2, 5, 3, 1]}
        {'queens': [5, 3, 1, 6, 4, 2]}
        {'queens': [6, 4, 2, 7, 5, 3, 1]}
        {'queens': [4, 2, 7, 3, 6, 8, 5, 1]}

The magic supports a number of additional options, in particular loading MiniZinc models and data from files. Some of these may only work with the development version of MiniZinc (i.e., not the one that comes with the bundled binary releases). You can take a look at the help using

In[1]:  %%minizinc?

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iminizinc-0.4.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

iminizinc-0.4-py2.py3-none-any.whl (6.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file iminizinc-0.4.tar.gz.

File metadata

  • Download URL: iminizinc-0.4.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.5

File hashes

Hashes for iminizinc-0.4.tar.gz
Algorithm Hash digest
SHA256 9ecbd6e486a24dbbcc4d505a752bb4e87f2ce712f41af68ad29affe38ec066cd
MD5 3993f56dd9ec9987b3a71fc66eeab5ca
BLAKE2b-256 18ffd493b2252f80297f5d25158e907cc08d54de833f9e286bd462294dbd5c31

See more details on using hashes here.

File details

Details for the file iminizinc-0.4-py2.py3-none-any.whl.

File metadata

  • Download URL: iminizinc-0.4-py2.py3-none-any.whl
  • Upload date:
  • Size: 6.8 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.5

File hashes

Hashes for iminizinc-0.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 38c77bda643550d4b2f4443aadd9136a50ae2755e16aeb97f0a7dd0ee6cf3527
MD5 1054ff595227ea85d10b9a584b1add7a
BLAKE2b-256 7e09f4e5e7de0f88a6b98964f6ed823640f036235eff3b0ef42e738ae9fd307c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page