|
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 |
| package org.sat4j.minisat.constraints.card; |
|
27 |
| |
|
28 |
| import java.io.Serializable; |
|
29 |
| |
|
30 |
| import org.sat4j.minisat.constraints.cnf.Lits; |
|
31 |
| import org.sat4j.minisat.core.Constr; |
|
32 |
| import org.sat4j.minisat.core.ILits; |
|
33 |
| import org.sat4j.minisat.core.Undoable; |
|
34 |
| import org.sat4j.minisat.core.UnitPropagationListener; |
|
35 |
| import org.sat4j.specs.ContradictionException; |
|
36 |
| import org.sat4j.specs.IVecInt; |
|
37 |
| |
|
38 |
| |
|
39 |
| |
|
40 |
| |
|
41 |
| |
|
42 |
| |
|
43 |
| |
|
44 |
| |
|
45 |
| |
|
46 |
| public class AtLeast implements Constr, Undoable, Serializable { |
|
47 |
| |
|
48 |
| private static final long serialVersionUID = 1L; |
|
49 |
| |
|
50 |
| |
|
51 |
| protected int maxUnsatisfied; |
|
52 |
| |
|
53 |
| |
|
54 |
| private int counter; |
|
55 |
| |
|
56 |
| |
|
57 |
| |
|
58 |
| |
|
59 |
| protected final int[] lits; |
|
60 |
| |
|
61 |
| protected final ILits voc; |
|
62 |
| |
|
63 |
| |
|
64 |
| |
|
65 |
| |
|
66 |
| |
|
67 |
| |
|
68 |
| |
|
69 |
264508
| protected AtLeast(ILits voc, IVecInt ps, int degree) {
|
|
70 |
264508
| maxUnsatisfied = ps.size() - degree;
|
|
71 |
264508
| this.voc = voc;
|
|
72 |
264508
| counter = 0;
|
|
73 |
264508
| lits = new int[ps.size()];
|
|
74 |
264508
| ps.moveTo(lits);
|
|
75 |
264508
| for (int q : lits) {
|
|
76 |
1321963
| voc.watch(q ^ 1, this);
|
|
77 |
| } |
|
78 |
| } |
|
79 |
| |
|
80 |
262023
| protected static int niceParameters(UnitPropagationListener s, ILits voc,
|
|
81 |
| IVecInt ps, int deg) throws ContradictionException { |
|
82 |
| |
|
83 |
262023
| if (ps.size() < deg)
|
|
84 |
40
| throw new ContradictionException();
|
|
85 |
261983
| int degree = deg;
|
|
86 |
261983
| for (int i = 0; i < ps.size();) {
|
|
87 |
| |
|
88 |
1003320
| if (voc.isUnassigned(ps.get(i))) {
|
|
89 |
| |
|
90 |
1002993
| i++;
|
|
91 |
| } else { |
|
92 |
| |
|
93 |
| |
|
94 |
327
| if (voc.isSatisfied(ps.get(i))) {
|
|
95 |
153
| degree--;
|
|
96 |
| } |
|
97 |
| |
|
98 |
| |
|
99 |
327
| ps.delete(i);
|
|
100 |
| } |
|
101 |
| } |
|
102 |
| |
|
103 |
| |
|
104 |
261983
| ps.sortUnique();
|
|
105 |
| |
|
106 |
| |
|
107 |
| |
|
108 |
| |
|
109 |
261983
| if (ps.size() == degree) {
|
|
110 |
22
| for (int i = 0; i < ps.size(); i++) {
|
|
111 |
387
| if (!s.enqueue(ps.get(i))) {
|
|
112 |
0
| throw new ContradictionException();
|
|
113 |
| } |
|
114 |
| } |
|
115 |
22
| return 0;
|
|
116 |
| } |
|
117 |
| |
|
118 |
261961
| if (ps.size() < degree)
|
|
119 |
15
| throw new ContradictionException();
|
|
120 |
261946
| return degree;
|
|
121 |
| |
|
122 |
| } |
|
123 |
| |
|
124 |
252817
| public static AtLeast atLeastNew(UnitPropagationListener s, ILits voc,
|
|
125 |
| IVecInt ps, int n) throws ContradictionException { |
|
126 |
252817
| int degree = niceParameters(s, voc, ps, n);
|
|
127 |
252762
| if (degree == 0)
|
|
128 |
22
| return null;
|
|
129 |
252740
| return new AtLeast(voc, ps, degree);
|
|
130 |
| } |
|
131 |
| |
|
132 |
| |
|
133 |
| |
|
134 |
| |
|
135 |
| |
|
136 |
| |
|
137 |
0
| public void remove() {
|
|
138 |
0
| for (int q : lits) {
|
|
139 |
0
| voc.watches(q ^ 1).remove(this);
|
|
140 |
| } |
|
141 |
| } |
|
142 |
| |
|
143 |
| |
|
144 |
| |
|
145 |
| |
|
146 |
| |
|
147 |
| |
|
148 |
509616882
| public boolean propagate(UnitPropagationListener s, int p) {
|
|
149 |
| |
|
150 |
509616882
| voc.watch(p, this);
|
|
151 |
| |
|
152 |
509616882
| if (counter == maxUnsatisfied)
|
|
153 |
19325851
| return false;
|
|
154 |
| |
|
155 |
490291031
| counter++;
|
|
156 |
490291031
| voc.undos(p).push(this);
|
|
157 |
| |
|
158 |
| |
|
159 |
490291031
| if (counter == maxUnsatisfied)
|
|
160 |
303351675
| for (int q : lits) {
|
|
161 |
1705780121
| if (voc.isUnassigned(q) && !s.enqueue(q, this)) {
|
|
162 |
0
| return false;
|
|
163 |
| } |
|
164 |
| } |
|
165 |
490291031
| return true;
|
|
166 |
| } |
|
167 |
| |
|
168 |
| |
|
169 |
| |
|
170 |
| |
|
171 |
| |
|
172 |
| |
|
173 |
0
| public boolean simplify() {
|
|
174 |
0
| return false;
|
|
175 |
| } |
|
176 |
| |
|
177 |
| |
|
178 |
| |
|
179 |
| |
|
180 |
| |
|
181 |
| |
|
182 |
490252002
| public void undo(int p) {
|
|
183 |
490252002
| counter--;
|
|
184 |
| } |
|
185 |
| |
|
186 |
| |
|
187 |
| |
|
188 |
| |
|
189 |
| |
|
190 |
| |
|
191 |
172171062
| public void calcReason(int p, IVecInt outReason) {
|
|
192 |
172171062
| int c = (p == ILits.UNDEFINED) ? -1 : 0;
|
|
193 |
172171062
| for (int q : lits) {
|
|
194 |
1064707116
| if (voc.isFalsified(q)) {
|
|
195 |
617754540
| outReason.push(q ^ 1);
|
|
196 |
617754540
| if (++c == maxUnsatisfied)
|
|
197 |
172171062
| return;
|
|
198 |
| } |
|
199 |
| } |
|
200 |
| } |
|
201 |
| |
|
202 |
| |
|
203 |
| |
|
204 |
| |
|
205 |
| |
|
206 |
| |
|
207 |
172171062
| public boolean learnt() {
|
|
208 |
| |
|
209 |
172171062
| return false;
|
|
210 |
| } |
|
211 |
| |
|
212 |
| |
|
213 |
| |
|
214 |
| |
|
215 |
| |
|
216 |
| |
|
217 |
0
| public double getActivity() {
|
|
218 |
| |
|
219 |
0
| return 0;
|
|
220 |
| } |
|
221 |
| |
|
222 |
| |
|
223 |
| |
|
224 |
| |
|
225 |
| |
|
226 |
| |
|
227 |
0
| public void incActivity(double claInc) {
|
|
228 |
| |
|
229 |
| |
|
230 |
| } |
|
231 |
| |
|
232 |
| |
|
233 |
| |
|
234 |
| |
|
235 |
0
| public boolean locked() {
|
|
236 |
| |
|
237 |
| |
|
238 |
0
| return true;
|
|
239 |
| } |
|
240 |
| |
|
241 |
0
| public void setLearnt() {
|
|
242 |
0
| throw new UnsupportedOperationException();
|
|
243 |
| } |
|
244 |
| |
|
245 |
0
| public void register() {
|
|
246 |
0
| throw new UnsupportedOperationException();
|
|
247 |
| } |
|
248 |
| |
|
249 |
1741810
| public int size() {
|
|
250 |
1741810
| return lits.length;
|
|
251 |
| } |
|
252 |
| |
|
253 |
2335556
| public int get(int i) {
|
|
254 |
2335556
| return lits[i];
|
|
255 |
| } |
|
256 |
| |
|
257 |
0
| public void rescaleBy(double d) {
|
|
258 |
0
| throw new UnsupportedOperationException();
|
|
259 |
| } |
|
260 |
| |
|
261 |
0
| public void assertConstraint(UnitPropagationListener s) {
|
|
262 |
0
| throw new UnsupportedOperationException();
|
|
263 |
| } |
|
264 |
| |
|
265 |
| |
|
266 |
| |
|
267 |
| |
|
268 |
| |
|
269 |
| |
|
270 |
0
| @Override
|
|
271 |
| public String toString() { |
|
272 |
0
| StringBuffer stb = new StringBuffer();
|
|
273 |
0
| stb.append("Card (" + lits.length + ") : ");
|
|
274 |
0
| for (int i = 0; i < lits.length; i++) {
|
|
275 |
| |
|
276 |
0
| stb.append(" + ");
|
|
277 |
0
| stb.append(Lits.toString(this.lits[i]));
|
|
278 |
0
| stb.append("[");
|
|
279 |
0
| stb.append(voc.valueToString(lits[i]));
|
|
280 |
0
| stb.append("@");
|
|
281 |
0
| stb.append(voc.getLevel(lits[i]));
|
|
282 |
0
| stb.append("]");
|
|
283 |
0
| stb.append(" ");
|
|
284 |
0
| stb.append(" ");
|
|
285 |
| } |
|
286 |
0
| stb.append(">= ");
|
|
287 |
0
| stb.append(size() - maxUnsatisfied);
|
|
288 |
| |
|
289 |
0
| return stb.toString();
|
|
290 |
| } |
|
291 |
| |
|
292 |
| } |