-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.ml
113 lines (86 loc) · 6.33 KB
/
make.ml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
(* ========================================================================= *)
(* Load in theorem proving example code. *)
(* *)
(* Copyright (c) 2003-2007, John Harrison. (See "LICENSE.txt" for details.) *)
(* ========================================================================= *)
#warnings "-3";; (* Suppress deprecation warnings due to old-style code. *)
#use "topfind";;
#load "nums.cma";;
#require "camlp5";;
#load "camlp5o.cma";;
(* ------------------------------------------------------------------------- *)
(* Dummy so we can just do #use. *)
(* ------------------------------------------------------------------------- *)
type dummy_interactive = START_INTERACTIVE | END_INTERACTIVE;;
(* ------------------------------------------------------------------------- *)
(* Various small tweaks to OCAML's default state. *)
(* ------------------------------------------------------------------------- *)
#use "initialization.ml";;
(* ------------------------------------------------------------------------- *)
(* Use the quotation expander. *)
(* ------------------------------------------------------------------------- *)
#use "Quotexpander.ml";;
(* ------------------------------------------------------------------------- *)
(* Basic background. *)
(* ------------------------------------------------------------------------- *)
#use "lib.ml";; (* Utility functions *)
#use "intro.ml";; (* Trivial example from the introduction *)
(* ------------------------------------------------------------------------- *)
(* General type of formulas, parser and printer (used for prop and FOL). *)
(* ------------------------------------------------------------------------- *)
#use "formulas.ml";;
(* ------------------------------------------------------------------------- *)
(* Propositional logic. *)
(* ------------------------------------------------------------------------- *)
#use "prop.ml";; (* Basic propositional logic stuff *)
#use "propexamples.ml";; (* Generate tautologies *)
#use "defcnf.ml";; (* Definitional CNF *)
#use "dp.ml";; (* Davis-Putnam procedure *)
#use "stal.ml";; (* Stalmarck's algorithm *)
#use "bdd.ml";; (* Binary decision diagrams *)
(* ------------------------------------------------------------------------- *)
(* First order logic. *)
(* ------------------------------------------------------------------------- *)
#use "fol.ml";; (* Basic first order logic stuff *)
#use "skolem.ml";; (* Prenex and Skolem normal forms *)
#use "herbrand.ml";; (* Herbrand theorem and mechanization *)
#use "unif.ml";; (* Unification algorithm *)
#use "tableaux.ml";; (* Tableaux *)
#use "resolution.ml";; (* Resolution *)
#use "prolog.ml";; (* Horn clauses and Prolog *)
#use "meson.ml";; (* MESON-type model elimination *)
#use "skolems.ml";; (* Skolemizing a set of formulas (theoretical) *)
(* ------------------------------------------------------------------------- *)
(* Equality handling. *)
(* ------------------------------------------------------------------------- *)
#use "equal.ml";; (* Naive equality axiomatization *)
#use "cong.ml";; (* Congruence closure *)
#use "rewrite.ml";; (* Rewriting *)
#use "order.ml";; (* Simple term orderings including LPO *)
#use "completion.ml";; (* Completion *)
#use "eqelim.ml";; (* Equality elimination: Brand xform etc. *)
#use "paramodulation.ml";; (* Paramodulation. *)
(* ------------------------------------------------------------------------- *)
(* Decidable problems. *)
(* ------------------------------------------------------------------------- *)
#use "decidable.ml";; (* Some decidable subsets of first-order logic *)
#use "qelim.ml";; (* Quantifier elimination basics *)
#use "cooper.ml";; (* Cooper's algorithm for Presburger arith. *)
#use "complex.ml";; (* Complex quantifier elimination *)
#use "real.ml";; (* Real quantifier elimination *)
#use "grobner.ml";; (* Grobner bases *)
#use "geom.ml";; (* Geometry theorem proving *)
#use "interpolation.ml";; (* Constructive Craig/Robinson interpolation *)
#use "combining.ml";; (* Combined decision procedure *)
(* ------------------------------------------------------------------------- *)
(* Interactive theorem proving. *)
(* ------------------------------------------------------------------------- *)
#use "lcf.ml";; (* LCF-style system for first-order logic *)
#use "lcfprop.ml";; (* Propositional logic by inference *)
#use "folderived.ml";; (* First-order specialization etc. *)
#use "lcffol.ml";; (* LCF implementation of first-order tableaux *)
#use "tactics.ml";; (* Tactics and Mizar-style proofs *)
(* ------------------------------------------------------------------------- *)
(* Limitations. *)
(* ------------------------------------------------------------------------- *)
#use "limitations.ml";; (* Various Goedelian-type stuff *)