forked from dan-blank/smtcoq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies_native.dot
66 lines (66 loc) · 2.24 KB
/
dependencies_native.dot
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
digraph {
node [style=filled, color=green2] ;
"Syntactic.v" -> "SMT_terms.v" ;
"Operators.v" -> "SMT_terms.v" ;
"Assumptions.v" -> "SMT_terms.v" ;
"Arithmetic.v" -> "Lia.v" ;
"Lia.v" -> "SMT_terms.v" ;
"Extract.v" -> "SMTCoq.v" ;
"Euf.v" -> "SMT_terms.v" ;
"Cnf.v" -> "SMT_terms.v" ;
"Trace.v" -> "Arithmetic.v" ;
"Trace.v" -> "Assumptions.v" ;
"Trace.v" -> "Cnf.v" ;
"Trace.v" -> "Euf.v" ;
"Trace.v" -> "Operators.v" ;
"Trace.v" -> "Structures.v" ;
"Trace.v" -> "Syntactic.v" ;
"SMT_terms.v" -> "Misc.v" ;
"SMT_terms.v" -> "State.v" ;
"SMTCoq.v" -> "Trace.v" ;
node [style=filled, color=yellow] ;
"zchaffParser.ml" -> "satParser.ml" ;
"zchaffParser.ml" -> "smtTrace.ml" ;
"zchaff.ml" -> "cnfParser.ml" ;
"zchaff.ml" -> "zchaffParser.ml" ;
"cnfParser.ml" -> "satAtom.ml" ;
"cnfParser.ml" -> "satParser.ml" ;
"veritSyntax.ml" -> "lia.ml" ;
"veritParser.ml" -> "veritSyntax.ml" ;
"verit.ml" -> "smtCommands.ml" ;
"verit.ml" -> "smtlib2_genConstr.ml" ;
"verit.ml" -> "veritLexer.ml" ;
"veritLexer.ml" -> "veritParser.ml" ;
"smtTrace.ml" -> "smtCertif.ml" ;
"smtMisc.ml" -> "structures.ml" ;
"smtForm.ml" -> "coqTerms.ml" ;
"smtCommands.ml" -> "smtAtom.ml" ;
"smtCnf.ml" -> "smtTrace.ml" ;
"smtCertif.ml" -> "smtForm.ml" ;
"smtAtom.ml" -> "smtTrace.ml" ;
"satAtom.ml" -> "smtCnf.ml" ;
"coqTerms.ml" -> "smtMisc.ml" ;
"smtlib2_parse.ml" -> "smtlib2_ast.ml" ;
"smtlib2_lex.ml" -> "smtlib2_parse.ml" ;
"smtlib2_genConstr.ml" -> "smtlib2_lex.ml" ;
"smtlib2_genConstr.ml" -> "veritSyntax.ml" ;
"smtlib2_ast.ml" -> "smtlib2_util.ml" ;
"lia.ml" -> "smtAtom.ml" ;
"zchaff_checker.ml" -> "sat_checker.ml" ;
"zchaff_checker.ml" -> "zchaff.ml" ;
"verit_checker.ml" -> "smt_checker.ml" ;
"verit_checker.ml" -> "verit.ml" ;
"test.ml" -> "verit_checker.ml" ;
"test.ml" -> "zchaff_checker.ml" ;
"smtcoq.ml" -> "verit_checker.ml" ;
"smtcoq.ml" -> "zchaff_checker.ml" ;
"SMTCoq.v" -> "smtcoq_plugin.ml4" ;
"smt_checker.ml" -> "extrNative.ml" ;
"sat_checker.ml" -> "extrNative.ml" ;
"coqTerms.ml" -> "Trace.v" ;
"smtcoq_plugin.ml4" -> "zchaff.ml" ;
"smtcoq_plugin.ml4" -> "verit.ml" ;
edge [style=dotted, label=extract] ;
"smt_checker.ml" -> "Extract.v" ;
"sat_checker.ml" -> "Extract.v" ;
}