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 |
|
package org.sat4j.reader; |
26 |
|
|
27 |
|
import java.io.FileNotFoundException; |
28 |
|
import java.io.IOException; |
29 |
|
import java.io.PrintWriter; |
30 |
|
import java.io.Reader; |
31 |
|
|
32 |
|
import javax.xml.parsers.ParserConfigurationException; |
33 |
|
|
34 |
|
import org.sat4j.csp.xml.CspXmlParser; |
35 |
|
import org.sat4j.specs.ContradictionException; |
36 |
|
import org.sat4j.specs.IProblem; |
37 |
|
import org.sat4j.specs.ISolver; |
38 |
|
import org.xml.sax.SAXException; |
39 |
|
|
|
|
| 0% |
Uncovered Elements: 17 (17) |
Complexity: 3 |
Complexity Density: 0,73 |
|
40 |
|
public class XMLCSPReader extends org.sat4j.reader.Reader { |
41 |
|
|
42 |
|
private final CSPReader cspreader; |
43 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
0
|
public XMLCSPReader(ISolver solver) {... |
45 |
0
|
cspreader = new CSPSupportReader(solver); |
46 |
|
} |
47 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
48 |
0
|
@Override... |
49 |
|
public String decode(int[] model) { |
50 |
0
|
return cspreader.decode(model); |
51 |
|
} |
52 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
53 |
0
|
@Override... |
54 |
|
public void decode(int[] model, PrintWriter out) { |
55 |
0
|
cspreader.decode(model, out); |
56 |
|
} |
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
@see |
62 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 3 |
Complexity Density: 0,6 |
|
63 |
0
|
@Override... |
64 |
|
public IProblem parseInstance(String filename) |
65 |
|
throws FileNotFoundException, ParseFormatException, IOException, |
66 |
|
ContradictionException { |
67 |
0
|
try { |
68 |
0
|
CspXmlParser.parse(cspreader, filename); |
69 |
|
} catch (SAXException e) { |
70 |
0
|
throw new ParseFormatException(e); |
71 |
|
} catch (ParserConfigurationException e) { |
72 |
0
|
throw new ParseFormatException(e); |
73 |
|
} |
74 |
0
|
return cspreader.getProblem(); |
75 |
|
} |
76 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
77 |
0
|
@Override... |
78 |
|
public IProblem parseInstance(Reader in) throws ParseFormatException, |
79 |
|
ContradictionException, IOException { |
80 |
0
|
throw new UnsupportedOperationException(); |
81 |
|
} |
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
@see |
87 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0,5 |
|
88 |
0
|
@Override... |
89 |
|
public void setVerbosity(boolean b) { |
90 |
0
|
super.setVerbosity(b); |
91 |
0
|
cspreader.setVerbosity(b); |
92 |
|
} |
93 |
|
|
94 |
|
} |