-
I tried to download the MiniZinc installer on [this page](https://www.minizinc.org/2.0/install-windows.html), but the [link to the installer](https://github.com/MiniZinc/libminizinc/releases/download/…
-
The following model
### `model.mzn`
```zinc
enum nume = { A };
type item = record(nume: x);
array[int] of item: arr;
```
and the following json data file
### `data.json`
```json
{"arr":[…
-
The standard `JSONEncoder` that is used to create the JSON input for a MiniZinc model ensures that an `IntEnum` is always represented using its integer representation: https://github.com/python/cpytho…
-
I found a problem when I try to define a set of strings like the following example:
```
set of string : s = {"Mary","Dylan","Jhon"};
```
MiniZinc displays the below message in the output:
```…
-
Awesome! I'd love it if:
* if it could take either tabs or sheet music as the input
* output tabs and sheet music together, with each aligned to the other
-
The 2.6.4 release notes do not mention Chuffed, so I guess that the problem is still there.
In the MiniZinc benchmark repo. OR-Tools gets it right, Chuffed gets it wrong:
```
matsc@teterev:~/mini…
-
The command line version of minizinc has an option (`-s` / `--statistics`) that outputs solver related statistics for every solution found. I didn't find any way to obtain this data when using `pymzn.…
-
# Explanation
It is often inefficient to use global constraints in a reified position, i.e. not top level.
# Examples
At top level:
```minizinc
constraint alldifferent(...);
```
Not at top le…
-
The idea is simple: some resources are expert or senior or have some extra capabilities in such or such domain. Some tasks may require some mandatory capabilities, or can be performed quicker with a g…
-
We're enforcing certain ordering constraints using a single "world" token that gets assigned to a dummy register. I hate this. We should be modelling flags which get preassigned to the appropriate fla…