zelen 0.5.1

Direct MiniZinc to Selen Solver
Documentation
1
2
3
4
5
6
7
% Test model with parameters that will be provided by data file
int: n;  % Parameter to be set in data file
array[1..n] of int: costs;  % Parameter array to be set in data file

var 1..n: choice;
constraint costs[choice] >= 15;
solve minimize costs[choice];