-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTwoSAT.java
39 lines (38 loc) · 1.31 KB
/
TwoSAT.java
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
29
30
31
32
33
34
35
36
37
38
39
import java.io.*;
import java.util.*;
public class TwoSAT {
public static void main(String[] args) {
String path = args[0];
try {
// create graph from file
Graph g = Loader.load(path);
// run Tarjan's strongly connected components algorithm
g.tarjan();
// check for satisfiability
if(g.satisfiable()) {
System.out.println("FORMULA SATISFIABLE");
// solve
Map<Integer, Boolean> solution = g.solve();
// print solution
for(int i = 1; i <= solution.size(); i++) {
Boolean value = solution.get(i);
if(value) {
System.out.print('1');
} else {
System.out.print('0');
}
// print a space to separate values
if(i != solution.size()) {
System.out.print(' ');
}
}
System.out.println("");
} else {
System.out.println("FORMULA UNSATISFIABLE");
}
} catch(InvalidInputException e) {
} catch(IOException e) {
System.out.println("Unexpected IOException");
}
}
}