-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
51 lines (31 loc) · 1.07 KB
/
README
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
40
41
42
43
44
45
46
47
48
49
50
51
This sat solver is based on minisat SPFS : https://github.com/JoD/minisat-SPFS
================================================================================
Building:
cd sat_symmetry
source .env
make third_party
make
cd ..
make cr
cp build/release/bin/minisat_core runner/
================================================================================
Execute:
Execute minisat-SymSP
./runner/execute.sh CNF_FILE
--
Execute minisat-Sym
./runner/execute.sh -no-dynamic-breaking CNF_FILE
--
Execute minisat-Sp
./runner/execute.sh -no-cosy CNF_FILE
================================================================================
Directory Overview:
minisat/mtl/ Mini Template Library
minisat/utils/ Generic helper code (I/O, Parsing, CPU-time, etc)
minisat/core/ A core version of the solver
minisat/simp/ An extended solver with simplification capabilities
sat_symmetry/ A library for ESBPA
doc/ Documentation
README
LICENSE
================================================================================