| author | hoelzl | 
| Fri, 30 Sep 2016 16:08:38 +0200 | |
| changeset 64008 | 17a20ca86d62 | 
| parent 60523 | be2d9f5ddc76 | 
| child 67091 | 1393c2340eec | 
| permissions | -rw-r--r-- | 
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
39302 
diff
changeset
 | 
1  | 
(* Title: HOL/Library/Old_Recdef.thy  | 
| 10773 | 2  | 
Author: Konrad Slind and Markus Wenzel, TU Muenchen  | 
| 12023 | 3  | 
*)  | 
| 5123 | 4  | 
|
| 60500 | 5  | 
section \<open>TFL: recursive function definitions\<close>  | 
| 7701 | 6  | 
|
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
39302 
diff
changeset
 | 
7  | 
theory Old_Recdef  | 
| 55017 | 8  | 
imports Main  | 
| 
46950
 
d0181abdbdac
declare command keywords via theory header, including strict checking outside Pure;
 
wenzelm 
parents: 
46947 
diff
changeset
 | 
9  | 
keywords  | 
| 60523 | 10  | 
"recdef" :: thy_decl and  | 
| 
46950
 
d0181abdbdac
declare command keywords via theory header, including strict checking outside Pure;
 
wenzelm 
parents: 
46947 
diff
changeset
 | 
11  | 
"permissive" "congs" "hints"  | 
| 15131 | 12  | 
begin  | 
| 10773 | 13  | 
|
| 60500 | 14  | 
subsection \<open>Lemmas for TFL\<close>  | 
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
39302 
diff
changeset
 | 
15  | 
|
| 60520 | 16  | 
lemma tfl_wf_induct: "ALL R. wf R -->  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
17  | 
(ALL P. (ALL x. (ALL y. (y,x):R --> P y) --> P x) --> (ALL x. P x))"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
18  | 
apply clarify  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
19  | 
apply (rule_tac r = R and P = P and a = x in wf_induct, assumption, blast)  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
20  | 
done  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
21  | 
|
| 
58184
 
db1381d811ab
cleanup Wfrec; introduce dependent_wf/wellorder_choice
 
hoelzl 
parents: 
56248 
diff
changeset
 | 
22  | 
lemma tfl_cut_def: "cut f r x \<equiv> (\<lambda>y. if (y,x) \<in> r then f y else undefined)"  | 
| 
 
db1381d811ab
cleanup Wfrec; introduce dependent_wf/wellorder_choice
 
hoelzl 
parents: 
56248 
diff
changeset
 | 
23  | 
unfolding cut_def .  | 
| 
 
db1381d811ab
cleanup Wfrec; introduce dependent_wf/wellorder_choice
 
hoelzl 
parents: 
56248 
diff
changeset
 | 
24  | 
|
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
25  | 
lemma tfl_cut_apply: "ALL f R. (x,a):R --> (cut f R a)(x) = f(x)"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
26  | 
apply clarify  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
27  | 
apply (rule cut_apply, assumption)  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
28  | 
done  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
29  | 
|
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
30  | 
lemma tfl_wfrec:  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
31  | 
"ALL M R f. (f=wfrec R M) --> wf R --> (ALL x. f x = M (cut f R x) x)"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
32  | 
apply clarify  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
33  | 
apply (erule wfrec)  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
34  | 
done  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
23742 
diff
changeset
 | 
35  | 
|
| 10773 | 36  | 
lemma tfl_eq_True: "(x = True) --> x"  | 
37  | 
by blast  | 
|
38  | 
||
| 46947 | 39  | 
lemma tfl_rev_eq_mp: "(x = y) --> y --> x"  | 
| 10773 | 40  | 
by blast  | 
41  | 
||
42  | 
lemma tfl_simp_thm: "(x --> y) --> (x = x') --> (x' --> y)"  | 
|
43  | 
by blast  | 
|
| 6438 | 44  | 
|
| 10773 | 45  | 
lemma tfl_P_imp_P_iff_True: "P ==> P = True"  | 
46  | 
by blast  | 
|
47  | 
||
48  | 
lemma tfl_imp_trans: "(A --> B) ==> (B --> C) ==> (A --> C)"  | 
|
49  | 
by blast  | 
|
50  | 
||
| 12023 | 51  | 
lemma tfl_disj_assoc: "(a \<or> b) \<or> c == a \<or> (b \<or> c)"  | 
| 10773 | 52  | 
by simp  | 
53  | 
||
| 12023 | 54  | 
lemma tfl_disjE: "P \<or> Q ==> P --> R ==> Q --> R ==> R"  | 
| 10773 | 55  | 
by blast  | 
56  | 
||
| 12023 | 57  | 
lemma tfl_exE: "\<exists>x. P x ==> \<forall>x. P x --> Q ==> Q"  | 
| 10773 | 58  | 
by blast  | 
59  | 
||
| 60520 | 60  | 
ML_file "old_recdef.ML"  | 
| 58825 | 61  | 
|
| 6438 | 62  | 
|
| 60500 | 63  | 
subsection \<open>Rule setup\<close>  | 
| 32244 | 64  | 
|
| 9855 | 65  | 
lemmas [recdef_simp] =  | 
66  | 
inv_image_def  | 
|
67  | 
measure_def  | 
|
68  | 
lex_prod_def  | 
|
| 11284 | 69  | 
same_fst_def  | 
| 9855 | 70  | 
less_Suc_eq [THEN iffD2]  | 
71  | 
||
| 23150 | 72  | 
lemmas [recdef_cong] =  | 
| 
56248
 
67dc9549fa15
generalized and strengthened cong rules on compound operators, similar to 1ed737a98198
 
haftmann 
parents: 
55017 
diff
changeset
 | 
73  | 
if_cong let_cong image_cong INF_cong SUP_cong bex_cong ball_cong imp_cong  | 
| 60520 | 74  | 
map_cong filter_cong takeWhile_cong dropWhile_cong foldl_cong foldr_cong  | 
| 9855 | 75  | 
|
76  | 
lemmas [recdef_wf] =  | 
|
77  | 
wf_trancl  | 
|
78  | 
wf_less_than  | 
|
79  | 
wf_lex_prod  | 
|
80  | 
wf_inv_image  | 
|
81  | 
wf_measure  | 
|
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
39302 
diff
changeset
 | 
82  | 
wf_measures  | 
| 9855 | 83  | 
wf_pred_nat  | 
| 10653 | 84  | 
wf_same_fst  | 
| 9855 | 85  | 
wf_empty  | 
86  | 
||
| 6438 | 87  | 
end  |