Clover Coverage Report
Coverage timestamp: mer. juin 27 2007 07:27:16 CEST
4   101   1   1
0   35   1   4
4     1  
1    
 
  PBMaxDataStructure       Line # 40 4 1 75% 0.75
 
  (177)
 
1    /*
2    * SAT4J: a SATisfiability library for Java Copyright (C) 2004-2006 Daniel Le Berre
3    *
4    * Based on the original minisat specification from:
5    *
6    * An extensible SAT solver. Niklas E?n and Niklas S?rensson. Proceedings of the
7    * Sixth International Conference on Theory and Applications of Satisfiability
8    * Testing, LNCS 2919, pp 502-518, 2003.
9    *
10    * This library is free software; you can redistribute it and/or modify it under
11    * the terms of the GNU Lesser General Public License as published by the Free
12    * Software Foundation; either version 2.1 of the License, or (at your option)
13    * any later version.
14    *
15    * This library is distributed in the hope that it will be useful, but WITHOUT
16    * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17    * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18    * details.
19    *
20    * You should have received a copy of the GNU Lesser General Public License
21    * along with this library; if not, write to the Free Software Foundation, Inc.,
22    * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23    *
24    */
25   
26    package org.sat4j.minisat.constraints;
27   
28    import java.math.BigInteger;
29   
30    import org.sat4j.minisat.constraints.pb.MaxWatchPb;
31    import org.sat4j.minisat.constraints.pb.WatchPb;
32    import org.sat4j.specs.ContradictionException;
33    import org.sat4j.specs.IVec;
34    import org.sat4j.specs.IVecInt;
35   
36    /**
37    * @author leberre To change the template for this generated type comment go to
38    * Window - Preferences - Java - Code Generation - Code and Comments
39    */
 
40    public class PBMaxDataStructure extends AbstractPBDataStructureFactory {
41   
42    private static final long serialVersionUID = 1L;
43   
44    /**
45    * @param literals
46    * @param coefs
47    * @param moreThan
48    * @param degree
49    * @return
50    * @throws ContradictionException
51    */
 
52  499336 toggle @Override
53    protected WatchPb constraintFactory(IVecInt literals, IVecInt coefs,
54    boolean moreThan, int degree) throws ContradictionException {
55  499336 return MaxWatchPb.maxWatchPbNew(solver, getVocabulary(), literals,
56    coefs, moreThan, degree);
57    }
58   
59    /**
60    * @param literals
61    * @param coefs
62    * @param degree
63    * @return
64    */
 
65  0 toggle @Override
66    protected WatchPb constraintFactory(IVecInt literals, IVecInt coefs,
67    int degree) {
68  0 return MaxWatchPb.watchPbNew(getVocabulary(), literals, coefs, true,
69    degree);
70    }
71   
72    /**
73    * @param literals
74    * @param coefs
75    * @param moreThan
76    * @param degree
77    * @return
78    * @throws ContradictionException
79    */
 
80  280274 toggle @Override
81    protected WatchPb constraintFactory(IVecInt literals,
82    IVec<BigInteger> coefs, boolean moreThan, BigInteger degree)
83    throws ContradictionException {
84  280274 return MaxWatchPb.maxWatchPbNew(solver, getVocabulary(), literals,
85    coefs, moreThan, degree);
86    }
87   
88    /**
89    * @param literals
90    * @param coefs
91    * @param degree
92    * @return
93    */
 
94  122986 toggle @Override
95    protected WatchPb constraintFactory(IVecInt literals,
96    IVec<BigInteger> coefs, BigInteger degree) {
97  122986 return MaxWatchPb.watchPbNew(getVocabulary(), literals, coefs, true,
98    degree);
99    }
100   
101    }