author | Christian Urban <urbanc@in.tum.de> |
Sun, 05 Jun 2011 21:14:23 +0100 | |
changeset 2819 | 4bd584ff4fab |
parent 2733 | 5f6fefdbf055 |
child 2868 | 2b8e387d2dfc |
permissions | -rw-r--r-- |
1833
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
1 |
(* Title: nominal_library.ML |
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
2 |
Author: Christian Urban |
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
3 |
|
2733
5f6fefdbf055
split the library into a basics file; merged Nominal_Eqvt into Nominal_Base
Christian Urban <urbanc@in.tum.de>
parents:
2647
diff
changeset
|
4 |
Library functions for nominal. |
1833
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
5 |
*) |
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
6 |
|
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
7 |
signature NOMINAL_LIBRARY = |
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
8 |
sig |
1962
84a13d1e2511
moved mk_atom into the library; that meant that concrete atom classes need to be in Nominal2_Base
Christian Urban <urbanc@in.tum.de>
parents:
1899
diff
changeset
|
9 |
val mk_sort_of: term -> term |
1979
760257a66604
added basic functions for constructing supp-terms
Christian Urban <urbanc@in.tum.de>
parents:
1963
diff
changeset
|
10 |
val atom_ty: typ -> typ |
2569
94750b31a97d
fixed bug in fv function where a shallow binder binds lists of names
Christian Urban <urbanc@in.tum.de>
parents:
2568
diff
changeset
|
11 |
val atom_const: typ -> term |
1962
84a13d1e2511
moved mk_atom into the library; that meant that concrete atom classes need to be in Nominal2_Base
Christian Urban <urbanc@in.tum.de>
parents:
1899
diff
changeset
|
12 |
val mk_atom_ty: typ -> term -> term |
84a13d1e2511
moved mk_atom into the library; that meant that concrete atom classes need to be in Nominal2_Base
Christian Urban <urbanc@in.tum.de>
parents:
1899
diff
changeset
|
13 |
val mk_atom: term -> term |
84a13d1e2511
moved mk_atom into the library; that meant that concrete atom classes need to be in Nominal2_Base
Christian Urban <urbanc@in.tum.de>
parents:
1899
diff
changeset
|
14 |
|
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
15 |
val mk_atom_set_ty: typ -> term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
16 |
val mk_atom_set: term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
17 |
val mk_atom_fset_ty: typ -> term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
18 |
val mk_atom_fset: term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
19 |
val mk_atom_list_ty: typ -> term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
20 |
val mk_atom_list: term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
21 |
|
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
22 |
val is_atom: Proof.context -> typ -> bool |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
23 |
val is_atom_set: Proof.context -> typ -> bool |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
24 |
val is_atom_fset: Proof.context -> typ -> bool |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
25 |
val is_atom_list: Proof.context -> typ -> bool |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
26 |
|
2608
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
27 |
val to_set_ty: typ -> term -> term |
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
28 |
val to_set: term -> term |
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
29 |
|
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
30 |
val atomify_ty: Proof.context -> typ -> term -> term |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
31 |
val atomify: Proof.context -> term -> term |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
32 |
val setify_ty: Proof.context -> typ -> term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
33 |
val setify: Proof.context -> term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
34 |
val listify_ty: Proof.context -> typ -> term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
35 |
val listify: Proof.context -> term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
36 |
|
2608
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
37 |
val fresh_star_ty: typ -> typ |
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
38 |
val fresh_star_const: typ -> term |
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
39 |
val mk_fresh_star_ty: typ -> term -> term -> term |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
40 |
val mk_fresh_star: term -> term -> term |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
41 |
|
1979
760257a66604
added basic functions for constructing supp-terms
Christian Urban <urbanc@in.tum.de>
parents:
1963
diff
changeset
|
42 |
val supp_ty: typ -> typ |
2296 | 43 |
val supp_const: typ -> term |
1979
760257a66604
added basic functions for constructing supp-terms
Christian Urban <urbanc@in.tum.de>
parents:
1963
diff
changeset
|
44 |
val mk_supp_ty: typ -> term -> term |
760257a66604
added basic functions for constructing supp-terms
Christian Urban <urbanc@in.tum.de>
parents:
1963
diff
changeset
|
45 |
val mk_supp: term -> term |
760257a66604
added basic functions for constructing supp-terms
Christian Urban <urbanc@in.tum.de>
parents:
1963
diff
changeset
|
46 |
|
2475
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
47 |
val supp_rel_ty: typ -> typ |
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
48 |
val supp_rel_const: typ -> term |
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
49 |
val mk_supp_rel_ty: typ -> term -> term -> term |
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
50 |
val mk_supp_rel: term -> term -> term |
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
51 |
|
2448 | 52 |
val supports_const: typ -> term |
53 |
val mk_supports_ty: typ -> term -> term -> term |
|
54 |
val mk_supports: term -> term -> term |
|
55 |
||
2450
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
56 |
val finite_const: typ -> term |
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
57 |
val mk_finite_ty: typ -> term -> term |
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
58 |
val mk_finite: term -> term |
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
59 |
|
2289
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
60 |
val mk_diff: term * term -> term |
2296 | 61 |
val mk_append: term * term -> term |
2289
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
62 |
val mk_union: term * term -> term |
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
63 |
val fold_union: term list -> term |
2464
f4eba60cbd69
made the fv-definition aggree more with alpha (needed in the support proofs)
Christian Urban <urbanc@in.tum.de>
parents:
2450
diff
changeset
|
64 |
val fold_append: term list -> term |
2389
0f24c961b5f6
introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents:
2384
diff
changeset
|
65 |
val mk_conj: term * term -> term |
0f24c961b5f6
introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents:
2384
diff
changeset
|
66 |
val fold_conj: term list -> term |
2289
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
67 |
|
2625
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
68 |
(* functions for de-Bruijn open terms *) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
69 |
val mk_binop_env: typ list -> string -> term * term -> term |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
70 |
val mk_union_env: typ list -> term * term -> term |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
71 |
val fold_union_env: typ list -> term list -> term |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
72 |
|
2448 | 73 |
(* fresh arguments for a term *) |
74 |
val fresh_args: Proof.context -> term -> term list |
|
75 |
||
2625
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
76 |
(* some logic operations *) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
77 |
val strip_full_horn: term -> (string * typ) list * term list * term |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
78 |
val mk_full_horn: (string * typ) list -> term list -> term -> term |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
79 |
|
2288
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
80 |
(* datatype operations *) |
2407 | 81 |
type cns_info = (term * typ * typ list * bool list) list |
82 |
||
2296 | 83 |
val all_dtyps: Datatype_Aux.descr -> (string * sort) list -> typ list |
2288
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
84 |
val nth_dtyp: Datatype_Aux.descr -> (string * sort) list -> int -> typ |
2407 | 85 |
val all_dtyp_constrs_types: Datatype_Aux.descr -> (string * sort) list -> cns_info list |
86 |
val nth_dtyp_constrs_types: Datatype_Aux.descr -> (string * sort) list -> int -> cns_info |
|
2288
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
87 |
val prefix_dt_names: Datatype_Aux.descr -> (string * sort) list -> string -> string list |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
88 |
|
2304
8a98171ba1fc
all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents:
2296
diff
changeset
|
89 |
(* tactics for function package *) |
2630
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
90 |
val size_simpset: simpset |
2304
8a98171ba1fc
all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents:
2296
diff
changeset
|
91 |
val pat_completeness_simp: thm list -> Proof.context -> tactic |
2630
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
92 |
val prove_termination_ind: Proof.context -> int -> tactic |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
93 |
val prove_termination_fun: thm list -> Proof.context -> Function.info * local_theory |
2304
8a98171ba1fc
all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents:
2296
diff
changeset
|
94 |
|
2311
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
95 |
(* transformations of premises in inductions *) |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
96 |
val transform_prem1: Proof.context -> string list -> thm -> thm |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
97 |
val transform_prem2: Proof.context -> string list -> thm -> thm |
2397
c670a849af65
more experiments with lifting
Christian Urban <urbanc@in.tum.de>
parents:
2389
diff
changeset
|
98 |
|
c670a849af65
more experiments with lifting
Christian Urban <urbanc@in.tum.de>
parents:
2389
diff
changeset
|
99 |
(* transformation into the object logic *) |
c670a849af65
more experiments with lifting
Christian Urban <urbanc@in.tum.de>
parents:
2389
diff
changeset
|
100 |
val atomize: thm -> thm |
2398 | 101 |
|
2625
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
102 |
(* applies a tactic to a formula composed of conjunctions *) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
103 |
val conj_tac: (int -> tactic) -> int -> tactic |
1833
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
104 |
end |
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
105 |
|
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
106 |
|
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
107 |
structure Nominal_Library: NOMINAL_LIBRARY = |
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
108 |
struct |
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
109 |
|
1962
84a13d1e2511
moved mk_atom into the library; that meant that concrete atom classes need to be in Nominal2_Base
Christian Urban <urbanc@in.tum.de>
parents:
1899
diff
changeset
|
110 |
fun mk_sort_of t = @{term "sort_of"} $ t; |
84a13d1e2511
moved mk_atom into the library; that meant that concrete atom classes need to be in Nominal2_Base
Christian Urban <urbanc@in.tum.de>
parents:
1899
diff
changeset
|
111 |
|
1979
760257a66604
added basic functions for constructing supp-terms
Christian Urban <urbanc@in.tum.de>
parents:
1963
diff
changeset
|
112 |
fun atom_ty ty = ty --> @{typ "atom"}; |
2569
94750b31a97d
fixed bug in fv function where a shallow binder binds lists of names
Christian Urban <urbanc@in.tum.de>
parents:
2568
diff
changeset
|
113 |
fun atom_const ty = Const (@{const_name "atom"}, atom_ty ty) |
94750b31a97d
fixed bug in fv function where a shallow binder binds lists of names
Christian Urban <urbanc@in.tum.de>
parents:
2568
diff
changeset
|
114 |
fun mk_atom_ty ty t = atom_const ty $ t; |
1962
84a13d1e2511
moved mk_atom into the library; that meant that concrete atom classes need to be in Nominal2_Base
Christian Urban <urbanc@in.tum.de>
parents:
1899
diff
changeset
|
115 |
fun mk_atom t = mk_atom_ty (fastype_of t) t; |
84a13d1e2511
moved mk_atom into the library; that meant that concrete atom classes need to be in Nominal2_Base
Christian Urban <urbanc@in.tum.de>
parents:
1899
diff
changeset
|
116 |
|
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
117 |
fun mk_atom_set_ty ty t = |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
118 |
let |
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
119 |
val atom_ty = HOLogic.dest_setT ty |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
120 |
val img_ty = (atom_ty --> @{typ atom}) --> ty --> @{typ "atom set"}; |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
121 |
in |
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
122 |
Const (@{const_name image}, img_ty) $ atom_const atom_ty $ t |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
123 |
end |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
124 |
|
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
125 |
fun mk_atom_fset_ty ty t = |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
126 |
let |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
127 |
val atom_ty = dest_fsetT ty |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
128 |
val fmap_ty = (atom_ty --> @{typ atom}) --> ty --> @{typ "atom fset"}; |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
129 |
in |
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
130 |
Const (@{const_name map_fset}, fmap_ty) $ atom_const atom_ty $ t |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
131 |
end |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
132 |
|
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
133 |
fun mk_atom_list_ty ty t = |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
134 |
let |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
135 |
val atom_ty = dest_listT ty |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
136 |
val map_ty = (atom_ty --> @{typ atom}) --> ty --> @{typ "atom list"} |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
137 |
in |
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
138 |
Const (@{const_name map}, map_ty) $ atom_const atom_ty $ t |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
139 |
end |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
140 |
|
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
141 |
fun mk_atom_set t = mk_atom_set_ty (fastype_of t) t |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
142 |
fun mk_atom_fset t = mk_atom_fset_ty (fastype_of t) t |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
143 |
fun mk_atom_list t = mk_atom_list_ty (fastype_of t) t |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
144 |
|
2608
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
145 |
(* coerces a list into a set *) |
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
146 |
|
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
147 |
fun to_set_ty ty t = |
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
148 |
case ty of |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
149 |
@{typ "atom list"} => @{term "set :: atom list => atom set"} $ t |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
150 |
| @{typ "atom fset"} => @{term "fset :: atom fset => atom set"} $ t |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
151 |
| _ => t |
2608
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
152 |
|
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
153 |
fun to_set t = to_set_ty (fastype_of t) t |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
154 |
|
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
155 |
|
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
156 |
(* testing for concrete atom types *) |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
157 |
fun is_atom ctxt ty = |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
158 |
Sign.of_sort (ProofContext.theory_of ctxt) (ty, @{sort at_base}) |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
159 |
|
2608
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
160 |
fun is_atom_set ctxt (Type ("fun", [ty, @{typ bool}])) = is_atom ctxt ty |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
161 |
| is_atom_set _ _ = false; |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
162 |
|
2608
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
163 |
fun is_atom_fset ctxt (Type (@{type_name "fset"}, [ty])) = is_atom ctxt ty |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
164 |
| is_atom_fset _ _ = false; |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
165 |
|
2608
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
166 |
fun is_atom_list ctxt (Type (@{type_name "list"}, [ty])) = is_atom ctxt ty |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
167 |
| is_atom_list _ _ = false |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
168 |
|
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
169 |
|
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
170 |
(* functions that coerce singletons, sets, fsets and lists of concrete |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
171 |
atoms into general atoms sets / lists *) |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
172 |
fun atomify_ty ctxt ty t = |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
173 |
if is_atom ctxt ty |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
174 |
then mk_atom_ty ty t |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
175 |
else if is_atom_set ctxt ty |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
176 |
then mk_atom_set_ty ty t |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
177 |
else if is_atom_fset ctxt ty |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
178 |
then mk_atom_fset_ty ty t |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
179 |
else if is_atom_list ctxt ty |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
180 |
then mk_atom_list_ty ty t |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
181 |
else raise TERM ("atomify", [t]) |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
182 |
|
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
183 |
fun setify_ty ctxt ty t = |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
184 |
if is_atom ctxt ty |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
185 |
then HOLogic.mk_set @{typ atom} [mk_atom_ty ty t] |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
186 |
else if is_atom_set ctxt ty |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
187 |
then mk_atom_set_ty ty t |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
188 |
else if is_atom_fset ctxt ty |
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
189 |
then @{term "fset :: atom fset => atom set"} $ mk_atom_fset_ty ty t |
2608
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
190 |
else if is_atom_list ctxt ty |
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
191 |
then @{term "set :: atom list => atom set"} $ mk_atom_list_ty ty t |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
192 |
else raise TERM ("setify", [t]) |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
193 |
|
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
194 |
fun listify_ty ctxt ty t = |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
195 |
if is_atom ctxt ty |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
196 |
then HOLogic.mk_list @{typ atom} [mk_atom_ty ty t] |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
197 |
else if is_atom_list ctxt ty |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
198 |
then mk_atom_list_ty ty t |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
199 |
else raise TERM ("listify", [t]) |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
200 |
|
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
201 |
fun atomify ctxt t = atomify_ty ctxt (fastype_of t) t |
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
202 |
fun setify ctxt t = setify_ty ctxt (fastype_of t) t |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
203 |
fun listify ctxt t = listify_ty ctxt (fastype_of t) t |
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
204 |
|
2608
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
205 |
fun fresh_star_ty ty = [@{typ "atom set"}, ty] ---> @{typ bool} |
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
206 |
fun fresh_star_const ty = Const (@{const_name fresh_star}, fresh_star_ty ty) |
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
207 |
fun mk_fresh_star_ty ty t1 t2 = fresh_star_const ty $ t1 $ t2 |
86e3b39c2a60
created strong_exhausts terms
Christian Urban <urbanc@in.tum.de>
parents:
2607
diff
changeset
|
208 |
fun mk_fresh_star t1 t2 = mk_fresh_star_ty (fastype_of t2) t1 t2 |
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
parents:
2603
diff
changeset
|
209 |
|
1979
760257a66604
added basic functions for constructing supp-terms
Christian Urban <urbanc@in.tum.de>
parents:
1963
diff
changeset
|
210 |
fun supp_ty ty = ty --> @{typ "atom set"}; |
2450
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
211 |
fun supp_const ty = Const (@{const_name supp}, supp_ty ty) |
2475
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
212 |
fun mk_supp_ty ty t = supp_const ty $ t |
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
213 |
fun mk_supp t = mk_supp_ty (fastype_of t) t |
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
214 |
|
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
215 |
fun supp_rel_ty ty = ([ty, ty] ---> @{typ bool}) --> ty --> @{typ "atom set"}; |
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
216 |
fun supp_rel_const ty = Const (@{const_name supp_rel}, supp_rel_ty ty) |
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
217 |
fun mk_supp_rel_ty ty r t = supp_rel_const ty $ r $ t |
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents:
2464
diff
changeset
|
218 |
fun mk_supp_rel r t = mk_supp_rel_ty (fastype_of t) r t |
1979
760257a66604
added basic functions for constructing supp-terms
Christian Urban <urbanc@in.tum.de>
parents:
1963
diff
changeset
|
219 |
|
2450
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
220 |
fun supports_const ty = Const (@{const_name supports}, [@{typ "atom set"}, ty] ---> @{typ bool}); |
2448 | 221 |
fun mk_supports_ty ty t1 t2 = supports_const ty $ t1 $ t2; |
222 |
fun mk_supports t1 t2 = mk_supports_ty (fastype_of t2) t1 t2; |
|
1979
760257a66604
added basic functions for constructing supp-terms
Christian Urban <urbanc@in.tum.de>
parents:
1963
diff
changeset
|
223 |
|
2450
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
224 |
fun finite_const ty = Const (@{const_name finite}, ty --> @{typ bool}) |
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
225 |
fun mk_finite_ty ty t = finite_const ty $ t |
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
226 |
fun mk_finite t = mk_finite_ty (fastype_of t) t |
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
227 |
|
217ef3e4282e
added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents:
2448
diff
changeset
|
228 |
|
2296 | 229 |
(* functions that construct differences, appends and unions |
230 |
but avoid producing empty atom sets or empty atom lists *) |
|
2289
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
231 |
|
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
232 |
fun mk_diff (@{term "{}::atom set"}, _) = @{term "{}::atom set"} |
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
233 |
| mk_diff (t1, @{term "{}::atom set"}) = t1 |
2464
f4eba60cbd69
made the fv-definition aggree more with alpha (needed in the support proofs)
Christian Urban <urbanc@in.tum.de>
parents:
2450
diff
changeset
|
234 |
| mk_diff (@{term "set ([]::atom list)"}, _) = @{term "set ([]::atom list)"} |
f4eba60cbd69
made the fv-definition aggree more with alpha (needed in the support proofs)
Christian Urban <urbanc@in.tum.de>
parents:
2450
diff
changeset
|
235 |
| mk_diff (t1, @{term "set ([]::atom list)"}) = t1 |
2289
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
236 |
| mk_diff (t1, t2) = HOLogic.mk_binop @{const_name minus} (t1, t2) |
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
237 |
|
2389
0f24c961b5f6
introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents:
2384
diff
changeset
|
238 |
fun mk_append (t1, @{term "[]::atom list"}) = t1 |
2296 | 239 |
| mk_append (@{term "[]::atom list"}, t2) = t2 |
240 |
| mk_append (t1, t2) = HOLogic.mk_binop @{const_name "append"} (t1, t2) |
|
241 |
||
2389
0f24c961b5f6
introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents:
2384
diff
changeset
|
242 |
fun mk_union (t1, @{term "{}::atom set"}) = t1 |
2289
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
243 |
| mk_union (@{term "{}::atom set"}, t2) = t2 |
2464
f4eba60cbd69
made the fv-definition aggree more with alpha (needed in the support proofs)
Christian Urban <urbanc@in.tum.de>
parents:
2450
diff
changeset
|
244 |
| mk_union (t1, @{term "set ([]::atom list)"}) = t1 |
f4eba60cbd69
made the fv-definition aggree more with alpha (needed in the support proofs)
Christian Urban <urbanc@in.tum.de>
parents:
2450
diff
changeset
|
245 |
| mk_union (@{term "set ([]::atom list)"}, t2) = t2 |
2296 | 246 |
| mk_union (t1, t2) = HOLogic.mk_binop @{const_name "sup"} (t1, t2) |
2289
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
247 |
|
2384
841b7e34e70a
fixed order of fold_union to make alpha and fv agree
Christian Urban <urbanc@in.tum.de>
parents:
2375
diff
changeset
|
248 |
fun fold_union trms = fold_rev (curry mk_union) trms @{term "{}::atom set"} |
2464
f4eba60cbd69
made the fv-definition aggree more with alpha (needed in the support proofs)
Christian Urban <urbanc@in.tum.de>
parents:
2450
diff
changeset
|
249 |
fun fold_append trms = fold_rev (curry mk_append) trms @{term "[]::atom list"} |
2289
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
250 |
|
2389
0f24c961b5f6
introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents:
2384
diff
changeset
|
251 |
fun mk_conj (t1, @{term "True"}) = t1 |
0f24c961b5f6
introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents:
2384
diff
changeset
|
252 |
| mk_conj (@{term "True"}, t2) = t2 |
0f24c961b5f6
introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents:
2384
diff
changeset
|
253 |
| mk_conj (t1, t2) = HOLogic.mk_conj (t1, t2) |
2289
bf748be70109
moved some mk_union and mk_diff into the library
Christian Urban <urbanc@in.tum.de>
parents:
2288
diff
changeset
|
254 |
|
2389
0f24c961b5f6
introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents:
2384
diff
changeset
|
255 |
fun fold_conj trms = fold_rev (curry mk_conj) trms @{term "True"} |
2296 | 256 |
|
2448 | 257 |
|
2625
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
258 |
(* functions for de-Bruijn open terms *) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
259 |
|
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
260 |
fun mk_binop_env tys c (t, u) = |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
261 |
let |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
262 |
val ty = fastype_of1 (tys, t) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
263 |
in |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
264 |
Const (c, [ty, ty] ---> ty) $ t $ u |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
265 |
end |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
266 |
|
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
267 |
fun mk_union_env tys (t1, @{term "{}::atom set"}) = t1 |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
268 |
| mk_union_env tys (@{term "{}::atom set"}, t2) = t2 |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
269 |
| mk_union_env tys (t1, @{term "set ([]::atom list)"}) = t1 |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
270 |
| mk_union_env tys (@{term "set ([]::atom list)"}, t2) = t2 |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
271 |
| mk_union_env tys (t1, t2) = mk_binop_env tys @{const_name "sup"} (t1, t2) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
272 |
|
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
273 |
fun fold_union_env tys trms = fold_left (mk_union_env tys) trms @{term "{}::atom set"} |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
274 |
|
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
275 |
|
2448 | 276 |
(* produces fresh arguments for a term *) |
277 |
||
278 |
fun fresh_args ctxt f = |
|
279 |
f |> fastype_of |
|
280 |
|> binder_types |
|
281 |
|> map (pair "z") |
|
282 |
|> Variable.variant_frees ctxt [f] |
|
283 |
|> map Free |
|
284 |
||
285 |
||
2625
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
286 |
(** some logic operations **) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
287 |
|
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
288 |
(* decompses a formula into params, premises and a conclusion *) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
289 |
fun strip_full_horn trm = |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
290 |
let |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
291 |
fun strip_outer_params (Const ("all", _) $ Abs (a, T, t)) = strip_outer_params t |>> cons (a, T) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
292 |
| strip_outer_params B = ([], B) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
293 |
|
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
294 |
val (params, body) = strip_outer_params trm |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
295 |
val (prems, concl) = Logic.strip_horn body |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
296 |
in |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
297 |
(params, prems, concl) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
298 |
end |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
299 |
|
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
300 |
(* composes a formula out of params, premises and a conclusion *) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
301 |
fun mk_full_horn params prems concl = |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
302 |
Logic.list_implies (prems, concl) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
303 |
|> fold_rev mk_all params |
2448 | 304 |
|
2288
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
305 |
(** datatypes **) |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
306 |
|
2407 | 307 |
(* constructor infos *) |
308 |
type cns_info = (term * typ * typ list * bool list) list |
|
2288
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
309 |
|
2602
bcf558c445a4
moved some code into the nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2593
diff
changeset
|
310 |
(* - term for constructor constant |
bcf558c445a4
moved some code into the nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2593
diff
changeset
|
311 |
- type of the constructor |
bcf558c445a4
moved some code into the nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2593
diff
changeset
|
312 |
- types of the arguments |
bcf558c445a4
moved some code into the nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2593
diff
changeset
|
313 |
- flags indicating whether the argument is recursive |
bcf558c445a4
moved some code into the nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2593
diff
changeset
|
314 |
*) |
bcf558c445a4
moved some code into the nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2593
diff
changeset
|
315 |
|
2288
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
316 |
(* returns the type of the nth datatype *) |
2296 | 317 |
fun all_dtyps descr sorts = |
318 |
map (fn n => Datatype_Aux.typ_of_dtyp descr sorts (Datatype_Aux.DtRec n)) (0 upto (length descr - 1)) |
|
319 |
||
2288
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
320 |
fun nth_dtyp descr sorts n = |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
321 |
Datatype_Aux.typ_of_dtyp descr sorts (Datatype_Aux.DtRec n); |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
322 |
|
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
323 |
(* returns info about constructors in a datatype *) |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
324 |
fun all_dtyp_constrs_info descr = |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
325 |
map (fn (_, (ty, vs, constrs)) => map (pair (ty, vs)) constrs) descr |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
326 |
|
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
327 |
(* returns the constants of the constructors plus the |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
328 |
corresponding type and types of arguments *) |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
329 |
fun all_dtyp_constrs_types descr sorts = |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
330 |
let |
2477 | 331 |
fun aux ((ty_name, vs), (cname, args)) = |
332 |
let |
|
333 |
val vs_tys = map (Datatype_Aux.typ_of_dtyp descr sorts) vs |
|
334 |
val ty = Type (ty_name, vs_tys) |
|
335 |
val arg_tys = map (Datatype_Aux.typ_of_dtyp descr sorts) args |
|
336 |
val is_rec = map Datatype_Aux.is_rec_type args |
|
337 |
in |
|
338 |
(Const (cname, arg_tys ---> ty), ty, arg_tys, is_rec) |
|
339 |
end |
|
2288
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
340 |
in |
2477 | 341 |
map (map aux) (all_dtyp_constrs_info descr) |
2288
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
342 |
end |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
343 |
|
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
344 |
fun nth_dtyp_constrs_types descr sorts n = |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
345 |
nth (all_dtyp_constrs_types descr sorts) n |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
346 |
|
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
347 |
|
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
348 |
(* generates for every datatype a name str ^ dt_name |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
349 |
plus and index for multiple occurences of a string *) |
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
350 |
fun prefix_dt_names descr sorts str = |
2477 | 351 |
let |
352 |
fun get_nth_name (i, _) = |
|
353 |
Datatype_Aux.name_of_typ (nth_dtyp descr sorts i) |
|
354 |
in |
|
355 |
Datatype_Prop.indexify_names |
|
356 |
(map (prefix str o get_nth_name) descr) |
|
357 |
end |
|
2288
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
358 |
|
3b83960f9544
new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents:
1979
diff
changeset
|
359 |
|
2311
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
360 |
|
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
361 |
(** function package tactics **) |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
362 |
|
2304
8a98171ba1fc
all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents:
2296
diff
changeset
|
363 |
fun pat_completeness_simp simps lthy = |
2477 | 364 |
let |
365 |
val simp_set = HOL_basic_ss addsimps (@{thms sum.inject sum.distinct} @ simps) |
|
366 |
in |
|
367 |
Pat_Completeness.pat_completeness_tac lthy 1 |
|
368 |
THEN ALLGOALS (asm_full_simp_tac simp_set) |
|
369 |
end |
|
2304
8a98171ba1fc
all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents:
2296
diff
changeset
|
370 |
|
2630
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
371 |
(* simpset for size goals *) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
372 |
val size_simpset = HOL_ss |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
373 |
addsimprocs Nat_Numeral_Simprocs.cancel_numerals |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
374 |
addsimps @{thms in_measure wf_measure sum.cases add_Suc_right add.right_neutral |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
375 |
zero_less_Suc prod.size(1) mult_Suc_right} |
2557
781fbc8c0591
fixed locally the problem with the function package; all tests work again
Christian Urban <urbanc@in.tum.de>
parents:
2480
diff
changeset
|
376 |
|
2630
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
377 |
val natT = @{typ nat} |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
378 |
|
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
379 |
fun prod_size_const T1 T2 = |
2477 | 380 |
let |
2630
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
381 |
val T1_fun = T1 --> natT |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
382 |
val T2_fun = T2 --> natT |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
383 |
val prodT = HOLogic.mk_prodT (T1, T2) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
384 |
in |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
385 |
Const (@{const_name prod_size}, [T1_fun, T2_fun, prodT] ---> natT) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
386 |
end |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
387 |
|
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
388 |
fun snd_const T1 T2 = |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
389 |
Const ("Product_Type.snd", HOLogic.mk_prodT (T1, T2) --> T2) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
390 |
|
2560
82e37a4595c7
automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents:
2559
diff
changeset
|
391 |
|
2630
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
392 |
fun mk_measure_trm f ctxt T = |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
393 |
HOLogic.dest_setT T |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
394 |
|> fst o HOLogic.dest_prodT |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
395 |
|> f |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
396 |
|> curry (op $) (Const (@{const_name "measure"}, dummyT)) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
397 |
|> Syntax.check_term ctxt |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
398 |
|
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
399 |
(* wf-goal arising in induction_schema *) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
400 |
fun prove_termination_ind ctxt = |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
401 |
let |
2560
82e37a4595c7
automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents:
2559
diff
changeset
|
402 |
fun mk_size_measure T = |
82e37a4595c7
automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents:
2559
diff
changeset
|
403 |
case T of |
2630
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
404 |
(Type (@{type_name Sum_Type.sum}, [T1, T2])) => |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
405 |
SumTree.mk_sumcase T1 T2 natT (mk_size_measure T1) (mk_size_measure T2) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
406 |
| (Type (@{type_name Product_Type.prod}, [T1, T2])) => |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
407 |
HOLogic.mk_comp (mk_size_measure T2, snd_const T1 T2) |
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
parents:
2609
diff
changeset
|
408 |
| _ => HOLogic.size_const T |
2304
8a98171ba1fc
all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents:
2296
diff
changeset
|
409 |
|
2630
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
410 |
val measure_trm = mk_measure_trm (mk_size_measure) ctxt |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
411 |
in |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
412 |
Function_Relation.relation_tac ctxt measure_trm |
2477 | 413 |
end |
2410
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
parents:
2408
diff
changeset
|
414 |
|
2630
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
415 |
(* wf-goal arising in function definitions *) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
416 |
fun prove_termination_fun size_simps ctxt = |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
417 |
let |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
418 |
fun mk_size_measure T = |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
419 |
case T of |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
420 |
(Type (@{type_name Sum_Type.sum}, [T1, T2])) => |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
421 |
SumTree.mk_sumcase T1 T2 natT (mk_size_measure T1) (mk_size_measure T2) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
422 |
| (Type (@{type_name Product_Type.prod}, [T1, T2])) => |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
423 |
prod_size_const T1 T2 $ (mk_size_measure T1) $ (mk_size_measure T2) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
424 |
| _ => HOLogic.size_const T |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
425 |
|
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
426 |
val measure_trm = mk_measure_trm (mk_size_measure) ctxt |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
427 |
|
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
428 |
val tac = |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
429 |
Function_Relation.relation_tac ctxt measure_trm |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
430 |
THEN_ALL_NEW simp_tac (size_simpset addsimps size_simps) |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
431 |
in |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
432 |
Function.prove_termination NONE (HEADGOAL tac) ctxt |
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2625
diff
changeset
|
433 |
end |
2311
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
434 |
|
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
435 |
(** transformations of premises (in inductive proofs) **) |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
436 |
|
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
437 |
(* |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
438 |
given the theorem F[t]; proves the theorem F[f t] |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
439 |
|
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
440 |
- F needs to be monotone |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
441 |
- f returns either SOME for a term it fires on |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
442 |
and NONE elsewhere |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
443 |
*) |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
444 |
fun map_term f t = |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
445 |
(case f t of |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
446 |
NONE => map_term' f t |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
447 |
| x => x) |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
448 |
and map_term' f (t $ u) = |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
449 |
(case (map_term f t, map_term f u) of |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
450 |
(NONE, NONE) => NONE |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
451 |
| (SOME t'', NONE) => SOME (t'' $ u) |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
452 |
| (NONE, SOME u'') => SOME (t $ u'') |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
453 |
| (SOME t'', SOME u'') => SOME (t'' $ u'')) |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
454 |
| map_term' f (Abs (s, T, t)) = |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
455 |
(case map_term f t of |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
456 |
NONE => NONE |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
457 |
| SOME t'' => SOME (Abs (s, T, t''))) |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
458 |
| map_term' _ _ = NONE; |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
459 |
|
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
460 |
fun map_thm_tac ctxt tac thm = |
2477 | 461 |
let |
462 |
val monos = Inductive.get_monos ctxt |
|
463 |
val simps = HOL_basic_ss addsimps @{thms split_def} |
|
464 |
in |
|
465 |
EVERY [cut_facts_tac [thm] 1, etac rev_mp 1, |
|
466 |
REPEAT_DETERM (FIRSTGOAL (simp_tac simps THEN' resolve_tac monos)), |
|
467 |
REPEAT_DETERM (rtac impI 1 THEN (atac 1 ORELSE tac))] |
|
468 |
end |
|
2311
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
469 |
|
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
470 |
fun map_thm ctxt f tac thm = |
2477 | 471 |
let |
472 |
val opt_goal_trm = map_term f (prop_of thm) |
|
473 |
in |
|
474 |
case opt_goal_trm of |
|
475 |
NONE => thm |
|
476 |
| SOME goal => |
|
477 |
Goal.prove ctxt [] [] goal (fn _ => map_thm_tac ctxt tac thm) |
|
478 |
end |
|
2311
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
479 |
|
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
480 |
(* |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
481 |
inductive premises can be of the form |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
482 |
R ... /\ P ...; split_conj_i picks out |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
483 |
the part R or P part |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
484 |
*) |
2480
ac7dff1194e8
introduced a general procedure for structural inductions; simplified reflexivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2477
diff
changeset
|
485 |
fun split_conj1 names (Const (@{const_name "conj"}, _) $ f1 $ _) = |
2311
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
486 |
(case head_of f1 of |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
487 |
Const (name, _) => if member (op =) names name then SOME f1 else NONE |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
488 |
| _ => NONE) |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
489 |
| split_conj1 _ _ = NONE; |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
490 |
|
2446
63c936b09764
updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents:
2420
diff
changeset
|
491 |
fun split_conj2 names (Const (@{const_name "conj"}, _) $ f1 $ f2) = |
2311
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
492 |
(case head_of f1 of |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
493 |
Const (name, _) => if member (op =) names name then SOME f2 else NONE |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
494 |
| _ => NONE) |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
495 |
| split_conj2 _ _ = NONE; |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
496 |
|
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
497 |
fun transform_prem1 ctxt names thm = |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
498 |
map_thm ctxt (split_conj1 names) (etac conjunct1 1) thm |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
499 |
|
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
500 |
fun transform_prem2 ctxt names thm = |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
501 |
map_thm ctxt (split_conj2 names) (etac conjunct2 1) thm |
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
502 |
|
4da5c5c29009
work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2304
diff
changeset
|
503 |
|
2397
c670a849af65
more experiments with lifting
Christian Urban <urbanc@in.tum.de>
parents:
2389
diff
changeset
|
504 |
(* transformes a theorem into one of the object logic *) |
c670a849af65
more experiments with lifting
Christian Urban <urbanc@in.tum.de>
parents:
2389
diff
changeset
|
505 |
val atomize = Conv.fconv_rule Object_Logic.atomize o forall_intr_vars |
c670a849af65
more experiments with lifting
Christian Urban <urbanc@in.tum.de>
parents:
2389
diff
changeset
|
506 |
|
2625
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
507 |
(* applies a tactic to a formula composed of conjunctions *) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
508 |
fun conj_tac tac i = |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
509 |
let |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
510 |
fun select (trm, i) = |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
511 |
case trm of |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
512 |
@{term "Trueprop"} $ t' => select (t', i) |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
513 |
| @{term "op &"} $ _ $ _ => EVERY' [rtac @{thm conjI}, RANGE [conj_tac tac, conj_tac tac]] i |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
514 |
| _ => tac i |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
515 |
in |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
516 |
SUBGOAL select i |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
517 |
end |
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
518 |
|
478c5648e73f
moved generic functions into nominal_library
Christian Urban <urbanc@in.tum.de>
parents:
2620
diff
changeset
|
519 |
|
1833
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
520 |
end (* structure *) |
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
521 |
|
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
522 |
open Nominal_Library; |