Closed matsc-at-sics-se closed 1 year ago
Choco 4.10.13.
This model has one solution, C = 2, D = 3, but Choco also finds C = D = 3, which is wrong.
C = 2, D = 3
C = D = 3
include "globals.mzn"; var 2..3: C; var 3..4: D; constraint nvalue(D,[1,D,C,1]); solve :: int_search([C,D], input_order, indomain_min, complete) satisfy;
Choco 4.10.13.
This model has one solution,
C = 2, D = 3
, but Choco also findsC = D = 3
, which is wrong.