author | wenzelm |
Thu, 19 May 1994 16:17:46 +0200 | |
changeset 385 | 921f87897a76 |
parent 252 | 7532f95d7f44 |
child 400 | 3c2c40c87112 |
permissions | -rw-r--r-- |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
1 |
(* Title: Pure/drule.ML |
0 | 2 |
ID: $Id$ |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
0 | 4 |
Copyright 1993 University of Cambridge |
5 |
||
6 |
Derived rules and other operations on theorems and theories |
|
7 |
*) |
|
8 |
||
11
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
9 |
infix 0 RS RSN RL RLN MRS MRL COMP; |
0 | 10 |
|
11 |
signature DRULE = |
|
12 |
sig |
|
13 |
structure Thm : THM |
|
14 |
local open Thm in |
|
15 |
val asm_rl: thm |
|
16 |
val assume_ax: theory -> string -> thm |
|
17 |
val COMP: thm * thm -> thm |
|
18 |
val compose: thm * int * thm -> thm list |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
19 |
val cterm_instantiate: (cterm*cterm)list -> thm -> thm |
0 | 20 |
val cut_rl: thm |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
21 |
val equal_abs_elim: cterm -> thm -> thm |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
22 |
val equal_abs_elim_list: cterm list -> thm -> thm |
0 | 23 |
val eq_thm: thm * thm -> bool |
24 |
val eq_thm_sg: thm * thm -> bool |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
25 |
val flexpair_abs_elim_list: cterm list -> thm -> thm |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
26 |
val forall_intr_list: cterm list -> thm -> thm |
0 | 27 |
val forall_intr_frees: thm -> thm |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
28 |
val forall_elim_list: cterm list -> thm -> thm |
0 | 29 |
val forall_elim_var: int -> thm -> thm |
30 |
val forall_elim_vars: int -> thm -> thm |
|
31 |
val implies_elim_list: thm -> thm list -> thm |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
32 |
val implies_intr_list: cterm list -> thm -> thm |
11
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
33 |
val MRL: thm list list * thm list -> thm list |
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
34 |
val MRS: thm list * thm -> thm |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
35 |
val pprint_cterm: cterm -> pprint_args -> unit |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
36 |
val pprint_ctyp: ctyp -> pprint_args -> unit |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
37 |
val pprint_theory: theory -> pprint_args -> unit |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
38 |
val pprint_thm: thm -> pprint_args -> unit |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
39 |
val pretty_thm: thm -> Sign.Syntax.Pretty.T |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
40 |
val print_cterm: cterm -> unit |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
41 |
val print_ctyp: ctyp -> unit |
0 | 42 |
val print_goals: int -> thm -> unit |
67 | 43 |
val print_goals_ref: (int -> thm -> unit) ref |
385 | 44 |
val print_sign: theory -> unit |
45 |
val print_axioms: theory -> unit |
|
0 | 46 |
val print_theory: theory -> unit |
47 |
val print_thm: thm -> unit |
|
48 |
val prth: thm -> thm |
|
49 |
val prthq: thm Sequence.seq -> thm Sequence.seq |
|
50 |
val prths: thm list -> thm list |
|
51 |
val read_instantiate: (string*string)list -> thm -> thm |
|
52 |
val read_instantiate_sg: Sign.sg -> (string*string)list -> thm -> thm |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
53 |
val read_insts: |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
54 |
Sign.sg -> (indexname -> typ option) * (indexname -> sort option) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
55 |
-> (indexname -> typ option) * (indexname -> sort option) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
56 |
-> (string*string)list |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
57 |
-> (indexname*ctyp)list * (cterm*cterm)list |
0 | 58 |
val reflexive_thm: thm |
59 |
val revcut_rl: thm |
|
214
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
60 |
val rewrite_goal_rule: bool*bool -> (meta_simpset -> thm -> thm option) |
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
61 |
-> meta_simpset -> int -> thm -> thm |
0 | 62 |
val rewrite_goals_rule: thm list -> thm -> thm |
63 |
val rewrite_rule: thm list -> thm -> thm |
|
64 |
val RS: thm * thm -> thm |
|
65 |
val RSN: thm * (int * thm) -> thm |
|
66 |
val RL: thm list * thm list -> thm list |
|
67 |
val RLN: thm list * (int * thm list) -> thm list |
|
68 |
val show_hyps: bool ref |
|
69 |
val size_of_thm: thm -> int |
|
70 |
val standard: thm -> thm |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
71 |
val string_of_cterm: cterm -> string |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
72 |
val string_of_ctyp: ctyp -> string |
0 | 73 |
val string_of_thm: thm -> string |
74 |
val symmetric_thm: thm |
|
75 |
val transitive_thm: thm |
|
76 |
val triv_forall_equality: thm |
|
77 |
val types_sorts: thm -> (indexname-> typ option) * (indexname-> sort option) |
|
78 |
val zero_var_indexes: thm -> thm |
|
79 |
end |
|
80 |
end; |
|
81 |
||
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
82 |
functor DruleFun (structure Logic: LOGIC and Thm: THM): DRULE = |
0 | 83 |
struct |
84 |
structure Thm = Thm; |
|
85 |
structure Sign = Thm.Sign; |
|
86 |
structure Type = Sign.Type; |
|
87 |
structure Pretty = Sign.Syntax.Pretty |
|
88 |
local open Thm |
|
89 |
in |
|
90 |
||
91 |
(**** More derived rules and operations on theorems ****) |
|
92 |
||
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
93 |
(** reading of instantiations **) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
94 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
95 |
fun indexname cs = case Syntax.scan_varname cs of (v,[]) => v |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
96 |
| _ => error("Lexical error in variable name " ^ quote (implode cs)); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
97 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
98 |
fun absent ixn = |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
99 |
error("No such variable in term: " ^ Syntax.string_of_vname ixn); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
100 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
101 |
fun inst_failure ixn = |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
102 |
error("Instantiation of " ^ Syntax.string_of_vname ixn ^ " fails"); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
103 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
104 |
fun read_insts sign (rtypes,rsorts) (types,sorts) insts = |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
105 |
let val {tsig,...} = Sign.rep_sg sign |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
106 |
fun split([],tvs,vs) = (tvs,vs) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
107 |
| split((sv,st)::l,tvs,vs) = (case explode sv of |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
108 |
"'"::cs => split(l,(indexname cs,st)::tvs,vs) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
109 |
| cs => split(l,tvs,(indexname cs,st)::vs)); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
110 |
val (tvs,vs) = split(insts,[],[]); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
111 |
fun readT((a,i),st) = |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
112 |
let val ixn = ("'" ^ a,i); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
113 |
val S = case rsorts ixn of Some S => S | None => absent ixn; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
114 |
val T = Sign.read_typ (sign,sorts) st; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
115 |
in if Type.typ_instance(tsig,T,TVar(ixn,S)) then (ixn,T) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
116 |
else inst_failure ixn |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
117 |
end |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
118 |
val tye = map readT tvs; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
119 |
fun add_cterm ((cts,tye), (ixn,st)) = |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
120 |
let val T = case rtypes ixn of |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
121 |
Some T => typ_subst_TVars tye T |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
122 |
| None => absent ixn; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
123 |
val (ct,tye2) = read_def_cterm (sign,types,sorts) (st,T); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
124 |
val cv = cterm_of sign (Var(ixn,typ_subst_TVars tye2 T)) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
125 |
in ((cv,ct)::cts,tye2 @ tye) end |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
126 |
val (cterms,tye') = foldl add_cterm (([],tye), vs); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
127 |
in (map (fn (ixn,T) => (ixn,ctyp_of sign T)) tye', cterms) end; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
128 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
129 |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
130 |
|
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
131 |
(*** Printing of theories, theorems, etc. ***) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
132 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
133 |
(*If false, hypotheses are printed as dots*) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
134 |
val show_hyps = ref true; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
135 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
136 |
fun pretty_thm th = |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
137 |
let val {sign, hyps, prop,...} = rep_thm th |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
138 |
val hsymbs = if null hyps then [] |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
139 |
else if !show_hyps then |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
140 |
[Pretty.brk 2, |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
141 |
Pretty.lst("[","]") (map (Sign.pretty_term sign) hyps)] |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
142 |
else Pretty.str" [" :: map (fn _ => Pretty.str".") hyps @ |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
143 |
[Pretty.str"]"]; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
144 |
in Pretty.blk(0, Sign.pretty_term sign prop :: hsymbs) end; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
145 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
146 |
val string_of_thm = Pretty.string_of o pretty_thm; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
147 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
148 |
val pprint_thm = Pretty.pprint o Pretty.quote o pretty_thm; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
149 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
150 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
151 |
(** Top-level commands for printing theorems **) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
152 |
val print_thm = writeln o string_of_thm; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
153 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
154 |
fun prth th = (print_thm th; th); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
155 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
156 |
(*Print and return a sequence of theorems, separated by blank lines. *) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
157 |
fun prthq thseq = |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
158 |
(Sequence.prints (fn _ => print_thm) 100000 thseq; thseq); |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
159 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
160 |
(*Print and return a list of theorems, separated by blank lines. *) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
161 |
fun prths ths = (print_list_ln print_thm ths; ths); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
162 |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
163 |
|
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
164 |
(* other printing commands *) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
165 |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
166 |
fun pprint_ctyp cT = |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
167 |
let val {sign, T} = rep_ctyp cT in Sign.pprint_typ sign T end; |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
168 |
|
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
169 |
fun string_of_ctyp cT = |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
170 |
let val {sign, T} = rep_ctyp cT in Sign.string_of_typ sign T end; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
171 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
172 |
val print_ctyp = writeln o string_of_ctyp; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
173 |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
174 |
fun pprint_cterm ct = |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
175 |
let val {sign, t, ...} = rep_cterm ct in Sign.pprint_term sign t end; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
176 |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
177 |
fun string_of_cterm ct = |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
178 |
let val {sign, t, ...} = rep_cterm ct in Sign.string_of_term sign t end; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
179 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
180 |
val print_cterm = writeln o string_of_cterm; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
181 |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
182 |
|
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
183 |
(* print theory *) |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
184 |
|
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
185 |
val pprint_theory = Sign.pprint_sg o sign_of; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
186 |
|
385 | 187 |
val print_sign = Sign.print_sg o sign_of; |
188 |
||
189 |
fun print_axioms thy = |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
190 |
let |
385 | 191 |
val {sign, ext_axtab, ...} = rep_theory thy; |
192 |
val axioms = Symtab.dest ext_axtab; |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
193 |
|
385 | 194 |
fun prt_axm (a, t) = Pretty.block [Pretty.str (a ^ ":"), Pretty.brk 1, |
195 |
Pretty.quote (Sign.pretty_term sign t)]; |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
196 |
in |
385 | 197 |
Pretty.writeln (Pretty.big_list "additional axioms:" (map prt_axm axioms)) |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
198 |
end; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
199 |
|
385 | 200 |
fun print_theory thy = (print_sign thy; print_axioms thy); |
201 |
||
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
202 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
203 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
204 |
(** Print thm A1,...,An/B in "goal style" -- premises as numbered subgoals **) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
205 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
206 |
fun prettyprints es = writeln(Pretty.string_of(Pretty.blk(0,es))); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
207 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
208 |
fun print_goals maxgoals th : unit = |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
209 |
let val {sign, hyps, prop,...} = rep_thm th; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
210 |
fun printgoals (_, []) = () |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
211 |
| printgoals (n, A::As) = |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
212 |
let val prettyn = Pretty.str(" " ^ string_of_int n ^ ". "); |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
213 |
val prettyA = Sign.pretty_term sign A |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
214 |
in prettyprints[prettyn,prettyA]; |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
215 |
printgoals (n+1,As) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
216 |
end; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
217 |
fun prettypair(t,u) = |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
218 |
Pretty.blk(0, [Sign.pretty_term sign t, Pretty.str" =?=", Pretty.brk 1, |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
219 |
Sign.pretty_term sign u]); |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
220 |
fun printff [] = () |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
221 |
| printff tpairs = |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
222 |
writeln("\nFlex-flex pairs:\n" ^ |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
223 |
Pretty.string_of(Pretty.lst("","") (map prettypair tpairs))) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
224 |
val (tpairs,As,B) = Logic.strip_horn(prop); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
225 |
val ngoals = length As |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
226 |
in |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
227 |
writeln (Sign.string_of_term sign B); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
228 |
if ngoals=0 then writeln"No subgoals!" |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
229 |
else if ngoals>maxgoals |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
230 |
then (printgoals (1, take(maxgoals,As)); |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
231 |
writeln("A total of " ^ string_of_int ngoals ^ " subgoals...")) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
232 |
else printgoals (1, As); |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
233 |
printff tpairs |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
234 |
end; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
235 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
236 |
(*"hook" for user interfaces: allows print_goals to be replaced*) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
237 |
val print_goals_ref = ref print_goals; |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
238 |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
239 |
(*** Find the type (sort) associated with a (T)Var or (T)Free in a term |
0 | 240 |
Used for establishing default types (of variables) and sorts (of |
241 |
type variables) when reading another term. |
|
242 |
Index -1 indicates that a (T)Free rather than a (T)Var is wanted. |
|
243 |
***) |
|
244 |
||
245 |
fun types_sorts thm = |
|
246 |
let val {prop,hyps,...} = rep_thm thm; |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
247 |
val big = list_comb(prop,hyps); (* bogus term! *) |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
248 |
val vars = map dest_Var (term_vars big); |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
249 |
val frees = map dest_Free (term_frees big); |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
250 |
val tvars = term_tvars big; |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
251 |
val tfrees = term_tfrees big; |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
252 |
fun typ(a,i) = if i<0 then assoc(frees,a) else assoc(vars,(a,i)); |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
253 |
fun sort(a,i) = if i<0 then assoc(tfrees,a) else assoc(tvars,(a,i)); |
0 | 254 |
in (typ,sort) end; |
255 |
||
256 |
(** Standardization of rules **) |
|
257 |
||
258 |
(*Generalization over a list of variables, IGNORING bad ones*) |
|
259 |
fun forall_intr_list [] th = th |
|
260 |
| forall_intr_list (y::ys) th = |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
261 |
let val gth = forall_intr_list ys th |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
262 |
in forall_intr y gth handle THM _ => gth end; |
0 | 263 |
|
264 |
(*Generalization over all suitable Free variables*) |
|
265 |
fun forall_intr_frees th = |
|
266 |
let val {prop,sign,...} = rep_thm th |
|
267 |
in forall_intr_list |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
268 |
(map (cterm_of sign) (sort atless (term_frees prop))) |
0 | 269 |
th |
270 |
end; |
|
271 |
||
272 |
(*Replace outermost quantified variable by Var of given index. |
|
273 |
Could clash with Vars already present.*) |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
274 |
fun forall_elim_var i th = |
0 | 275 |
let val {prop,sign,...} = rep_thm th |
276 |
in case prop of |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
277 |
Const("all",_) $ Abs(a,T,_) => |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
278 |
forall_elim (cterm_of sign (Var((a,i), T))) th |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
279 |
| _ => raise THM("forall_elim_var", i, [th]) |
0 | 280 |
end; |
281 |
||
282 |
(*Repeat forall_elim_var until all outer quantifiers are removed*) |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
283 |
fun forall_elim_vars i th = |
0 | 284 |
forall_elim_vars i (forall_elim_var i th) |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
285 |
handle THM _ => th; |
0 | 286 |
|
287 |
(*Specialization over a list of cterms*) |
|
288 |
fun forall_elim_list cts th = foldr (uncurry forall_elim) (rev cts, th); |
|
289 |
||
290 |
(* maps [A1,...,An], B to [| A1;...;An |] ==> B *) |
|
291 |
fun implies_intr_list cAs th = foldr (uncurry implies_intr) (cAs,th); |
|
292 |
||
293 |
(* maps [| A1;...;An |] ==> B and [A1,...,An] to B *) |
|
294 |
fun implies_elim_list impth ths = foldl (uncurry implies_elim) (impth,ths); |
|
295 |
||
296 |
(*Reset Var indexes to zero, renaming to preserve distinctness*) |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
297 |
fun zero_var_indexes th = |
0 | 298 |
let val {prop,sign,...} = rep_thm th; |
299 |
val vars = term_vars prop |
|
300 |
val bs = foldl add_new_id ([], map (fn Var((a,_),_)=>a) vars) |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
301 |
val inrs = add_term_tvars(prop,[]); |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
302 |
val nms' = rev(foldl add_new_id ([], map (#1 o #1) inrs)); |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
303 |
val tye = map (fn ((v,rs),a) => (v, TVar((a,0),rs))) (inrs ~~ nms') |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
304 |
val ctye = map (fn (v,T) => (v,ctyp_of sign T)) tye; |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
305 |
fun varpairs([],[]) = [] |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
306 |
| varpairs((var as Var(v,T)) :: vars, b::bs) = |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
307 |
let val T' = typ_subst_TVars tye T |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
308 |
in (cterm_of sign (Var(v,T')), |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
309 |
cterm_of sign (Var((b,0),T'))) :: varpairs(vars,bs) |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
310 |
end |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
311 |
| varpairs _ = raise TERM("varpairs", []); |
0 | 312 |
in instantiate (ctye, varpairs(vars,rev bs)) th end; |
313 |
||
314 |
||
315 |
(*Standard form of object-rule: no hypotheses, Frees, or outer quantifiers; |
|
316 |
all generality expressed by Vars having index 0.*) |
|
317 |
fun standard th = |
|
318 |
let val {maxidx,...} = rep_thm th |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
319 |
in varifyT (zero_var_indexes (forall_elim_vars(maxidx+1) |
0 | 320 |
(forall_intr_frees(implies_intr_hyps th)))) |
321 |
end; |
|
322 |
||
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
323 |
(*Assume a new formula, read following the same conventions as axioms. |
0 | 324 |
Generalizes over Free variables, |
325 |
creates the assumption, and then strips quantifiers. |
|
326 |
Example is [| ALL x:?A. ?P(x) |] ==> [| ?P(?a) |] |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
327 |
[ !(A,P,a)[| ALL x:A. P(x) |] ==> [| P(a) |] ] *) |
0 | 328 |
fun assume_ax thy sP = |
329 |
let val sign = sign_of thy |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
330 |
val prop = Logic.close_form (term_of (read_cterm sign |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
331 |
(sP, propT))) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
332 |
in forall_elim_vars 0 (assume (cterm_of sign prop)) end; |
0 | 333 |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
334 |
(*Resolution: exactly one resolvent must be produced.*) |
0 | 335 |
fun tha RSN (i,thb) = |
336 |
case Sequence.chop (2, biresolution false [(false,tha)] i thb) of |
|
337 |
([th],_) => th |
|
338 |
| ([],_) => raise THM("RSN: no unifiers", i, [tha,thb]) |
|
339 |
| _ => raise THM("RSN: multiple unifiers", i, [tha,thb]); |
|
340 |
||
341 |
(*resolution: P==>Q, Q==>R gives P==>R. *) |
|
342 |
fun tha RS thb = tha RSN (1,thb); |
|
343 |
||
344 |
(*For joining lists of rules*) |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
345 |
fun thas RLN (i,thbs) = |
0 | 346 |
let val resolve = biresolution false (map (pair false) thas) i |
347 |
fun resb thb = Sequence.list_of_s (resolve thb) handle THM _ => [] |
|
348 |
in flat (map resb thbs) end; |
|
349 |
||
350 |
fun thas RL thbs = thas RLN (1,thbs); |
|
351 |
||
11
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
352 |
(*Resolve a list of rules against bottom_rl from right to left; |
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
353 |
makes proof trees*) |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
354 |
fun rls MRS bottom_rl = |
11
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
355 |
let fun rs_aux i [] = bottom_rl |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
356 |
| rs_aux i (rl::rls) = rl RSN (i, rs_aux (i+1) rls) |
11
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
357 |
in rs_aux 1 rls end; |
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
358 |
|
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
359 |
(*As above, but for rule lists*) |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
360 |
fun rlss MRL bottom_rls = |
11
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
361 |
let fun rs_aux i [] = bottom_rls |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
362 |
| rs_aux i (rls::rlss) = rls RLN (i, rs_aux (i+1) rlss) |
11
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
363 |
in rs_aux 1 rlss end; |
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML. These support forward proof, resolving a
lcp
parents:
0
diff
changeset
|
364 |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
365 |
(*compose Q and [...,Qi,Q(i+1),...]==>R to [...,Q(i+1),...]==>R |
0 | 366 |
with no lifting or renaming! Q may contain ==> or meta-quants |
367 |
ALWAYS deletes premise i *) |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
368 |
fun compose(tha,i,thb) = |
0 | 369 |
Sequence.list_of_s (bicompose false (false,tha,0) i thb); |
370 |
||
371 |
(*compose Q and [Q1,Q2,...,Qk]==>R to [Q2,...,Qk]==>R getting unique result*) |
|
372 |
fun tha COMP thb = |
|
373 |
case compose(tha,1,thb) of |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
374 |
[th] => th |
0 | 375 |
| _ => raise THM("COMP", 1, [tha,thb]); |
376 |
||
377 |
(*Instantiate theorem th, reading instantiations under signature sg*) |
|
378 |
fun read_instantiate_sg sg sinsts th = |
|
379 |
let val ts = types_sorts th; |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
380 |
in instantiate (read_insts sg ts ts sinsts) th end; |
0 | 381 |
|
382 |
(*Instantiate theorem th, reading instantiations under theory of th*) |
|
383 |
fun read_instantiate sinsts th = |
|
384 |
read_instantiate_sg (#sign (rep_thm th)) sinsts th; |
|
385 |
||
386 |
||
387 |
(*Left-to-right replacements: tpairs = [...,(vi,ti),...]. |
|
388 |
Instantiates distinct Vars by terms, inferring type instantiations. *) |
|
389 |
local |
|
390 |
fun add_types ((ct,cu), (sign,tye)) = |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
391 |
let val {sign=signt, t=t, T= T, ...} = rep_cterm ct |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
392 |
and {sign=signu, t=u, T= U, ...} = rep_cterm cu |
0 | 393 |
val sign' = Sign.merge(sign, Sign.merge(signt, signu)) |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
394 |
val tye' = Type.unify (#tsig(Sign.rep_sg sign')) ((T,U), tye) |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
395 |
handle Type.TUNIFY => raise TYPE("add_types", [T,U], [t,u]) |
0 | 396 |
in (sign', tye') end; |
397 |
in |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
398 |
fun cterm_instantiate ctpairs0 th = |
0 | 399 |
let val (sign,tye) = foldr add_types (ctpairs0, (#sign(rep_thm th),[])) |
400 |
val tsig = #tsig(Sign.rep_sg sign); |
|
401 |
fun instT(ct,cu) = let val inst = subst_TVars tye |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
402 |
in (cterm_fun inst ct, cterm_fun inst cu) end |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
403 |
fun ctyp2 (ix,T) = (ix, ctyp_of sign T) |
0 | 404 |
in instantiate (map ctyp2 tye, map instT ctpairs0) th end |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
405 |
handle TERM _ => |
0 | 406 |
raise THM("cterm_instantiate: incompatible signatures",0,[th]) |
407 |
| TYPE _ => raise THM("cterm_instantiate: types", 0, [th]) |
|
408 |
end; |
|
409 |
||
410 |
||
411 |
(** theorem equality test is exported and used by BEST_FIRST **) |
|
412 |
||
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
413 |
(*equality of theorems uses equality of signatures and |
0 | 414 |
the a-convertible test for terms*) |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
415 |
fun eq_thm (th1,th2) = |
0 | 416 |
let val {sign=sg1, hyps=hyps1, prop=prop1, ...} = rep_thm th1 |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
417 |
and {sign=sg2, hyps=hyps2, prop=prop2, ...} = rep_thm th2 |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
418 |
in Sign.eq_sg (sg1,sg2) andalso |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
419 |
aconvs(hyps1,hyps2) andalso |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
420 |
prop1 aconv prop2 |
0 | 421 |
end; |
422 |
||
423 |
(*Do the two theorems have the same signature?*) |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
424 |
fun eq_thm_sg (th1,th2) = Sign.eq_sg(#sign(rep_thm th1), #sign(rep_thm th2)); |
0 | 425 |
|
426 |
(*Useful "distance" function for BEST_FIRST*) |
|
427 |
val size_of_thm = size_of_term o #prop o rep_thm; |
|
428 |
||
429 |
||
430 |
(*** Meta-Rewriting Rules ***) |
|
431 |
||
432 |
||
433 |
val reflexive_thm = |
|
385 | 434 |
let val cx = cterm_of Sign.pure (Var(("x",0),TVar(("'a",0),logicS))) |
0 | 435 |
in Thm.reflexive cx end; |
436 |
||
437 |
val symmetric_thm = |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
438 |
let val xy = read_cterm Sign.pure ("x::'a::logic == y",propT) |
0 | 439 |
in standard(Thm.implies_intr_hyps(Thm.symmetric(Thm.assume xy))) end; |
440 |
||
441 |
val transitive_thm = |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
442 |
let val xy = read_cterm Sign.pure ("x::'a::logic == y",propT) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
443 |
val yz = read_cterm Sign.pure ("y::'a::logic == z",propT) |
0 | 444 |
val xythm = Thm.assume xy and yzthm = Thm.assume yz |
445 |
in standard(Thm.implies_intr yz (Thm.transitive xythm yzthm)) end; |
|
446 |
||
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
447 |
(** Below, a "conversion" has type cterm -> thm **) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
448 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
449 |
val refl_cimplies = reflexive (cterm_of Sign.pure implies); |
0 | 450 |
|
451 |
(*In [A1,...,An]==>B, rewrite the selected A's only -- for rewrite_goals_tac*) |
|
214
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
452 |
(*Do not rewrite flex-flex pairs*) |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
453 |
fun goals_conv pred cv = |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
454 |
let fun gconv i ct = |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
455 |
let val (A,B) = Thm.dest_cimplies ct |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
456 |
val (thA,j) = case term_of A of |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
457 |
Const("=?=",_)$_$_ => (reflexive A, i) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
458 |
| _ => (if pred i then cv A else reflexive A, i+1) |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
459 |
in combination (combination refl_cimplies thA) (gconv j B) end |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
460 |
handle TERM _ => reflexive ct |
0 | 461 |
in gconv 1 end; |
462 |
||
463 |
(*Use a conversion to transform a theorem*) |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
464 |
fun fconv_rule cv th = equal_elim (cv (cprop_of th)) th; |
0 | 465 |
|
466 |
(*rewriting conversion*) |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
467 |
fun rew_conv mode prover mss = rewrite_cterm mode mss prover; |
0 | 468 |
|
469 |
(*Rewrite a theorem*) |
|
214
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
470 |
fun rewrite_rule thms = |
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
471 |
fconv_rule (rew_conv (true,false) (K(K None)) (Thm.mss_of thms)); |
0 | 472 |
|
473 |
(*Rewrite the subgoals of a proof state (represented by a theorem) *) |
|
474 |
fun rewrite_goals_rule thms = |
|
214
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
475 |
fconv_rule (goals_conv (K true) (rew_conv (true,false) (K(K None)) |
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
476 |
(Thm.mss_of thms))); |
0 | 477 |
|
478 |
(*Rewrite the subgoal of a proof state (represented by a theorem) *) |
|
214
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
479 |
fun rewrite_goal_rule mode prover mss i thm = |
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
480 |
if 0 < i andalso i <= nprems_of thm |
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
481 |
then fconv_rule (goals_conv (fn j => j=i) (rew_conv mode prover mss)) thm |
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
211
diff
changeset
|
482 |
else raise THM("rewrite_goal_rule",i,[thm]); |
0 | 483 |
|
484 |
||
485 |
(** Derived rules mainly for METAHYPS **) |
|
486 |
||
487 |
(*Given the term "a", takes (%x.t)==(%x.u) to t[a/x]==u[a/x]*) |
|
488 |
fun equal_abs_elim ca eqth = |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
489 |
let val {sign=signa, t=a, ...} = rep_cterm ca |
0 | 490 |
and combth = combination eqth (reflexive ca) |
491 |
val {sign,prop,...} = rep_thm eqth |
|
492 |
val (abst,absu) = Logic.dest_equals prop |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
493 |
val cterm = cterm_of (Sign.merge (sign,signa)) |
0 | 494 |
in transitive (symmetric (beta_conversion (cterm (abst$a)))) |
495 |
(transitive combth (beta_conversion (cterm (absu$a)))) |
|
496 |
end |
|
497 |
handle THM _ => raise THM("equal_abs_elim", 0, [eqth]); |
|
498 |
||
499 |
(*Calling equal_abs_elim with multiple terms*) |
|
500 |
fun equal_abs_elim_list cts th = foldr (uncurry equal_abs_elim) (rev cts, th); |
|
501 |
||
502 |
local |
|
503 |
open Logic |
|
504 |
val alpha = TVar(("'a",0), []) (* type ?'a::{} *) |
|
505 |
fun err th = raise THM("flexpair_inst: ", 0, [th]) |
|
506 |
fun flexpair_inst def th = |
|
507 |
let val {prop = Const _ $ t $ u, sign,...} = rep_thm th |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
508 |
val cterm = cterm_of sign |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
509 |
fun cvar a = cterm(Var((a,0),alpha)) |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
510 |
val def' = cterm_instantiate [(cvar"t", cterm t), (cvar"u", cterm u)] |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
511 |
def |
0 | 512 |
in equal_elim def' th |
513 |
end |
|
514 |
handle THM _ => err th | bind => err th |
|
515 |
in |
|
516 |
val flexpair_intr = flexpair_inst (symmetric flexpair_def) |
|
517 |
and flexpair_elim = flexpair_inst flexpair_def |
|
518 |
end; |
|
519 |
||
520 |
(*Version for flexflex pairs -- this supports lifting.*) |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
521 |
fun flexpair_abs_elim_list cts = |
0 | 522 |
flexpair_intr o equal_abs_elim_list cts o flexpair_elim; |
523 |
||
524 |
||
525 |
(*** Some useful meta-theorems ***) |
|
526 |
||
527 |
(*The rule V/V, obtains assumption solving for eresolve_tac*) |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
528 |
val asm_rl = trivial(read_cterm Sign.pure ("PROP ?psi",propT)); |
0 | 529 |
|
530 |
(*Meta-level cut rule: [| V==>W; V |] ==> W *) |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
531 |
val cut_rl = trivial(read_cterm Sign.pure |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
532 |
("PROP ?psi ==> PROP ?theta", propT)); |
0 | 533 |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
534 |
(*Generalized elim rule for one conclusion; cut_rl with reversed premises: |
0 | 535 |
[| PROP V; PROP V ==> PROP W |] ==> PROP W *) |
536 |
val revcut_rl = |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
537 |
let val V = read_cterm Sign.pure ("PROP V", propT) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
538 |
and VW = read_cterm Sign.pure ("PROP V ==> PROP W", propT); |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
539 |
in standard (implies_intr V |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
540 |
(implies_intr VW |
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
541 |
(implies_elim (assume VW) (assume V)))) |
0 | 542 |
end; |
543 |
||
544 |
(* (!!x. PROP ?V) == PROP ?V Allows removal of redundant parameters*) |
|
545 |
val triv_forall_equality = |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
546 |
let val V = read_cterm Sign.pure ("PROP V", propT) |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
214
diff
changeset
|
547 |
and QV = read_cterm Sign.pure ("!!x::'a. PROP V", propT) |
385 | 548 |
and x = read_cterm Sign.pure ("x", TFree("'a",logicS)); |
0 | 549 |
in standard (equal_intr (implies_intr QV (forall_elim x (assume QV))) |
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
550 |
(implies_intr V (forall_intr x (assume V)))) |
0 | 551 |
end; |
552 |
||
553 |
end |
|
554 |
end; |
|
252
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
wenzelm
parents:
229
diff
changeset
|
555 |