1 |
|
package org.sat4j.minisat.constraints; |
2 |
|
|
3 |
|
import junit.framework.TestCase; |
4 |
|
|
5 |
|
import org.sat4j.minisat.SolverFactory; |
6 |
|
import org.sat4j.specs.ISolver; |
7 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 1 |
Complexity Density: 1 |
|
8 |
|
public class CounterPBConstrWithClauseAtLeastConstrLearningTest extends |
9 |
|
AbstractPseudoBooleanAndPigeonHoleTest { |
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
@param |
14 |
|
|
15 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
16 |
53
|
public CounterPBConstrWithClauseAtLeastConstrLearningTest(String arg) {... |
17 |
53
|
super(arg); |
18 |
|
} |
19 |
|
|
20 |
|
|
21 |
|
@see |
22 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
23 |
53
|
@Override... |
24 |
|
protected ISolver createSolver() { |
25 |
53
|
return SolverFactory.newMiniOPBClauseAtLeastConstrMax(); |
26 |
|
} |
27 |
|
|
28 |
|
} |