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 package org.sat4j.minisat.constraints;
31
32 import java.io.Serializable;
33
34 import org.sat4j.core.Vec;
35 import org.sat4j.minisat.core.Constr;
36 import org.sat4j.minisat.core.DataStructureFactory;
37 import org.sat4j.minisat.core.ILits;
38 import org.sat4j.minisat.core.Learner;
39 import org.sat4j.minisat.core.Propagatable;
40 import org.sat4j.specs.ContradictionException;
41 import org.sat4j.specs.IVec;
42 import org.sat4j.specs.IVecInt;
43 import org.sat4j.specs.UnitPropagationListener;
44
45
46
47
48
49 public abstract class AbstractDataStructureFactory implements
50 DataStructureFactory, Serializable {
51
52
53
54
55 private static final long serialVersionUID = 1L;
56
57
58
59
60
61
62
63
64 public void conflictDetectedInWatchesFor(int p, int i) {
65 for (int j = i + 1; j < this.tmp.size(); j++) {
66 this.lits.watch(p, this.tmp.get(j));
67 }
68 }
69
70
71
72
73
74
75 public IVec<Propagatable> getWatchesFor(int p) {
76 this.tmp.clear();
77 this.lits.watches(p).moveTo(this.tmp);
78 return this.tmp;
79 }
80
81 protected ILits lits;
82
83 protected AbstractDataStructureFactory() {
84 this.lits = createLits();
85 }
86
87 protected abstract ILits createLits();
88
89 private final IVec<Propagatable> tmp = new Vec<Propagatable>();
90
91
92
93
94
95
96 public ILits getVocabulary() {
97 return this.lits;
98 }
99
100 protected UnitPropagationListener solver;
101
102 protected Learner learner;
103
104 public void setUnitPropagationListener(UnitPropagationListener s) {
105 this.solver = s;
106 }
107
108 public void setLearner(Learner learner) {
109 this.learner = learner;
110 }
111
112 public void reset() {
113 }
114
115 public void learnConstraint(Constr constr) {
116 this.learner.learn(constr);
117 }
118
119
120
121
122
123
124
125
126 public Constr createCardinalityConstraint(IVecInt literals, int degree)
127 throws ContradictionException {
128 throw new UnsupportedOperationException();
129 }
130
131 public Constr createUnregisteredCardinalityConstraint(IVecInt literals,
132 int degree) {
133 throw new UnsupportedOperationException();
134 }
135 }