author | wenzelm |
Mon, 02 May 2011 21:33:21 +0200 | |
changeset 42627 | 8749742785b8 |
parent 42364 | 8c674b3b8e44 |
child 42806 | 4b660cdab9b7 |
permissions | -rw-r--r-- |
22729 | 1 |
(* Title: HOL/Nominal/nominal_fresh_fun.ML |
29265
5b4247055bd7
moved old add_term_vars, add_term_frees etc. to structure OldTerm;
wenzelm
parents:
28397
diff
changeset
|
2 |
Authors: Stefan Berghofer and Julien Narboux, TU Muenchen |
22729 | 3 |
|
24558 | 4 |
Provides a tactic to generate fresh names and |
5 |
a tactic to analyse instances of the fresh_fun. |
|
22729 | 6 |
*) |
7 |
||
24558 | 8 |
(* First some functions that should be in the library *) |
22729 | 9 |
|
10 |
fun gen_res_inst_tac_term instf tyinst tinst elim th i st = |
|
11 |
let |
|
12 |
val thy = theory_of_thm st; |
|
13 |
val cgoal = nth (cprems_of st) (i - 1); |
|
14 |
val {maxidx, ...} = rep_cterm cgoal; |
|
15 |
val j = maxidx + 1; |
|
16 |
val tyinst' = map (apfst (Logic.incr_tvar j)) tyinst; |
|
17 |
val ps = Logic.strip_params (term_of cgoal); |
|
18 |
val Ts = map snd ps; |
|
19 |
val tinst' = map (fn (t, u) => |
|
20 |
(head_of (Logic.incr_indexes (Ts, j) t), |
|
21 |
list_abs (ps, u))) tinst; |
|
22 |
val th' = instf |
|
23 |
(map (pairself (ctyp_of thy)) tyinst') |
|
24 |
(map (pairself (cterm_of thy)) tinst') |
|
25 |
(Thm.lift_rule cgoal th) |
|
26 |
in |
|
27 |
compose_tac (elim, th', nprems_of th) i st |
|
28 |
end handle Subscript => Seq.empty; |
|
29 |
||
33034 | 30 |
val res_inst_tac_term = |
22729 | 31 |
gen_res_inst_tac_term (curry Thm.instantiate); |
32 |
||
33034 | 33 |
val res_inst_tac_term' = |
22729 | 34 |
gen_res_inst_tac_term (K Drule.cterm_instantiate) []; |
35 |
||
36 |
fun cut_inst_tac_term' tinst th = |
|
27239 | 37 |
res_inst_tac_term' tinst false (RuleInsts.make_elim_preserve th); |
22729 | 38 |
|
26337 | 39 |
fun get_dyn_thm thy name atom_name = |
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
36610
diff
changeset
|
40 |
Global_Theory.get_thm thy name handle ERROR _ => |
27187 | 41 |
error ("The atom type "^atom_name^" is not defined."); |
22729 | 42 |
|
24558 | 43 |
(* End of function waiting to be in the library :o) *) |
22729 | 44 |
|
24558 | 45 |
(* The theorems needed that are known at compile time. *) |
46 |
val at_exists_fresh' = @{thm "at_exists_fresh'"}; |
|
47 |
val fresh_fun_app' = @{thm "fresh_fun_app'"}; |
|
48 |
val fresh_prod = @{thm "fresh_prod"}; |
|
22729 | 49 |
|
33034 | 50 |
(* A tactic to generate a name fresh for all the free *) |
24558 | 51 |
(* variables and parameters of the goal *) |
22729 | 52 |
|
53 |
fun generate_fresh_tac atom_name i thm = |
|
33034 | 54 |
let |
22729 | 55 |
val thy = theory_of_thm thm; |
56 |
(* the parsing function returns a qualified name, we get back the base name *) |
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
57 |
val atom_basename = Long_Name.base_name atom_name; |
42364 | 58 |
val goal = nth (prems_of thm) (i - 1); |
22729 | 59 |
val ps = Logic.strip_params goal; |
60 |
val Ts = rev (map snd ps); |
|
35667 | 61 |
fun is_of_fs_name T = Sign.of_sort thy (T, [Sign.intern_class thy ("fs_"^atom_basename)]); |
22729 | 62 |
(* rebuild de bruijn indices *) |
63 |
val bvs = map_index (Bound o fst) ps; |
|
64 |
(* select variables of the right class *) |
|
65 |
val vs = filter (fn t => is_of_fs_name (fastype_of1 (Ts, t))) |
|
29265
5b4247055bd7
moved old add_term_vars, add_term_frees etc. to structure OldTerm;
wenzelm
parents:
28397
diff
changeset
|
66 |
(OldTerm.term_frees goal @ bvs); |
22729 | 67 |
(* build the tuple *) |
23368
ad690b9bca1c
generate_fresh works even if there is no free variable in the goal
narboux
parents:
23094
diff
changeset
|
68 |
val s = (Library.foldr1 (fn (v, s) => |
41519
0940fff556a6
avoid catch-all exception handler, presumably TERM was meant here;
wenzelm
parents:
39557
diff
changeset
|
69 |
HOLogic.pair_const (fastype_of1 (Ts, v)) (fastype_of1 (Ts, s)) $ v $ s) vs) |
0940fff556a6
avoid catch-all exception handler, presumably TERM was meant here;
wenzelm
parents:
39557
diff
changeset
|
70 |
handle TERM _ => HOLogic.unit; |
22729 | 71 |
val fs_name_thm = get_dyn_thm thy ("fs_"^atom_basename^"1") atom_basename; |
72 |
val at_name_inst_thm = get_dyn_thm thy ("at_"^atom_basename^"_inst") atom_basename; |
|
73 |
val exists_fresh' = at_name_inst_thm RS at_exists_fresh'; |
|
74 |
(* find the variable we want to instantiate *) |
|
29265
5b4247055bd7
moved old add_term_vars, add_term_frees etc. to structure OldTerm;
wenzelm
parents:
28397
diff
changeset
|
75 |
val x = hd (OldTerm.term_vars (prop_of exists_fresh')); |
33034 | 76 |
in |
22729 | 77 |
(cut_inst_tac_term' [(x,s)] exists_fresh' 1 THEN |
78 |
rtac fs_name_thm 1 THEN |
|
79 |
etac exE 1) thm |
|
80 |
handle Empty => all_tac thm (* if we collected no variables then we do nothing *) |
|
81 |
end; |
|
82 |
||
83 |
fun get_inner_fresh_fun (Bound j) = NONE |
|
33034 | 84 |
| get_inner_fresh_fun (v as Free _) = NONE |
22729 | 85 |
| get_inner_fresh_fun (v as Var _) = NONE |
86 |
| get_inner_fresh_fun (Const _) = NONE |
|
33034 | 87 |
| get_inner_fresh_fun (Abs (_, _, t)) = get_inner_fresh_fun t |
88 |
| get_inner_fresh_fun (Const ("Nominal.fresh_fun",Type("fun",[Type ("fun",[Type (T,_),_]),_])) $ u) |
|
89 |
= SOME T |
|
90 |
| get_inner_fresh_fun (t $ u) = |
|
22729 | 91 |
let val a = get_inner_fresh_fun u in |
33034 | 92 |
if a = NONE then get_inner_fresh_fun t else a |
22729 | 93 |
end; |
94 |
||
33034 | 95 |
(* This tactic generates a fresh name of the atom type *) |
24558 | 96 |
(* given by the innermost fresh_fun *) |
22729 | 97 |
|
98 |
fun generate_fresh_fun_tac i thm = |
|
99 |
let |
|
42364 | 100 |
val goal = nth (prems_of thm) (i - 1); |
22729 | 101 |
val atom_name_opt = get_inner_fresh_fun goal; |
102 |
in |
|
33034 | 103 |
case atom_name_opt of |
22729 | 104 |
NONE => all_tac thm |
33034 | 105 |
| SOME atom_name => generate_fresh_tac atom_name i thm |
22729 | 106 |
end |
107 |
||
33034 | 108 |
(* Two substitution tactics which looks for the innermost occurence in |
23091
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
109 |
one assumption or in the conclusion *) |
22729 | 110 |
|
33034 | 111 |
val search_fun = curry (Seq.flat o uncurry EqSubst.searchf_bt_unify_valid); |
23065 | 112 |
val search_fun_asm = EqSubst.skip_first_asm_occs_search EqSubst.searchf_bt_unify_valid; |
23054
d1bbe5afa279
change fresh_fun_simp to treat occurences in assumptions and try to solve the generated subgoals
narboux
parents:
22792
diff
changeset
|
113 |
|
33034 | 114 |
fun subst_inner_tac ctxt = EqSubst.eqsubst_tac' ctxt search_fun; |
115 |
fun subst_inner_asm_tac_aux i ctxt = EqSubst.eqsubst_asm_tac' ctxt search_fun_asm i; |
|
23054
d1bbe5afa279
change fresh_fun_simp to treat occurences in assumptions and try to solve the generated subgoals
narboux
parents:
22792
diff
changeset
|
116 |
|
33034 | 117 |
(* A tactic to substitute in the first assumption |
23091
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
118 |
which contains an occurence. *) |
22729 | 119 |
|
33034 | 120 |
fun subst_inner_asm_tac ctxt th = |
121 |
curry (curry (FIRST' (map uncurry (map uncurry (map subst_inner_asm_tac_aux |
|
122 |
(1 upto Thm.nprems_of th)))))) ctxt th; |
|
23091
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
123 |
|
33034 | 124 |
fun fresh_fun_tac no_asm i thm = |
22729 | 125 |
(* Find the variable we instantiate *) |
126 |
let |
|
127 |
val thy = theory_of_thm thm; |
|
42361 | 128 |
val ctxt = Proof_Context.init_global thy; |
32149
ef59550a55d3
renamed simpset_of to global_simpset_of, and local_simpset_of to simpset_of -- same for claset and clasimpset;
wenzelm
parents:
30549
diff
changeset
|
129 |
val ss = global_simpset_of thy; |
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
36610
diff
changeset
|
130 |
val abs_fresh = Global_Theory.get_thms thy "abs_fresh"; |
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
36610
diff
changeset
|
131 |
val fresh_perm_app = Global_Theory.get_thms thy "fresh_perm_app"; |
22729 | 132 |
val ss' = ss addsimps fresh_prod::abs_fresh; |
23054
d1bbe5afa279
change fresh_fun_simp to treat occurences in assumptions and try to solve the generated subgoals
narboux
parents:
22792
diff
changeset
|
133 |
val ss'' = ss' addsimps fresh_perm_app; |
29265
5b4247055bd7
moved old add_term_vars, add_term_frees etc. to structure OldTerm;
wenzelm
parents:
28397
diff
changeset
|
134 |
val x = hd (tl (OldTerm.term_vars (prop_of exI))); |
22787 | 135 |
val goal = nth (prems_of thm) (i-1); |
22729 | 136 |
val atom_name_opt = get_inner_fresh_fun goal; |
33034 | 137 |
val n = length (Logic.strip_params goal); |
24558 | 138 |
(* Here we rely on the fact that the variable introduced by generate_fresh_tac *) |
139 |
(* is the last one in the list, the inner one *) |
|
22729 | 140 |
in |
33034 | 141 |
case atom_name_opt of |
22729 | 142 |
NONE => all_tac thm |
33034 | 143 |
| SOME atom_name => |
144 |
let |
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
145 |
val atom_basename = Long_Name.base_name atom_name; |
22729 | 146 |
val pt_name_inst = get_dyn_thm thy ("pt_"^atom_basename^"_inst") atom_basename; |
147 |
val at_name_inst = get_dyn_thm thy ("at_"^atom_basename^"_inst") atom_basename; |
|
22787 | 148 |
fun inst_fresh vars params i st = |
29265
5b4247055bd7
moved old add_term_vars, add_term_frees etc. to structure OldTerm;
wenzelm
parents:
28397
diff
changeset
|
149 |
let val vars' = OldTerm.term_vars (prop_of st); |
22787 | 150 |
val thy = theory_of_thm st; |
33040 | 151 |
in case subtract (op =) vars vars' of |
22787 | 152 |
[x] => Seq.single (Thm.instantiate ([],[(cterm_of thy x,cterm_of thy (list_abs (params,Bound 0)))]) st) |
153 |
| _ => error "fresh_fun_simp: Too many variables, please report." |
|
154 |
end |
|
22729 | 155 |
in |
23091
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
156 |
((fn st => |
33034 | 157 |
let |
29265
5b4247055bd7
moved old add_term_vars, add_term_frees etc. to structure OldTerm;
wenzelm
parents:
28397
diff
changeset
|
158 |
val vars = OldTerm.term_vars (prop_of st); |
22787 | 159 |
val params = Logic.strip_params (nth (prems_of st) (i-1)) |
33034 | 160 |
(* The tactics which solve the subgoals generated |
23091
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
161 |
by the conditionnal rewrite rule. *) |
33034 | 162 |
val post_rewrite_tacs = |
23054
d1bbe5afa279
change fresh_fun_simp to treat occurences in assumptions and try to solve the generated subgoals
narboux
parents:
22792
diff
changeset
|
163 |
[rtac pt_name_inst, |
d1bbe5afa279
change fresh_fun_simp to treat occurences in assumptions and try to solve the generated subgoals
narboux
parents:
22792
diff
changeset
|
164 |
rtac at_name_inst, |
34885
6587c24ef6d8
added SOLVED' -- a more direct version of THEN_ALL_NEW (K no_tac) -- strictly speaking it does not even depend on subgoal addressing, but it would be too confusing without it;
wenzelm
parents:
33040
diff
changeset
|
165 |
TRY o SOLVED' (NominalPermeq.finite_guess_tac ss''), |
23054
d1bbe5afa279
change fresh_fun_simp to treat occurences in assumptions and try to solve the generated subgoals
narboux
parents:
22792
diff
changeset
|
166 |
inst_fresh vars params THEN' |
34885
6587c24ef6d8
added SOLVED' -- a more direct version of THEN_ALL_NEW (K no_tac) -- strictly speaking it does not even depend on subgoal addressing, but it would be too confusing without it;
wenzelm
parents:
33040
diff
changeset
|
167 |
(TRY o SOLVED' (NominalPermeq.fresh_guess_tac ss'')) THEN' |
6587c24ef6d8
added SOLVED' -- a more direct version of THEN_ALL_NEW (K no_tac) -- strictly speaking it does not even depend on subgoal addressing, but it would be too confusing without it;
wenzelm
parents:
33040
diff
changeset
|
168 |
(TRY o SOLVED' (asm_full_simp_tac ss''))] |
33034 | 169 |
in |
23094
f1df8d2da98a
fix a bug : the semantics of no_asm was the opposite
narboux
parents:
23091
diff
changeset
|
170 |
((if no_asm then no_tac else |
33034 | 171 |
(subst_inner_asm_tac ctxt fresh_fun_app' i THEN (RANGE post_rewrite_tacs i))) |
23091
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
172 |
ORELSE |
33034 | 173 |
(subst_inner_tac ctxt fresh_fun_app' i THEN (RANGE post_rewrite_tacs i))) st |
22787 | 174 |
end)) thm |
33034 | 175 |
|
22729 | 176 |
end |
177 |
end |
|
178 |
||
23091
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
179 |
(* syntax for options, given "(no_asm)" will give back true, without |
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
180 |
gives back false *) |
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
181 |
val options_syntax = |
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
182 |
(Args.parens (Args.$$$ "no_asm") >> (K true)) || |
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
183 |
(Scan.succeed false); |
c91530f18d9c
add an option in fresh_fun_simp to prevent rewriting in assumptions
narboux
parents:
23065
diff
changeset
|
184 |
|
30549 | 185 |
fun setup_generate_fresh x = |
35360
df2b2168e43a
clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents:
34885
diff
changeset
|
186 |
(Args.goal_spec -- Args.type_name true >> |
30549 | 187 |
(fn (quant, s) => K (SIMPLE_METHOD'' quant (generate_fresh_tac s)))) x; |
22729 | 188 |
|
30549 | 189 |
fun setup_fresh_fun_simp x = |
190 |
(Scan.lift options_syntax >> (fn b => K (SIMPLE_METHOD' (fresh_fun_tac b)))) x; |
|
191 |