965dadaa
Salvador Abreu
initial commit fr...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/* X - Y ne k */
int fd_minus_ne_filter(fd_constraint this)
{
fd_int x, y;
int k;
int value;
x = VAR(this, 0);
y = VAR(this, 1);
k = this->constants[0];
// only propagate if a variable domain is a singleton
if (fd_var_single(x, &value) && _fd_var_del_val(value - k, y))
{
if (fd_domain_empty(y))
return FD_NOSOLUTION;
fd__constraint_set_entailed(this);
_fd_revise_connected(this, y);
}
else if (fd_var_single(y, &value) && _fd_var_del_val(k + value, x))
{
if (fd_domain_empty(x))
return FD_NOSOLUTION;
fd__constraint_set_entailed(this);
_fd_revise_connected(this, x);
}
return FD_OK;
}
int fd_minus_ne_propagate2(fd_constraint this, fd_int culprit)
{
fd_int revise;
int culprit_idx;
int value;
int changed = 0;
// only propagate if culprit's domain is a singleton
if (!fd_var_single(culprit, &value))
return FD_OK;
culprit_idx = culprit == VAR(this, 0) ? 0 : 1;
revise = VAR(this, 1 - culprit_idx);
if (culprit_idx == 0)
changed = _fd_var_del_val(value - this->constants[0], revise);
else
changed = _fd_var_del_val(this->constants[0] + value, revise);
if (changed)
{
if (fd_domain_empty(revise))
return FD_NOSOLUTION;
_fd_revise_connected(this, revise);
}
fd__constraint_set_entailed(this);
return FD_OK;
}
int fd_minus_ne_propagate(fd_constraint this, fd_int revise)
{
fd_int other;
int other_idx;
int value;
int changed = 0;
other_idx = revise == VAR(this, 0) ? 1 : 0;
other = VAR(this, other_idx);
// only propagate if other's domain is a singleton
if (!fd_var_single(other, &value))
return FD_OK;
if (other_idx == 0)
changed = _fd_var_del_val(value - this->constants[0], revise);
else
changed = _fd_var_del_val(this->constants[0] + value, revise);
if (changed && fd_domain_empty(revise))
return FD_NOSOLUTION;
fd__constraint_set_entailed(this);
// XXX: enqueue further updates here?
if (changed)
_fd_revise_connected(this, revise);
return FD_OK;
}
fd_constraint fd_minus_ne(fd_int x, fd_int y, int k)
{
|
965dadaa
Salvador Abreu
initial commit fr...
|
110
111
112
113
114
115
116
117
118
|
#else /* CONSTRAINT_CLASS */
c->propagator2 = fd_minus_ne_propagate2;
c->propagator = fd_minus_ne_propagate;
#endif /* CONSTRAINT_CLASS */
_fd_var_add_constraint(x, c);
_fd_var_add_constraint(y, c);
_fd_add_constraint(c);
|