author | nipkow |
Thu, 30 Mar 2000 19:44:11 +0200 | |
changeset 8622 | 870a58dd0ddd |
parent 8492 | 6343c725ba7e |
child 8631 | a10ae360b63c |
permissions | -rw-r--r-- |
3301
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
1 |
(* Title: TFL/tfl |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
2 |
ID: $Id$ |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
3 |
Author: Konrad Slind, Cambridge University Computer Laboratory |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
4 |
Copyright 1997 University of Cambridge |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
5 |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
6 |
Main module |
3301
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
7 |
*) |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
8 |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
9 |
structure Prim : TFL_sig = |
2112 | 10 |
struct |
11 |
||
6498 | 12 |
val trace = ref false; |
13 |
||
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
14 |
open BasisLibrary; (*restore original structures*) |
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
15 |
|
2112 | 16 |
(* Abbreviations *) |
17 |
structure R = Rules; |
|
18 |
structure S = USyntax; |
|
19 |
structure U = S.Utils; |
|
20 |
||
7262 | 21 |
fun TFL_ERR{func,mesg} = U.ERR{module = "Tfl", func = func, mesg = mesg}; |
22 |
||
2112 | 23 |
val concl = #2 o R.dest_thm; |
24 |
val hyp = #1 o R.dest_thm; |
|
25 |
||
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
26 |
val list_mk_type = U.end_itlist (curry(op -->)); |
2112 | 27 |
|
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
28 |
fun enumerate xs = ListPair.zip(xs, 0 upto (length xs - 1)); |
2112 | 29 |
|
7262 | 30 |
fun front_last [] = raise TFL_ERR {func="front_last", mesg="empty list"} |
31 |
| front_last [x] = ([],x) |
|
32 |
| front_last (h::t) = |
|
33 |
let val (pref,x) = front_last t |
|
34 |
in |
|
35 |
(h::pref,x) |
|
36 |
end; |
|
2112 | 37 |
|
38 |
||
39 |
||
40 |
(*--------------------------------------------------------------------------- |
|
6498 | 41 |
handling of user-supplied congruence rules: lcp*) |
42 |
||
43 |
(*Convert conclusion from = to ==*) |
|
44 |
val eq_reflect_list = map (fn th => (th RS eq_reflection) handle _ => th); |
|
45 |
||
46 |
(*default congruence rules include those for LET and IF*) |
|
47 |
val default_congs = eq_reflect_list [Thms.LET_CONG, if_cong]; |
|
48 |
||
49 |
fun congs ths = default_congs @ eq_reflect_list ths; |
|
50 |
||
51 |
val default_simps = |
|
52 |
[less_Suc_eq RS iffD2, lex_prod_def, measure_def, inv_image_def]; |
|
53 |
||
54 |
||
55 |
||
56 |
(*--------------------------------------------------------------------------- |
|
2112 | 57 |
* The next function is common to pattern-match translation and |
58 |
* proof of completeness of cases for the induction theorem. |
|
59 |
* |
|
3301
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
60 |
* The curried function "gvvariant" returns a function to generate distinct |
3405 | 61 |
* variables that are guaranteed not to be in names. The names of |
3301
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
62 |
* the variables go u, v, ..., z, aa, ..., az, ... The returned |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
63 |
* function contains embedded refs! |
2112 | 64 |
*---------------------------------------------------------------------------*) |
3405 | 65 |
fun gvvariant names = |
66 |
let val slist = ref names |
|
3301
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
67 |
val vname = ref "u" |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
68 |
fun new() = |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
69 |
if !vname mem_string (!slist) |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
70 |
then (vname := bump_string (!vname); new()) |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
71 |
else (slist := !vname :: !slist; !vname) |
2112 | 72 |
in |
3301
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
73 |
fn ty => Free(new(), ty) |
cdcc4d5602b6
Now the recdef induction rule variables are named u, v, ...
paulson
parents:
3245
diff
changeset
|
74 |
end; |
2112 | 75 |
|
76 |
||
77 |
(*--------------------------------------------------------------------------- |
|
78 |
* Used in induction theorem production. This is the simple case of |
|
79 |
* partitioning up pattern rows by the leading constructor. |
|
80 |
*---------------------------------------------------------------------------*) |
|
81 |
fun ipartition gv (constructors,rows) = |
|
82 |
let fun pfail s = raise TFL_ERR{func = "partition.part", mesg = s} |
|
83 |
fun part {constrs = [], rows = [], A} = rev A |
|
84 |
| part {constrs = [], rows = _::_, A} = pfail"extra cases in defn" |
|
85 |
| part {constrs = _::_, rows = [], A} = pfail"cases missing in defn" |
|
86 |
| part {constrs = c::crst, rows, A} = |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
87 |
let val (Name,Ty) = dest_Const c |
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
88 |
val L = binder_types Ty |
2112 | 89 |
val (in_group, not_in_group) = |
90 |
U.itlist (fn (row as (p::rst, rhs)) => |
|
91 |
fn (in_group,not_in_group) => |
|
92 |
let val (pc,args) = S.strip_comb p |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
93 |
in if (#1(dest_Const pc) = Name) |
2112 | 94 |
then ((args@rst, rhs)::in_group, not_in_group) |
95 |
else (in_group, row::not_in_group) |
|
96 |
end) rows ([],[]) |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
97 |
val col_types = U.take type_of (length L, #1(hd in_group)) |
2112 | 98 |
in |
99 |
part{constrs = crst, rows = not_in_group, |
|
100 |
A = {constructor = c, |
|
101 |
new_formals = map gv col_types, |
|
102 |
group = in_group}::A} |
|
103 |
end |
|
104 |
in part{constrs = constructors, rows = rows, A = []} |
|
105 |
end; |
|
106 |
||
107 |
||
108 |
||
109 |
(*--------------------------------------------------------------------------- |
|
110 |
* This datatype carries some information about the origin of a |
|
111 |
* clause in a function definition. |
|
112 |
*---------------------------------------------------------------------------*) |
|
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
113 |
(* |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
114 |
datatype pattern = GIVEN of term * int |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
115 |
| OMITTED of term * int |
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
116 |
*) |
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
117 |
(* True means the pattern was given by the user |
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
118 |
(or is an instantiation of a user supplied pattern) |
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
119 |
*) |
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
120 |
type pattern = term * (int * bool) |
2112 | 121 |
|
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
122 |
fun pattern_map f (tm,x) = (f tm, x); |
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
123 |
|
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
124 |
fun pattern_subst theta = pattern_map (subst_free theta); |
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
125 |
(* |
2112 | 126 |
fun dest_pattern (GIVEN (tm,i)) = ((GIVEN,i),tm) |
127 |
| dest_pattern (OMITTED (tm,i)) = ((OMITTED,i),tm); |
|
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
128 |
*) |
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
129 |
val pat_of = fst; |
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
130 |
val row_of_pat = fst o snd; |
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
131 |
val given = snd o snd; |
2112 | 132 |
|
133 |
(*--------------------------------------------------------------------------- |
|
134 |
* Produce an instance of a constructor, plus genvars for its arguments. |
|
135 |
*---------------------------------------------------------------------------*) |
|
136 |
fun fresh_constr ty_match colty gv c = |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
137 |
let val (_,Ty) = dest_Const c |
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
138 |
val L = binder_types Ty |
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
139 |
and ty = body_type Ty |
2112 | 140 |
val ty_theta = ty_match ty colty |
141 |
val c' = S.inst ty_theta c |
|
142 |
val gvars = map (S.inst ty_theta o gv) L |
|
143 |
in (c', gvars) |
|
144 |
end; |
|
145 |
||
146 |
||
147 |
(*--------------------------------------------------------------------------- |
|
148 |
* Goes through a list of rows and picks out the ones beginning with a |
|
149 |
* pattern with constructor = Name. |
|
150 |
*---------------------------------------------------------------------------*) |
|
151 |
fun mk_group Name rows = |
|
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
152 |
U.itlist (fn (row as ((prfx, p::rst), rhs)) => |
2112 | 153 |
fn (in_group,not_in_group) => |
154 |
let val (pc,args) = S.strip_comb p |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
155 |
in if ((#1(dest_Const pc) = Name) handle _ => false) |
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
156 |
then (((prfx,args@rst), rhs)::in_group, not_in_group) |
2112 | 157 |
else (in_group, row::not_in_group) end) |
158 |
rows ([],[]); |
|
159 |
||
160 |
(*--------------------------------------------------------------------------- |
|
161 |
* Partition the rows. Not efficient: we should use hashing. |
|
162 |
*---------------------------------------------------------------------------*) |
|
163 |
fun partition _ _ (_,_,_,[]) = raise TFL_ERR{func="partition", mesg="no rows"} |
|
164 |
| partition gv ty_match |
|
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
165 |
(constructors, colty, res_ty, rows as (((prfx,_),_)::_)) = |
2112 | 166 |
let val fresh = fresh_constr ty_match colty gv |
167 |
fun part {constrs = [], rows, A} = rev A |
|
168 |
| part {constrs = c::crst, rows, A} = |
|
169 |
let val (c',gvars) = fresh c |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
170 |
val (Name,Ty) = dest_Const c' |
2112 | 171 |
val (in_group, not_in_group) = mk_group Name rows |
172 |
val in_group' = |
|
173 |
if (null in_group) (* Constructor not given *) |
|
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
174 |
then [((prfx, #2(fresh c)), (S.ARB res_ty, (~1,false)))] |
2112 | 175 |
else in_group |
176 |
in |
|
177 |
part{constrs = crst, |
|
178 |
rows = not_in_group, |
|
179 |
A = {constructor = c', |
|
180 |
new_formals = gvars, |
|
181 |
group = in_group'}::A} |
|
182 |
end |
|
183 |
in part{constrs=constructors, rows=rows, A=[]} |
|
184 |
end; |
|
185 |
||
186 |
(*--------------------------------------------------------------------------- |
|
187 |
* Misc. routines used in mk_case |
|
188 |
*---------------------------------------------------------------------------*) |
|
189 |
||
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
190 |
fun mk_pat (c,l) = |
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
191 |
let val L = length (binder_types (type_of c)) |
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
192 |
fun build (prfx,tag,plist) = |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
193 |
let val args = take (L,plist) |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
194 |
and plist' = drop(L,plist) |
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
195 |
in (prfx,tag,list_comb(c,args)::plist') end |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
196 |
in map build l end; |
2112 | 197 |
|
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
198 |
fun v_to_prfx (prfx, v::pats) = (v::prfx,pats) |
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
199 |
| v_to_prfx _ = raise TFL_ERR{func="mk_case", mesg="v_to_prfx"}; |
2112 | 200 |
|
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
201 |
fun v_to_pats (v::prfx,tag, pats) = (prfx, tag, v::pats) |
2112 | 202 |
| v_to_pats _ = raise TFL_ERR{func="mk_case", mesg="v_to_pats"}; |
203 |
||
204 |
||
205 |
(*---------------------------------------------------------------------------- |
|
206 |
* Translation of pattern terms into nested case expressions. |
|
207 |
* |
|
208 |
* This performs the translation and also builds the full set of patterns. |
|
209 |
* Thus it supports the construction of induction theorems even when an |
|
210 |
* incomplete set of patterns is given. |
|
211 |
*---------------------------------------------------------------------------*) |
|
212 |
||
3405 | 213 |
fun mk_case ty_info ty_match usednames range_ty = |
2112 | 214 |
let |
215 |
fun mk_case_fail s = raise TFL_ERR{func = "mk_case", mesg = s} |
|
3405 | 216 |
val fresh_var = gvvariant usednames |
2112 | 217 |
val divide = partition fresh_var ty_match |
218 |
fun expand constructors ty ((_,[]), _) = mk_case_fail"expand_var_row" |
|
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
219 |
| expand constructors ty (row as ((prfx, p::rst), rhs)) = |
3333
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
220 |
if (is_Free p) |
2112 | 221 |
then let val fresh = fresh_constr ty_match ty fresh_var |
222 |
fun expnd (c,gvs) = |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
223 |
let val capp = list_comb(c,gvs) |
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
224 |
in ((prfx, capp::rst), pattern_subst[(p,capp)] rhs) |
2112 | 225 |
end |
226 |
in map expnd (map fresh constructors) end |
|
227 |
else [row] |
|
228 |
fun mk{rows=[],...} = mk_case_fail"no rows" |
|
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
229 |
| mk{path=[], rows = ((prfx, []), (tm,tag))::_} = (* Done *) |
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
230 |
([(prfx,tag,[])], tm) |
2112 | 231 |
| mk{path=[], rows = _::_} = mk_case_fail"blunder" |
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
232 |
| mk{path as u::rstp, rows as ((prfx, []), rhs)::rst} = |
2112 | 233 |
mk{path = path, |
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
234 |
rows = ((prfx, [fresh_var(type_of u)]), rhs)::rst} |
2112 | 235 |
| mk{path = u::rstp, rows as ((_, p::_), _)::_} = |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
236 |
let val (pat_rectangle,rights) = ListPair.unzip rows |
2112 | 237 |
val col0 = map(hd o #2) pat_rectangle |
238 |
in |
|
3333
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
239 |
if (forall is_Free col0) |
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
240 |
then let val rights' = map (fn(v,e) => pattern_subst[(v,u)] e) |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
241 |
(ListPair.zip (col0, rights)) |
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
242 |
val pat_rectangle' = map v_to_prfx pat_rectangle |
2112 | 243 |
val (pref_patl,tm) = mk{path = rstp, |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
244 |
rows = ListPair.zip (pat_rectangle', |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
245 |
rights')} |
2112 | 246 |
in (map v_to_pats pref_patl, tm) |
247 |
end |
|
248 |
else |
|
3944 | 249 |
let val pty as Type (ty_name,_) = type_of p |
2112 | 250 |
in |
251 |
case (ty_info ty_name) |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
252 |
of None => mk_case_fail("Not a known datatype: "^ty_name) |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
253 |
| Some{case_const,constructors} => |
7697
cdaf7f18856d
renamed 'prefix' to 'prfx' (avoids clash with infix);
wenzelm
parents:
7286
diff
changeset
|
254 |
let |
4062 | 255 |
val case_const_name = #1(dest_Const case_const) |
256 |
val nrows = List.concat (map (expand constructors pty) rows) |
|
2112 | 257 |
val subproblems = divide(constructors, pty, range_ty, nrows) |
258 |
val groups = map #group subproblems |
|
259 |
and new_formals = map #new_formals subproblems |
|
260 |
and constructors' = map #constructor subproblems |
|
261 |
val news = map (fn (nf,rows) => {path = nf@rstp, rows=rows}) |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
262 |
(ListPair.zip (new_formals, groups)) |
2112 | 263 |
val rec_calls = map mk news |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
264 |
val (pat_rect,dtrees) = ListPair.unzip rec_calls |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
265 |
val case_functions = map S.list_mk_abs |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
266 |
(ListPair.zip (new_formals, dtrees)) |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
267 |
val types = map type_of (case_functions@[u]) @ [range_ty] |
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
268 |
val case_const' = Const(case_const_name, list_mk_type types) |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
269 |
val tree = list_comb(case_const', case_functions@[u]) |
4062 | 270 |
val pat_rect1 = List.concat |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
271 |
(ListPair.map mk_pat (constructors', pat_rect)) |
2112 | 272 |
in (pat_rect1,tree) |
273 |
end |
|
274 |
end end |
|
275 |
in mk |
|
276 |
end; |
|
277 |
||
278 |
||
279 |
(* Repeated variable occurrences in a pattern are not allowed. *) |
|
280 |
fun FV_multiset tm = |
|
281 |
case (S.dest_term tm) |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
282 |
of S.VAR{Name,Ty} => [Free(Name,Ty)] |
2112 | 283 |
| S.CONST _ => [] |
284 |
| S.COMB{Rator, Rand} => FV_multiset Rator @ FV_multiset Rand |
|
285 |
| S.LAMB _ => raise TFL_ERR{func = "FV_multiset", mesg = "lambda"}; |
|
286 |
||
287 |
fun no_repeat_vars thy pat = |
|
288 |
let fun check [] = true |
|
289 |
| check (v::rst) = |
|
3333
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
290 |
if mem_term (v,rst) then |
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
291 |
raise TFL_ERR{func = "no_repeat_vars", |
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
292 |
mesg = quote(#1(dest_Free v)) ^ |
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
293 |
" occurs repeatedly in the pattern " ^ |
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
294 |
quote (string_of_cterm (Thry.typecheck thy pat))} |
2112 | 295 |
else check rst |
296 |
in check (FV_multiset pat) |
|
297 |
end; |
|
298 |
||
7262 | 299 |
fun dest_atom (Free p) = p |
300 |
| dest_atom (Const p) = p |
|
301 |
| dest_atom _ = raise TFL_ERR {func="dest_atom", |
|
302 |
mesg="function name not an identifier"}; |
|
303 |
||
8492
6343c725ba7e
better error messages, especially for multiple types
paulson
parents:
8438
diff
changeset
|
304 |
fun same_name (p,q) = #1(dest_atom p) = #1(dest_atom q); |
7262 | 305 |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
306 |
local fun mk_functional_err s = raise TFL_ERR{func = "mk_functional", mesg=s} |
7262 | 307 |
fun single [_$_] = |
7052 | 308 |
mk_functional_err "recdef does not allow currying" |
7262 | 309 |
| single [f] = f |
8492
6343c725ba7e
better error messages, especially for multiple types
paulson
parents:
8438
diff
changeset
|
310 |
| single fs = |
6343c725ba7e
better error messages, especially for multiple types
paulson
parents:
8438
diff
changeset
|
311 |
(*multiple function names?*) |
6343c725ba7e
better error messages, especially for multiple types
paulson
parents:
8438
diff
changeset
|
312 |
if length (gen_distinct same_name fs) < length fs |
6343c725ba7e
better error messages, especially for multiple types
paulson
parents:
8438
diff
changeset
|
313 |
then mk_functional_err |
6343c725ba7e
better error messages, especially for multiple types
paulson
parents:
8438
diff
changeset
|
314 |
"the function being declared appears with multiple types" |
6343c725ba7e
better error messages, especially for multiple types
paulson
parents:
8438
diff
changeset
|
315 |
else mk_functional_err |
6343c725ba7e
better error messages, especially for multiple types
paulson
parents:
8438
diff
changeset
|
316 |
(Int.toString (length fs) ^ |
6343c725ba7e
better error messages, especially for multiple types
paulson
parents:
8438
diff
changeset
|
317 |
" distinct function names being declared") |
2112 | 318 |
in |
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
319 |
fun mk_functional thy clauses = |
6566 | 320 |
let val (L,R) = ListPair.unzip (map HOLogic.dest_eq clauses) |
321 |
handle _ => raise TFL_ERR |
|
322 |
{func = "mk_functional", |
|
323 |
mesg = "recursion equations must use the = relation"} |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
324 |
val (funcs,pats) = ListPair.unzip (map (fn (t$u) =>(t,u)) L) |
7262 | 325 |
val atom = single (gen_distinct (op aconv) funcs) |
326 |
val (fname,ftype) = dest_atom atom |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
327 |
val dummy = map (no_repeat_vars thy) pats |
7262 | 328 |
val rows = ListPair.zip (map (fn x => ([]:term list,[x])) pats, |
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
329 |
map (fn (t,i) => (t,(i,true))) (enumerate R)) |
3405 | 330 |
val names = foldr add_term_names (R,[]) |
331 |
val atype = type_of(hd pats) |
|
332 |
and aname = variant names "a" |
|
333 |
val a = Free(aname,atype) |
|
2112 | 334 |
val ty_info = Thry.match_info thy |
335 |
val ty_match = Thry.match_type thy |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
336 |
val range_ty = type_of (hd R) |
3405 | 337 |
val (patts, case_tm) = mk_case ty_info ty_match (aname::names) range_ty |
2112 | 338 |
{path=[a], rows=rows} |
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
339 |
val patts1 = map (fn (_,tag,[pat]) => (pat,tag)) patts |
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
340 |
handle _ => mk_functional_err "error in pattern-match translation" |
2112 | 341 |
val patts2 = U.sort(fn p1=>fn p2=> row_of_pat p1 < row_of_pat p2) patts1 |
342 |
val finals = map row_of_pat patts2 |
|
343 |
val originals = map (row_of_pat o #2) rows |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
344 |
val dummy = case (originals\\finals) |
2112 | 345 |
of [] => () |
8357 | 346 |
| L => mk_functional_err ("The following rows are inaccessible: " ^ |
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
347 |
commas (map Int.toString L)) |
3944 | 348 |
in {functional = Abs(Sign.base_name fname, ftype, |
7262 | 349 |
abstract_over (atom, |
350 |
absfree(aname,atype, case_tm))), |
|
2112 | 351 |
pats = patts2} |
352 |
end end; |
|
353 |
||
354 |
||
355 |
(*---------------------------------------------------------------------------- |
|
356 |
* |
|
357 |
* PRINCIPLES OF DEFINITION |
|
358 |
* |
|
359 |
*---------------------------------------------------------------------------*) |
|
360 |
||
361 |
||
6498 | 362 |
(*For Isabelle, the lhs of a definition must be a constant.*) |
363 |
fun mk_const_def sign (Name, Ty, rhs) = |
|
364 |
Sign.infer_types sign (K None) (K None) [] false |
|
365 |
([Const("==",dummyT) $ Const(Name,Ty) $ rhs], propT) |
|
366 |
|> #1; |
|
367 |
||
3387
6f2eaa0ce04b
poly_tvars allows recdefs to be made without type constraints
paulson
parents:
3379
diff
changeset
|
368 |
(*Make all TVars available for instantiation by adding a ? to the front*) |
6f2eaa0ce04b
poly_tvars allows recdefs to be made without type constraints
paulson
parents:
3379
diff
changeset
|
369 |
fun poly_tvars (Type(a,Ts)) = Type(a, map (poly_tvars) Ts) |
6f2eaa0ce04b
poly_tvars allows recdefs to be made without type constraints
paulson
parents:
3379
diff
changeset
|
370 |
| poly_tvars (TFree (a,sort)) = TVar (("?" ^ a, 0), sort) |
6f2eaa0ce04b
poly_tvars allows recdefs to be made without type constraints
paulson
parents:
3379
diff
changeset
|
371 |
| poly_tvars (TVar ((a,i),sort)) = TVar (("?" ^ a, i+1), sort); |
6f2eaa0ce04b
poly_tvars allows recdefs to be made without type constraints
paulson
parents:
3379
diff
changeset
|
372 |
|
3191 | 373 |
local val f_eq_wfrec_R_M = |
374 |
#ant(S.dest_imp(#2(S.strip_forall (concl Thms.WFREC_COROLLARY)))) |
|
375 |
val {lhs=f, rhs} = S.dest_eq f_eq_wfrec_R_M |
|
3333
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
376 |
val (fname,_) = dest_Free f |
3191 | 377 |
val (wfrec,_) = S.strip_comb rhs |
378 |
in |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
379 |
fun wfrec_definition0 thy fid R (functional as Abs(Name, Ty, _)) = |
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
380 |
let val def_name = if Name<>fid then |
3333
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
381 |
raise TFL_ERR{func = "wfrec_definition0", |
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
382 |
mesg = "Expected a definition of " ^ |
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
383 |
quote fid ^ " but found one of " ^ |
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
384 |
quote Name} |
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
385 |
else Name ^ "_def" |
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
386 |
val wfrec_R_M = map_term_types poly_tvars |
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
387 |
(wfrec $ map_term_types poly_tvars R) |
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
388 |
$ functional |
6498 | 389 |
val def_term = mk_const_def (Theory.sign_of thy) (Name, Ty, wfrec_R_M) |
8438 | 390 |
in #1 (PureThy.add_defs_i [Thm.no_attributes (def_name, def_term)] thy) end |
3191 | 391 |
end; |
2112 | 392 |
|
393 |
||
394 |
||
395 |
(*--------------------------------------------------------------------------- |
|
396 |
* This structure keeps track of congruence rules that aren't derived |
|
397 |
* from a datatype definition. |
|
398 |
*---------------------------------------------------------------------------*) |
|
399 |
fun extraction_thms thy = |
|
400 |
let val {case_rewrites,case_congs} = Thry.extract_info thy |
|
3459
112cbb8301dc
Removal of structure Context and its replacement by a theorem list of
paulson
parents:
3405
diff
changeset
|
401 |
in (case_rewrites, case_congs) |
2112 | 402 |
end; |
403 |
||
404 |
||
405 |
(*--------------------------------------------------------------------------- |
|
406 |
* Pair patterns with termination conditions. The full list of patterns for |
|
407 |
* a definition is merged with the TCs arising from the user-given clauses. |
|
408 |
* There can be fewer clauses than the full list, if the user omitted some |
|
409 |
* cases. This routine is used to prepare input for mk_induction. |
|
410 |
*---------------------------------------------------------------------------*) |
|
411 |
fun merge full_pats TCs = |
|
412 |
let fun insert (p,TCs) = |
|
413 |
let fun insrt ((x as (h,[]))::rst) = |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
414 |
if (p aconv h) then (p,TCs)::rst else x::insrt rst |
2112 | 415 |
| insrt (x::rst) = x::insrt rst |
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
416 |
| insrt[] = raise TFL_ERR{func="merge.insert", |
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
417 |
mesg="pattern not found"} |
2112 | 418 |
in insrt end |
419 |
fun pass ([],ptcl_final) = ptcl_final |
|
420 |
| pass (ptcs::tcl, ptcl) = pass(tcl, insert ptcs ptcl) |
|
421 |
in |
|
422 |
pass (TCs, map (fn p => (p,[])) full_pats) |
|
423 |
end; |
|
424 |
||
425 |
||
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
426 |
fun givens pats = map pat_of (filter given pats); |
2112 | 427 |
|
6498 | 428 |
(*called only by Tfl.simplify_defn*) |
429 |
fun post_definition meta_tflCongs (theory, (def, pats)) = |
|
3191 | 430 |
let val tych = Thry.typecheck theory |
431 |
val f = #lhs(S.dest_eq(concl def)) |
|
432 |
val corollary = R.MATCH_MP Thms.WFREC_COROLLARY def |
|
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
433 |
val pats' = filter given pats |
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
434 |
val given_pats = map pat_of pats' |
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
435 |
val rows = map row_of_pat pats' |
2112 | 436 |
val WFR = #ant(S.dest_imp(concl corollary)) |
3191 | 437 |
val R = #Rand(S.dest_comb WFR) |
2112 | 438 |
val corollary' = R.UNDISCH corollary (* put WF R on assums *) |
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
439 |
val corollaries = map (fn pat => R.SPEC (tych pat) corollary') |
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
440 |
given_pats |
3191 | 441 |
val (case_rewrites,context_congs) = extraction_thms theory |
3405 | 442 |
val corollaries' = map(rewrite_rule case_rewrites) corollaries |
443 |
val extract = R.CONTEXT_REWRITE_RULE |
|
6498 | 444 |
(f, [R], cut_apply, meta_tflCongs@context_congs) |
3405 | 445 |
val (rules, TCs) = ListPair.unzip (map extract corollaries') |
446 |
val rules0 = map (rewrite_rule [Thms.CUT_DEF]) rules |
|
447 |
val mk_cond_rule = R.FILTER_DISCH_ALL(not o curry (op aconv) WFR) |
|
2112 | 448 |
val rules1 = R.LIST_CONJ(map mk_cond_rule rules0) |
449 |
in |
|
450 |
{theory = theory, (* holds def, if it's needed *) |
|
451 |
rules = rules1, |
|
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
452 |
rows = rows, |
6498 | 453 |
full_pats_TCs = merge (map pat_of pats) (ListPair.zip (given_pats, TCs)), |
8622
870a58dd0ddd
the simplification rules returned from TFL are now paired with the row they
nipkow
parents:
8492
diff
changeset
|
454 |
TCs = TCs} |
2112 | 455 |
end; |
456 |
||
6498 | 457 |
|
2112 | 458 |
(*--------------------------------------------------------------------------- |
459 |
* Perform the extraction without making the definition. Definition and |
|
6498 | 460 |
* extraction commute for the non-nested case. (Deferred recdefs) |
7262 | 461 |
* |
462 |
* The purpose of wfrec_eqns is merely to instantiate the recursion theorem |
|
463 |
* and extract termination conditions: no definition is made. |
|
6498 | 464 |
*---------------------------------------------------------------------------*) |
7262 | 465 |
|
6498 | 466 |
fun wfrec_eqns thy fid tflCongs eqns = |
7262 | 467 |
let val {lhs,rhs} = S.dest_eq (hd eqns) |
468 |
val (f,args) = S.strip_comb lhs |
|
469 |
val (fname,fty) = dest_atom f |
|
470 |
val (SV,a) = front_last args (* SV = schematic variables *) |
|
471 |
val g = list_comb(f,SV) |
|
472 |
val h = Free(fname,type_of g) |
|
473 |
val eqns1 = map (subst_free[(g,h)]) eqns |
|
474 |
val {functional as Abs(Name, Ty, _), pats} = mk_functional thy eqns1 |
|
2112 | 475 |
val given_pats = givens pats |
6498 | 476 |
(* val f = Free(Name,Ty) *) |
477 |
val Type("fun", [f_dty, f_rty]) = Ty |
|
478 |
val dummy = if Name<>fid then |
|
7262 | 479 |
raise TFL_ERR{func = "wfrec_eqns", |
6498 | 480 |
mesg = "Expected a definition of " ^ |
481 |
quote fid ^ " but found one of " ^ |
|
482 |
quote Name} |
|
483 |
else () |
|
2112 | 484 |
val (case_rewrites,context_congs) = extraction_thms thy |
485 |
val tych = Thry.typecheck thy |
|
486 |
val WFREC_THM0 = R.ISPEC (tych functional) Thms.WFREC_COROLLARY |
|
3405 | 487 |
val Const("All",_) $ Abs(Rname,Rtype,_) = concl WFREC_THM0 |
488 |
val R = Free (variant (foldr add_term_names (eqns,[])) Rname, |
|
489 |
Rtype) |
|
7262 | 490 |
val WFREC_THM = R.ISPECL [tych R, tych g] WFREC_THM0 |
2112 | 491 |
val ([proto_def, WFR],_) = S.strip_imp(concl WFREC_THM) |
6498 | 492 |
val dummy = |
493 |
if !trace then |
|
494 |
writeln ("ORIGINAL PROTO_DEF: " ^ |
|
495 |
Sign.string_of_term (Theory.sign_of thy) proto_def) |
|
496 |
else () |
|
2112 | 497 |
val R1 = S.rand WFR |
498 |
val corollary' = R.UNDISCH(R.UNDISCH WFREC_THM) |
|
3405 | 499 |
val corollaries = map (fn pat => R.SPEC (tych pat) corollary') given_pats |
500 |
val corollaries' = map (rewrite_rule case_rewrites) corollaries |
|
6498 | 501 |
fun extract X = R.CONTEXT_REWRITE_RULE |
502 |
(f, R1::SV, cut_apply, tflCongs@context_congs) X |
|
7262 | 503 |
in {proto_def = proto_def, |
6498 | 504 |
SV=SV, |
2112 | 505 |
WFR=WFR, |
506 |
pats=pats, |
|
507 |
extracta = map extract corollaries'} |
|
508 |
end; |
|
509 |
||
510 |
||
511 |
(*--------------------------------------------------------------------------- |
|
512 |
* Define the constant after extracting the termination conditions. The |
|
513 |
* wellfounded relation used in the definition is computed by using the |
|
514 |
* choice operator on the extracted conditions (plus the condition that |
|
515 |
* such a relation must be wellfounded). |
|
6498 | 516 |
*---------------------------------------------------------------------------*) |
7262 | 517 |
|
6498 | 518 |
fun lazyR_def thy fid tflCongs eqns = |
519 |
let val {proto_def,WFR,pats,extracta,SV} = |
|
520 |
wfrec_eqns thy fid (congs tflCongs) eqns |
|
2112 | 521 |
val R1 = S.rand WFR |
7262 | 522 |
val f = #lhs(S.dest_eq proto_def) |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
523 |
val (extractants,TCl) = ListPair.unzip extracta |
6498 | 524 |
val dummy = if !trace |
525 |
then (writeln "Extractants = "; |
|
526 |
prths extractants; |
|
527 |
()) |
|
528 |
else () |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
529 |
val TCs = foldr (gen_union (op aconv)) (TCl, []) |
2112 | 530 |
val full_rqt = WFR::TCs |
531 |
val R' = S.mk_select{Bvar=R1, Body=S.list_mk_conj full_rqt} |
|
532 |
val R'abs = S.rand R' |
|
6498 | 533 |
val proto_def' = subst_free[(R1,R')] proto_def |
534 |
val dummy = if !trace then writeln ("proto_def' = " ^ |
|
535 |
Sign.string_of_term |
|
536 |
(Theory.sign_of thy) proto_def') |
|
537 |
else () |
|
7262 | 538 |
val {lhs,rhs} = S.dest_eq proto_def' |
539 |
val (c,args) = S.strip_comb lhs |
|
540 |
val (Name,Ty) = dest_atom c |
|
541 |
val defn = mk_const_def (Theory.sign_of thy) |
|
542 |
(Name, Ty, S.list_mk_abs (args,rhs)) |
|
8438 | 543 |
val (theory, [def0]) = |
7262 | 544 |
thy |
545 |
|> PureThy.add_defs_i |
|
546 |
[Thm.no_attributes (fid ^ "_def", defn)] |
|
8438 | 547 |
val def = freezeT def0; |
6498 | 548 |
val dummy = if !trace then writeln ("DEF = " ^ string_of_thm def) |
549 |
else () |
|
7262 | 550 |
(* val fconst = #lhs(S.dest_eq(concl def)) *) |
2112 | 551 |
val tych = Thry.typecheck theory |
6498 | 552 |
val full_rqt_prop = map (Dcterm.mk_prop o tych) full_rqt |
553 |
(*lcp: a lot of object-logic inference to remove*) |
|
554 |
val baz = R.DISCH_ALL |
|
555 |
(U.itlist R.DISCH full_rqt_prop |
|
556 |
(R.LIST_CONJ extractants)) |
|
557 |
val dum = if !trace then writeln ("baz = " ^ string_of_thm baz) |
|
558 |
else () |
|
559 |
val f_free = Free (fid, fastype_of f) (*'cos f is a Const*) |
|
7262 | 560 |
val SV' = map tych SV; |
561 |
val SVrefls = map reflexive SV' |
|
562 |
val def0 = (U.rev_itlist (fn x => fn th => R.rbeta(combination th x)) |
|
563 |
SVrefls def) |
|
564 |
RS meta_eq_to_obj_eq |
|
565 |
val def' = R.MP (R.SPEC (tych R') (R.GEN (tych R1) baz)) def0 |
|
6498 | 566 |
val body_th = R.LIST_CONJ (map R.ASSUME full_rqt_prop) |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
567 |
val bar = R.MP (R.ISPECL[tych R'abs, tych R1] Thms.SELECT_AX) |
3191 | 568 |
body_th |
6498 | 569 |
in {theory = theory, R=R1, SV=SV, |
2112 | 570 |
rules = U.rev_itlist (U.C R.MP) (R.CONJUNCTS bar) def', |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
571 |
full_pats_TCs = merge (map pat_of pats) (ListPair.zip (givens pats, TCl)), |
2112 | 572 |
patterns = pats} |
573 |
end; |
|
574 |
||
575 |
||
576 |
||
577 |
(*---------------------------------------------------------------------------- |
|
578 |
* |
|
579 |
* INDUCTION THEOREM |
|
580 |
* |
|
581 |
*---------------------------------------------------------------------------*) |
|
582 |
||
583 |
||
584 |
(*------------------------ Miscellaneous function -------------------------- |
|
585 |
* |
|
586 |
* [x_1,...,x_n] ?v_1...v_n. M[v_1,...,v_n] |
|
587 |
* ----------------------------------------------------------- |
|
588 |
* ( M[x_1,...,x_n], [(x_i,?v_1...v_n. M[v_1,...,v_n]), |
|
589 |
* ... |
|
590 |
* (x_j,?v_n. M[x_1,...,x_(n-1),v_n])] ) |
|
591 |
* |
|
592 |
* This function is totally ad hoc. Used in the production of the induction |
|
593 |
* theorem. The nchotomy theorem can have clauses that look like |
|
594 |
* |
|
595 |
* ?v1..vn. z = C vn..v1 |
|
596 |
* |
|
597 |
* in which the order of quantification is not the order of occurrence of the |
|
598 |
* quantified variables as arguments to C. Since we have no control over this |
|
599 |
* aspect of the nchotomy theorem, we make the correspondence explicit by |
|
600 |
* pairing the incoming new variable with the term it gets beta-reduced into. |
|
601 |
*---------------------------------------------------------------------------*) |
|
602 |
||
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
603 |
fun alpha_ex_unroll (xlist, tm) = |
2112 | 604 |
let val (qvars,body) = S.strip_exists tm |
605 |
val vlist = #2(S.strip_comb (S.rhs body)) |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
606 |
val plist = ListPair.zip (vlist, xlist) |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
607 |
val args = map (fn qv => the (gen_assoc (op aconv) (plist, qv))) qvars |
4149 | 608 |
handle OPTION => error |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
609 |
"TFL fault [alpha_ex_unroll]: no correspondence" |
3405 | 610 |
fun build ex [] = [] |
611 |
| build (_$rex) (v::rst) = |
|
612 |
let val ex1 = betapply(rex, v) |
|
613 |
in ex1 :: build ex1 rst |
|
2112 | 614 |
end |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
615 |
val (nex::exl) = rev (tm::build tm args) |
2112 | 616 |
in |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
617 |
(nex, ListPair.zip (args, rev exl)) |
2112 | 618 |
end; |
619 |
||
620 |
||
621 |
||
622 |
(*---------------------------------------------------------------------------- |
|
623 |
* |
|
624 |
* PROVING COMPLETENESS OF PATTERNS |
|
625 |
* |
|
626 |
*---------------------------------------------------------------------------*) |
|
627 |
||
3405 | 628 |
fun mk_case ty_info usednames thy = |
2112 | 629 |
let |
3405 | 630 |
val divide = ipartition (gvvariant usednames) |
2112 | 631 |
val tych = Thry.typecheck thy |
3353
9112a2efb9a3
Removal of module Mask and datatype binding with its constructor |->
paulson
parents:
3333
diff
changeset
|
632 |
fun tych_binding(x,y) = (tych x, tych y) |
2112 | 633 |
fun fail s = raise TFL_ERR{func = "mk_case", mesg = s} |
634 |
fun mk{rows=[],...} = fail"no rows" |
|
635 |
| mk{path=[], rows = [([], (thm, bindings))]} = |
|
636 |
R.IT_EXISTS (map tych_binding bindings) thm |
|
637 |
| mk{path = u::rstp, rows as (p::_, _)::_} = |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
638 |
let val (pat_rectangle,rights) = ListPair.unzip rows |
2112 | 639 |
val col0 = map hd pat_rectangle |
640 |
val pat_rectangle' = map tl pat_rectangle |
|
641 |
in |
|
3333
0bbf06e86c06
Now checks the name of the function being defined;
paulson
parents:
3301
diff
changeset
|
642 |
if (forall is_Free col0) (* column 0 is all variables *) |
3353
9112a2efb9a3
Removal of module Mask and datatype binding with its constructor |->
paulson
parents:
3333
diff
changeset
|
643 |
then let val rights' = map (fn ((thm,theta),v) => (thm,theta@[(u,v)])) |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
644 |
(ListPair.zip (rights, col0)) |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
645 |
in mk{path = rstp, rows = ListPair.zip (pat_rectangle', rights')} |
2112 | 646 |
end |
647 |
else (* column 0 is all constructors *) |
|
3944 | 648 |
let val Type (ty_name,_) = type_of p |
2112 | 649 |
in |
650 |
case (ty_info ty_name) |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
651 |
of None => fail("Not a known datatype: "^ty_name) |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
652 |
| Some{constructors,nchotomy} => |
2112 | 653 |
let val thm' = R.ISPEC (tych u) nchotomy |
654 |
val disjuncts = S.strip_disj (concl thm') |
|
655 |
val subproblems = divide(constructors, rows) |
|
656 |
val groups = map #group subproblems |
|
657 |
and new_formals = map #new_formals subproblems |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
658 |
val existentials = ListPair.map alpha_ex_unroll |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
659 |
(new_formals, disjuncts) |
2112 | 660 |
val constraints = map #1 existentials |
661 |
val vexl = map #2 existentials |
|
662 |
fun expnd tm (pats,(th,b)) = (pats,(R.SUBS[R.ASSUME(tych tm)]th,b)) |
|
663 |
val news = map (fn (nf,rows,c) => {path = nf@rstp, |
|
664 |
rows = map (expnd c) rows}) |
|
665 |
(U.zip3 new_formals groups constraints) |
|
666 |
val recursive_thms = map mk news |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
667 |
val build_exists = foldr |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
668 |
(fn((x,t), th) => |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
669 |
R.CHOOSE (tych x, R.ASSUME (tych t)) th) |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
670 |
val thms' = ListPair.map build_exists (vexl, recursive_thms) |
2112 | 671 |
val same_concls = R.EVEN_ORS thms' |
672 |
in R.DISJ_CASESL thm' same_concls |
|
673 |
end |
|
674 |
end end |
|
675 |
in mk |
|
676 |
end; |
|
677 |
||
678 |
||
679 |
fun complete_cases thy = |
|
680 |
let val tych = Thry.typecheck thy |
|
681 |
val ty_info = Thry.induct_info thy |
|
682 |
in fn pats => |
|
3405 | 683 |
let val names = foldr add_term_names (pats,[]) |
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
684 |
val T = type_of (hd pats) |
3405 | 685 |
val aname = Term.variant names "a" |
686 |
val vname = Term.variant (aname::names) "v" |
|
687 |
val a = Free (aname, T) |
|
688 |
val v = Free (vname, T) |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
689 |
val a_eq_v = HOLogic.mk_eq(a,v) |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
690 |
val ex_th0 = R.EXISTS (tych (S.mk_exists{Bvar=v,Body=a_eq_v}), tych a) |
2112 | 691 |
(R.REFL (tych a)) |
692 |
val th0 = R.ASSUME (tych a_eq_v) |
|
693 |
val rows = map (fn x => ([x], (th0,[]))) pats |
|
694 |
in |
|
695 |
R.GEN (tych a) |
|
696 |
(R.RIGHT_ASSOC |
|
697 |
(R.CHOOSE(tych v, ex_th0) |
|
3405 | 698 |
(mk_case ty_info (vname::aname::names) |
699 |
thy {path=[v], rows=rows}))) |
|
2112 | 700 |
end end; |
701 |
||
702 |
||
703 |
(*--------------------------------------------------------------------------- |
|
704 |
* Constructing induction hypotheses: one for each recursive call. |
|
705 |
* |
|
706 |
* Note. R will never occur as a variable in the ind_clause, because |
|
707 |
* to do so, it would have to be from a nested definition, and we don't |
|
708 |
* allow nested defns to have R variable. |
|
709 |
* |
|
710 |
* Note. When the context is empty, there can be no local variables. |
|
711 |
*---------------------------------------------------------------------------*) |
|
6498 | 712 |
(* |
3405 | 713 |
local infix 5 ==> |
2112 | 714 |
fun (tm1 ==> tm2) = S.mk_imp{ant = tm1, conseq = tm2} |
715 |
in |
|
716 |
fun build_ih f P (pat,TCs) = |
|
717 |
let val globals = S.free_vars_lr pat |
|
3405 | 718 |
fun nested tm = is_some (S.find_term (curry (op aconv) f) tm) |
2112 | 719 |
fun dest_TC tm = |
720 |
let val (cntxt,R_y_pat) = S.strip_imp(#2(S.strip_forall tm)) |
|
721 |
val (R,y,_) = S.dest_relation R_y_pat |
|
3405 | 722 |
val P_y = if (nested tm) then R_y_pat ==> P$y else P$y |
2112 | 723 |
in case cntxt |
724 |
of [] => (P_y, (tm,[])) |
|
725 |
| _ => let |
|
726 |
val imp = S.list_mk_conj cntxt ==> P_y |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
727 |
val lvs = gen_rems (op aconv) (S.free_vars_lr imp, globals) |
3405 | 728 |
val locals = #2(U.pluck (curry (op aconv) P) lvs) handle _ => lvs |
2112 | 729 |
in (S.list_mk_forall(locals,imp), (tm,locals)) end |
730 |
end |
|
731 |
in case TCs |
|
3405 | 732 |
of [] => (S.list_mk_forall(globals, P$pat), []) |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
733 |
| _ => let val (ihs, TCs_locals) = ListPair.unzip(map dest_TC TCs) |
3405 | 734 |
val ind_clause = S.list_mk_conj ihs ==> P$pat |
2112 | 735 |
in (S.list_mk_forall(globals,ind_clause), TCs_locals) |
736 |
end |
|
737 |
end |
|
738 |
end; |
|
6498 | 739 |
*) |
2112 | 740 |
|
6498 | 741 |
local infix 5 ==> |
742 |
fun (tm1 ==> tm2) = S.mk_imp{ant = tm1, conseq = tm2} |
|
743 |
in |
|
744 |
fun build_ih f (P,SV) (pat,TCs) = |
|
745 |
let val pat_vars = S.free_vars_lr pat |
|
746 |
val globals = pat_vars@SV |
|
747 |
fun nested tm = is_some (S.find_term (curry (op aconv) f) tm) |
|
748 |
fun dest_TC tm = |
|
749 |
let val (cntxt,R_y_pat) = S.strip_imp(#2(S.strip_forall tm)) |
|
750 |
val (R,y,_) = S.dest_relation R_y_pat |
|
751 |
val P_y = if (nested tm) then R_y_pat ==> P$y else P$y |
|
752 |
in case cntxt |
|
753 |
of [] => (P_y, (tm,[])) |
|
754 |
| _ => let |
|
755 |
val imp = S.list_mk_conj cntxt ==> P_y |
|
756 |
val lvs = gen_rems (op aconv) (S.free_vars_lr imp, globals) |
|
757 |
val locals = #2(U.pluck (curry (op aconv) P) lvs) handle _ => lvs |
|
758 |
in (S.list_mk_forall(locals,imp), (tm,locals)) end |
|
759 |
end |
|
760 |
in case TCs |
|
761 |
of [] => (S.list_mk_forall(pat_vars, P$pat), []) |
|
762 |
| _ => let val (ihs, TCs_locals) = ListPair.unzip(map dest_TC TCs) |
|
763 |
val ind_clause = S.list_mk_conj ihs ==> P$pat |
|
764 |
in (S.list_mk_forall(pat_vars,ind_clause), TCs_locals) |
|
765 |
end |
|
766 |
end |
|
767 |
end; |
|
2112 | 768 |
|
769 |
(*--------------------------------------------------------------------------- |
|
6498 | 770 |
* This function makes good on the promise made in "build_ih". |
2112 | 771 |
* |
772 |
* Input is tm = "(!y. R y pat ==> P y) ==> P pat", |
|
773 |
* TCs = TC_1[pat] ... TC_n[pat] |
|
774 |
* thm = ih1 /\ ... /\ ih_n |- ih[pat] |
|
775 |
*---------------------------------------------------------------------------*) |
|
776 |
fun prove_case f thy (tm,TCs_locals,thm) = |
|
777 |
let val tych = Thry.typecheck thy |
|
778 |
val antc = tych(#ant(S.dest_imp tm)) |
|
779 |
val thm' = R.SPEC_ALL thm |
|
3405 | 780 |
fun nested tm = is_some (S.find_term (curry (op aconv) f) tm) |
2112 | 781 |
fun get_cntxt TC = tych(#ant(S.dest_imp(#2(S.strip_forall(concl TC))))) |
782 |
fun mk_ih ((TC,locals),th2,nested) = |
|
783 |
R.GENL (map tych locals) |
|
784 |
(if nested |
|
785 |
then R.DISCH (get_cntxt TC) th2 handle _ => th2 |
|
786 |
else if S.is_imp(concl TC) |
|
787 |
then R.IMP_TRANS TC th2 |
|
788 |
else R.MP th2 TC) |
|
789 |
in |
|
790 |
R.DISCH antc |
|
791 |
(if S.is_imp(concl thm') (* recursive calls in this clause *) |
|
792 |
then let val th1 = R.ASSUME antc |
|
793 |
val TCs = map #1 TCs_locals |
|
794 |
val ylist = map (#2 o S.dest_relation o #2 o S.strip_imp o |
|
795 |
#2 o S.strip_forall) TCs |
|
796 |
val TClist = map (fn(TC,lvs) => (R.SPEC_ALL(R.ASSUME(tych TC)),lvs)) |
|
797 |
TCs_locals |
|
798 |
val th2list = map (U.C R.SPEC th1 o tych) ylist |
|
799 |
val nlist = map nested TCs |
|
800 |
val triples = U.zip3 TClist th2list nlist |
|
801 |
val Pylist = map mk_ih triples |
|
802 |
in R.MP thm' (R.LIST_CONJ Pylist) end |
|
803 |
else thm') |
|
804 |
end; |
|
805 |
||
806 |
||
807 |
(*--------------------------------------------------------------------------- |
|
808 |
* |
|
809 |
* x = (v1,...,vn) |- M[x] |
|
810 |
* --------------------------------------------- |
|
811 |
* ?v1 ... vn. x = (v1,...,vn) |- M[x] |
|
812 |
* |
|
813 |
*---------------------------------------------------------------------------*) |
|
814 |
fun LEFT_ABS_VSTRUCT tych thm = |
|
815 |
let fun CHOOSER v (tm,thm) = |
|
816 |
let val ex_tm = S.mk_exists{Bvar=v,Body=tm} |
|
817 |
in (ex_tm, R.CHOOSE(tych v, R.ASSUME (tych ex_tm)) thm) |
|
818 |
end |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
819 |
val [veq] = filter (U.can S.dest_eq) (#1 (R.dest_thm thm)) |
2112 | 820 |
val {lhs,rhs} = S.dest_eq veq |
821 |
val L = S.free_vars_lr rhs |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
822 |
in #2 (U.itlist CHOOSER L (veq,thm)) end; |
2112 | 823 |
|
824 |
||
825 |
(*---------------------------------------------------------------------------- |
|
826 |
* Input : f, R, and [(pat1,TCs1),..., (patn,TCsn)] |
|
827 |
* |
|
828 |
* Instantiates WF_INDUCTION_THM, getting Sinduct and then tries to prove |
|
829 |
* recursion induction (Rinduct) by proving the antecedent of Sinduct from |
|
830 |
* the antecedent of Rinduct. |
|
831 |
*---------------------------------------------------------------------------*) |
|
6498 | 832 |
fun mk_induction thy {fconst, R, SV, pat_TCs_list} = |
2112 | 833 |
let val tych = Thry.typecheck thy |
834 |
val Sinduction = R.UNDISCH (R.ISPEC (tych R) Thms.WF_INDUCTION_THM) |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
835 |
val (pats,TCsl) = ListPair.unzip pat_TCs_list |
2112 | 836 |
val case_thm = complete_cases thy pats |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
837 |
val domain = (type_of o hd) pats |
3405 | 838 |
val Pname = Term.variant (foldr (foldr add_term_names) |
839 |
(pats::TCsl, [])) "P" |
|
840 |
val P = Free(Pname, domain --> HOLogic.boolT) |
|
2112 | 841 |
val Sinduct = R.SPEC (tych P) Sinduction |
842 |
val Sinduct_assumf = S.rand ((#ant o S.dest_imp o concl) Sinduct) |
|
6498 | 843 |
val Rassums_TCl' = map (build_ih fconst (P,SV)) pat_TCs_list |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
844 |
val (Rassums,TCl') = ListPair.unzip Rassums_TCl' |
2112 | 845 |
val Rinduct_assum = R.ASSUME (tych (S.list_mk_conj Rassums)) |
3405 | 846 |
val cases = map (fn pat => betapply (Sinduct_assumf, pat)) pats |
2112 | 847 |
val tasks = U.zip3 cases TCl' (R.CONJUNCTS Rinduct_assum) |
6498 | 848 |
val proved_cases = map (prove_case fconst thy) tasks |
3405 | 849 |
val v = Free (variant (foldr add_term_names (map concl proved_cases, [])) |
850 |
"v", |
|
851 |
domain) |
|
2112 | 852 |
val vtyped = tych v |
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
853 |
val substs = map (R.SYM o R.ASSUME o tych o (curry HOLogic.mk_eq v)) pats |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
854 |
val proved_cases1 = ListPair.map (fn (th,th') => R.SUBS[th]th') |
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
855 |
(substs, proved_cases) |
2112 | 856 |
val abs_cases = map (LEFT_ABS_VSTRUCT tych) proved_cases1 |
857 |
val dant = R.GEN vtyped (R.DISJ_CASESL (R.ISPEC vtyped case_thm) abs_cases) |
|
858 |
val dc = R.MP Sinduct dant |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
859 |
val Parg_ty = type_of(#Bvar(S.dest_forall(concl dc))) |
3405 | 860 |
val vars = map (gvvariant[Pname]) (S.strip_prod_type Parg_ty) |
2112 | 861 |
val dc' = U.itlist (R.GEN o tych) vars |
862 |
(R.SPEC (tych(S.mk_vstruct Parg_ty vars)) dc) |
|
863 |
in |
|
864 |
R.GEN (tych P) (R.DISCH (tych(concl Rinduct_assum)) dc') |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
865 |
end |
2112 | 866 |
handle _ => raise TFL_ERR{func = "mk_induction", mesg = "failed derivation"}; |
867 |
||
868 |
||
869 |
||
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
870 |
|
2112 | 871 |
(*--------------------------------------------------------------------------- |
872 |
* |
|
873 |
* POST PROCESSING |
|
874 |
* |
|
875 |
*---------------------------------------------------------------------------*) |
|
876 |
||
877 |
||
878 |
fun simplify_induction thy hth ind = |
|
879 |
let val tych = Thry.typecheck thy |
|
880 |
val (asl,_) = R.dest_thm ind |
|
881 |
val (_,tc_eq_tc') = R.dest_thm hth |
|
882 |
val tc = S.lhs tc_eq_tc' |
|
883 |
fun loop [] = ind |
|
884 |
| loop (asm::rst) = |
|
885 |
if (U.can (Thry.match_term thy asm) tc) |
|
886 |
then R.UNDISCH |
|
887 |
(R.MATCH_MP |
|
888 |
(R.MATCH_MP Thms.simp_thm (R.DISCH (tych asm) ind)) |
|
889 |
hth) |
|
890 |
else loop rst |
|
891 |
in loop asl |
|
892 |
end; |
|
893 |
||
894 |
||
895 |
(*--------------------------------------------------------------------------- |
|
896 |
* The termination condition is an antecedent to the rule, and an |
|
897 |
* assumption to the theorem. |
|
898 |
*---------------------------------------------------------------------------*) |
|
899 |
fun elim_tc tcthm (rule,induction) = |
|
900 |
(R.MP rule tcthm, R.PROVE_HYP tcthm induction) |
|
901 |
||
902 |
||
903 |
fun postprocess{WFtac, terminator, simplifier} theory {rules,induction,TCs} = |
|
904 |
let val tych = Thry.typecheck theory |
|
905 |
||
906 |
(*--------------------------------------------------------------------- |
|
907 |
* Attempt to eliminate WF condition. It's the only assumption of rules |
|
908 |
*---------------------------------------------------------------------*) |
|
909 |
val (rules1,induction1) = |
|
3405 | 910 |
let val thm = R.prove(tych(HOLogic.mk_Trueprop |
911 |
(hd(#1(R.dest_thm rules)))), |
|
912 |
WFtac) |
|
2112 | 913 |
in (R.PROVE_HYP thm rules, R.PROVE_HYP thm induction) |
914 |
end handle _ => (rules,induction) |
|
915 |
||
916 |
(*---------------------------------------------------------------------- |
|
917 |
* The termination condition (tc) is simplified to |- tc = tc' (there |
|
918 |
* might not be a change!) and then 3 attempts are made: |
|
919 |
* |
|
920 |
* 1. if |- tc = T, then eliminate it with eqT; otherwise, |
|
921 |
* 2. apply the terminator to tc'. If |- tc' = T then eliminate; else |
|
922 |
* 3. replace tc by tc' in both the rules and the induction theorem. |
|
923 |
*---------------------------------------------------------------------*) |
|
6498 | 924 |
|
7262 | 925 |
fun print_thms s L = |
926 |
if !trace then writeln (cat_lines (s :: map string_of_thm L)) |
|
927 |
else (); |
|
6498 | 928 |
|
7262 | 929 |
fun print_cterms s L = |
930 |
if !trace then writeln (cat_lines (s :: map string_of_cterm L)) |
|
931 |
else ();; |
|
6498 | 932 |
|
2112 | 933 |
fun simplify_tc tc (r,ind) = |
6498 | 934 |
let val tc1 = tych tc |
935 |
val _ = print_cterms "TC before simplification: " [tc1] |
|
936 |
val tc_eq = simplifier tc1 |
|
937 |
val _ = print_thms "result: " [tc_eq] |
|
2112 | 938 |
in |
939 |
elim_tc (R.MATCH_MP Thms.eqT tc_eq) (r,ind) |
|
940 |
handle _ => |
|
941 |
(elim_tc (R.MATCH_MP(R.MATCH_MP Thms.rev_eq_mp tc_eq) |
|
3405 | 942 |
(R.prove(tych(HOLogic.mk_Trueprop(S.rhs(concl tc_eq))), |
943 |
terminator))) |
|
2112 | 944 |
(r,ind) |
945 |
handle _ => |
|
946 |
(R.UNDISCH(R.MATCH_MP (R.MATCH_MP Thms.simp_thm r) tc_eq), |
|
947 |
simplify_induction theory tc_eq ind)) |
|
948 |
end |
|
949 |
||
950 |
(*---------------------------------------------------------------------- |
|
951 |
* Nested termination conditions are harder to get at, since they are |
|
952 |
* left embedded in the body of the function (and in induction |
|
953 |
* theorem hypotheses). Our "solution" is to simplify them, and try to |
|
954 |
* prove termination, but leave the application of the resulting theorem |
|
955 |
* to a higher level. So things go much as in "simplify_tc": the |
|
956 |
* termination condition (tc) is simplified to |- tc = tc' (there might |
|
957 |
* not be a change) and then 2 attempts are made: |
|
958 |
* |
|
959 |
* 1. if |- tc = T, then return |- tc; otherwise, |
|
960 |
* 2. apply the terminator to tc'. If |- tc' = T then return |- tc; else |
|
961 |
* 3. return |- tc = tc' |
|
962 |
*---------------------------------------------------------------------*) |
|
963 |
fun simplify_nested_tc tc = |
|
964 |
let val tc_eq = simplifier (tych (#2 (S.strip_forall tc))) |
|
965 |
in |
|
966 |
R.GEN_ALL |
|
967 |
(R.MATCH_MP Thms.eqT tc_eq |
|
968 |
handle _ |
|
969 |
=> (R.MATCH_MP(R.MATCH_MP Thms.rev_eq_mp tc_eq) |
|
3405 | 970 |
(R.prove(tych(HOLogic.mk_Trueprop (S.rhs(concl tc_eq))), |
971 |
terminator)) |
|
2112 | 972 |
handle _ => tc_eq)) |
973 |
end |
|
974 |
||
975 |
(*------------------------------------------------------------------- |
|
976 |
* Attempt to simplify the termination conditions in each rule and |
|
977 |
* in the induction theorem. |
|
978 |
*-------------------------------------------------------------------*) |
|
979 |
fun strip_imp tm = if S.is_neg tm then ([],tm) else S.strip_imp tm |
|
980 |
fun loop ([],extras,R,ind) = (rev R, ind, extras) |
|
981 |
| loop ((r,ftcs)::rst, nthms, R, ind) = |
|
982 |
let val tcs = #1(strip_imp (concl r)) |
|
3391
5e45dd3b64e9
More de-HOLification: using Free, Const, etc. instead of mk_var, mk_const
paulson
parents:
3388
diff
changeset
|
983 |
val extra_tcs = gen_rems (op aconv) (ftcs, tcs) |
2112 | 984 |
val extra_tc_thms = map simplify_nested_tc extra_tcs |
985 |
val (r1,ind1) = U.rev_itlist simplify_tc tcs (r,ind) |
|
986 |
val r2 = R.FILTER_DISCH_ALL(not o S.is_WFR) r1 |
|
987 |
in loop(rst, nthms@extra_tc_thms, r2::R, ind1) |
|
988 |
end |
|
3245
241838c01caf
Removal of redundant code (unused or already present in Isabelle.
paulson
parents:
3191
diff
changeset
|
989 |
val rules_tcs = ListPair.zip (R.CONJUNCTS rules1, TCs) |
2112 | 990 |
val (rules2,ind2,extras) = loop(rules_tcs,[],[],induction1) |
991 |
in |
|
992 |
{induction = ind2, rules = R.LIST_CONJ rules2, nested_tcs = extras} |
|
993 |
end; |
|
994 |
||
995 |
end; (* TFL *) |