| 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; |
| 27 |
|
|
| 28 |
|
import static java.lang.System.out; |
| 29 |
|
|
| 30 |
|
import org.sat4j.minisat.SolverFactory; |
| 31 |
|
import org.sat4j.opt.MaxSatDecorator; |
| 32 |
|
import org.sat4j.opt.WeightedMaxSatDecorator; |
| 33 |
|
import org.sat4j.reader.DimacsReader; |
| 34 |
|
import org.sat4j.reader.Reader; |
| 35 |
|
import org.sat4j.specs.ISolver; |
| 36 |
|
|
|
|
|
| 0% |
Uncovered Elements: 20 (20) |
Complexity: 3 |
Complexity Density: 0,64 |
|
| 37 |
|
public class MaxSatLauncher extends AbstractOptimizationLauncher { |
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
private static final long serialVersionUID = 1L; |
| 43 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 44 |
0
|
@Override... |
| 45 |
|
protected void usage() { |
| 46 |
0
|
out.println("java -jar sat4jmax instance-name"); |
| 47 |
|
} |
| 48 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0,67 |
|
| 49 |
0
|
@Override... |
| 50 |
|
protected Reader createReader(ISolver solver, String problemname) { |
| 51 |
0
|
if (problemname.endsWith(".wcnf")) { |
| 52 |
0
|
return new DimacsReader(solver, "wcnf"); |
| 53 |
|
} |
| 54 |
0
|
return new DimacsReader(solver); |
| 55 |
|
} |
| 56 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 57 |
0
|
@Override... |
| 58 |
|
protected String getInstanceName(String[] args) { |
| 59 |
0
|
return args[0]; |
| 60 |
|
} |
| 61 |
|
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0,5 |
|
| 62 |
0
|
@Override... |
| 63 |
|
protected ISolver configureSolver(String[] args) { |
| 64 |
0
|
int problemindex = args.length - 1; |
| 65 |
0
|
if (args[problemindex].endsWith(".wcnf")) { |
| 66 |
0
|
return new WeightedMaxSatDecorator(SolverFactory |
| 67 |
|
.newMiniOPBClauseCardConstrMaxSpecificOrder()); |
| 68 |
|
} |
| 69 |
0
|
return new MaxSatDecorator(SolverFactory.newMiniMaxSAT()); |
| 70 |
|
} |
| 71 |
|
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0,5 |
|
| 72 |
0
|
public static void main(String[] args) {... |
| 73 |
0
|
AbstractLauncher lanceur = new MaxSatLauncher(); |
| 74 |
0
|
lanceur.run(args); |
| 75 |
|
} |
| 76 |
|
} |