-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some symmetry constraint files
- Loading branch information
Peter Stuckey
committed
Mar 13, 2017
1 parent
4808bd3
commit dd60f8d
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
predicate var_perm_sym(array[int] of var int: x, | ||
array[int,int] of int: p) = | ||
let { int: l = min(index_set_1of2(p)), | ||
int: u = max(index_set_1of2(p)), | ||
array[1..length(x)] of var int: | ||
y = [ x[i] | i in index_set(x) ] } | ||
in | ||
forall (i, j in l..u where i != j) ( | ||
var_perm_sym_pairwise(y, | ||
[ p[i,k] | k in index_set_2of2(p) ], | ||
[ p[j,k] | k in index_set_2of2(p) ]) | ||
); | ||
|
||
predicate var_perm_sym_pairwise( | ||
array[int] of var int: x, | ||
array[int] of int: p1, | ||
array[int] of int: p2) = | ||
let { int: n = length(x), | ||
array[1..n] of 1..n: | ||
invp1 = [ j | i, j in 1..n | ||
where p1[j] = i ] } | ||
in | ||
lex_lesseq(x, [ x[p2[invp1[i]]] | i in 1..n ]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
include "var_perm_sym.mzn"; | ||
|
||
predicate | ||
var_sqr_sym(array[int,int] of var int: x) = | ||
let { int: n = card(index_set_1of2(x)); | ||
int: n2 = card(index_set_2of2(x)); | ||
constraint assert(n = n2,"square symmetry applied to non-square array"); | ||
int: l = n * n; | ||
array[1..l] of var int: | ||
y = [ x[i,j] | i in index_set_1of2(x), | ||
j in index_set_2of2(x) ]; | ||
array[1..8,1..l] of 1..l: | ||
p = array2d(1..8,1..l, | ||
[ if k == 1 then i*n + j - n | ||
elseif k == 2 then (n - j)*n + i % r270 | ||
elseif k == 3 then (n - i)*n + (n - j)+1 % r180 | ||
elseif k == 4 then (j*n - n) + (n - i + 1) % r90 | ||
elseif k == 5 then (n - i)*n + j % x flip | ||
elseif k == 6 then (i*n - n) + (n - j + 1) % y flip | ||
elseif k == 7 then (n - j)*n + (n - i + 1) % d2 flip | ||
else (j*n - n) + i % d1 flip | ||
endif | ||
| k in 1..8, i,j in 1..n]) } | ||
in | ||
var_perm_sym(y,p); |