You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following model outputs one solution and then hangs if you run it with minizinc -a:
include "globals.mzn";
var 1..1: B;
var 1..1 union 4..4: C;
var 2..4: D;
var 2..2 union 4..4: E;
var 1..1 union 4..4: F;
var 3..4: G;
var 2..2 union 4..4: H;
var 3..4: J;
var 1..1 union 4..4: K;
constraint sort([C,K,G,D],[F,E,H,J]);
constraint [F,E,H,J][B] = C;
solve :: int_search([B,D,F,K,C,E,G,H,J], input_order, indomain) satisfy;
The text was updated successfully, but these errors were encountered:
Here is the smallest instance of this bug that I could find.
include "globals.mzn";
var 3..4: A;
var {2,4}: D;
var {2,4}: E;
var 3..4: H;
var {2,4}: I;
constraint
sort([D,3,D,A],[E,I,D,H]);
% solve :: int_search([A,D,E,H,I], input_order, indomain_min) satisfy;
On Ubuntu 22.04.2 LTS.
The following model outputs one solution and then hangs if you run it with minizinc -a:
The text was updated successfully, but these errors were encountered: