1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

18 lines
303 B
MiniZinc

/***
!Test
type: compile
solvers: [gecode]
expected: !FlatZinc cse_array_lit.fzn
***/
% Regression test for #458
% In 2.5.4, par arrays were not inserted into the CSE,
% leading to duplicate variables and constraints in the FlatZinc.
var 1..10: x;
var 1..10: y;
constraint x < y;
constraint x < y;