Hi all, I think there is a small bug in lex_le/2 in ic_global_gac: it doesn't always enforce GAC. Here is an example: ?- X = [](A, B, C, D), X #:: 1 .. 5, ic_global_gac : lex_le([A, B], [C, D]), B = 2, D = 1. X = [](A{1 .. 5}, 2, C{1 .. 5}, 1) A = A{1 .. 5} B = 2 C = C{1 .. 5} D = 1 The bounds on A and C are wrong; A<C should be enforced and therefore 5 should be deleted from A and 1 deleted from C. (Note that if the assignments to B and D are made *before* lex_le is imposed, then the bounds are correct.) The cause of the problem is that the constraint isn't woken when B and D are changed. I think the error is in line 969 of generic_global_gac.ecl: Upper is fix(min(B,N))-1, % convert to integer required ... which I think should be: Upper is fix(min(B-1,N)), % convert to integer required In my very limited testing, this fixes the problem. ChrisReceived on Thu Feb 10 2011 - 05:02:14 CET
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET