git-subtree-dir: software/mza git-subtree-split: f970a59b177c13ca3dd8aaef8cc6681d83b7e813
51 lines
1.5 KiB
MiniZinc
51 lines
1.5 KiB
MiniZinc
include "alldifferent.mzn";
|
|
|
|
predicate fzn_subcircuit(array[int] of var int: x) =
|
|
let {
|
|
set of int: S = index_set(x),
|
|
int: l = min(S),
|
|
int: u = max(S),
|
|
int: n = card(S),
|
|
array[S] of var 1..n: order,
|
|
array[S] of var bool: ins = array1d(S,[ x[i] != i | i in S]),
|
|
var l..u+1: firstin = min([ u+1 + bool2int(ins[i])*(i-u-1) | i in S]),
|
|
var S: lastin,
|
|
var bool: empty = (firstin > u),
|
|
} in
|
|
alldifferent(x) /\
|
|
alldifferent(order) /\
|
|
|
|
% If the subcircuit is empty then each node points at itself.
|
|
%
|
|
(empty -> forall(i in S)(not ins[i])) /\
|
|
|
|
% If the subcircuit is non-empty then order numbers the subcircuit.
|
|
%
|
|
((not empty) ->
|
|
|
|
% The firstin node is numbered 1.
|
|
order[firstin] = 1 /\
|
|
|
|
% The lastin node is greater than firstin.
|
|
lastin > firstin /\
|
|
|
|
% The lastin node points at firstin.
|
|
x[lastin] = firstin /\
|
|
|
|
% And both are in
|
|
ins[lastin] /\ ins[firstin] /\
|
|
|
|
% The successor of each node except where it is firstin is
|
|
% numbered one more than the predecessor.
|
|
forall(i in S) (
|
|
(ins[i] /\ x[i] != firstin) -> order[x[i]] = order[i] + 1
|
|
) /\
|
|
|
|
% Each node that is not in is numbered after the lastin node.
|
|
forall(i in S) (
|
|
ins[i] \/ order[lastin] < order[i]
|
|
)
|
|
);
|
|
|
|
%-----------------------------------------------------------------------------%
|