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 package org.sat4j.pb.constraints;
29
30 import java.math.BigInteger;
31
32 import org.sat4j.core.Vec;
33 import org.sat4j.core.VecInt;
34 import org.sat4j.minisat.constraints.card.MinWatchCard;
35 import org.sat4j.minisat.constraints.cnf.LearntBinaryClause;
36 import org.sat4j.minisat.constraints.cnf.LearntHTClause;
37 import org.sat4j.minisat.constraints.cnf.OriginalBinaryClause;
38 import org.sat4j.minisat.constraints.cnf.OriginalHTClause;
39 import org.sat4j.minisat.constraints.cnf.UnitClause;
40 import org.sat4j.minisat.core.Constr;
41 import org.sat4j.pb.constraints.pb.IDataStructurePB;
42 import org.sat4j.specs.ContradictionException;
43 import org.sat4j.specs.IVec;
44 import org.sat4j.specs.IVecInt;
45
46 public class CompetResolutionPBMixedHTClauseCardConstrDataStructure extends
47 PBMaxClauseCardConstrDataStructure {
48
49 private static final long serialVersionUID = 1L;
50
51 @Override
52 protected Constr constructClause(IVecInt v) {
53 if (v == null)
54 return null;
55 if (v.size() == 2) {
56 return OriginalBinaryClause.brandNewClause(solver, getVocabulary(),
57 v);
58 }
59 return OriginalHTClause.brandNewClause(solver, getVocabulary(), v);
60 }
61
62 @Override
63 protected Constr constructLearntClause(IVecInt resLits) {
64 if (resLits.size() == 1) {
65 return new UnitClause(resLits.last());
66 }
67 if (resLits.size() == 2) {
68 return new LearntBinaryClause(resLits, getVocabulary());
69 }
70 return new LearntHTClause(resLits, getVocabulary());
71 }
72
73 @Override
74 protected Constr constructCard(IVecInt theLits, int degree)
75 throws ContradictionException {
76 return MinWatchCard.minWatchCardNew(solver, getVocabulary(), theLits,
77 MinWatchCard.ATLEAST, degree);
78 }
79
80 @Override
81 protected Constr constructLearntCard(IDataStructurePB dspb) {
82 IVecInt resLits = new VecInt();
83 IVec<BigInteger> resCoefs = new Vec<BigInteger>();
84 dspb.buildConstraintFromConflict(resLits, resCoefs);
85 return new MinWatchCard(getVocabulary(), resLits, true, dspb
86 .getDegree().intValue());
87 }
88
89 }