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
1979
+ − 4
Basic 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
2593
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 9
val last2: 'a list -> 'a * 'a
2635
+ − 10
val split_last2: 'a list -> 'a list * 'a * 'a
2593
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 11
val order: ('a * 'a -> bool) -> 'a list -> ('a * 'b) list -> 'b list
2635
+ − 12
val order_default: ('a * 'a -> bool) -> 'b -> 'a list -> ('a * 'b) list -> 'b list
2608
+ − 13
val remove_dups: ('a * 'a -> bool) -> 'a list -> 'a list
2619
+ − 14
val map4: ('a -> 'b -> 'c -> 'd -> 'e) -> 'a list -> 'b list -> 'c list -> 'd list -> 'e list
2616
dd7490fdd998
all examples for strong exhausts work; recursive binders need to be treated differently; still unclean version with lots of diagnostic code
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 15
val split_filter: ('a -> bool) -> 'a list -> 'a list * 'a list
2625
+ − 16
val fold_left: ('a * 'a -> 'a) -> 'a list -> 'a -> 'a
2619
+ − 17
2593
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 18
val is_true: term -> bool
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 19
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 20
val dest_listT: typ -> typ
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 21
val dest_fsetT: typ -> typ
2313
+ − 22
2593
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 23
val mk_id: term -> term
2609
666ffc8a92a9
freshness theorem in strong exhausts; (temporarily includes a cheat_tac to make all tests go through)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 24
val mk_all: (string * typ) -> term -> term
2635
+ − 25
val mk_All: (string * typ) -> term -> term
2637
3890483c674f
final version of the ESOP paper; used set+ instead of res as requested by one reviewer
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 26
val mk_exists: (string * typ) -> term -> term
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>
diff
changeset
+ − 27
2410
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 28
val sum_case_const: typ -> typ -> typ -> term
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 29
val mk_sum_case: term -> term -> term
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 30
1833
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 31
val mk_minus: term -> term
1896
996d4411e95e
tuned; fleshed out some library functions about permutations; closed Datatype_Aux structure (increases readability)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 32
val mk_plus: term -> term -> term
996d4411e95e
tuned; fleshed out some library functions about permutations; closed Datatype_Aux structure (increases readability)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 33
1899
+ − 34
val perm_ty: typ -> typ
2635
+ − 35
val perm_const: typ -> term
1871
+ − 36
val mk_perm_ty: typ -> term -> term -> term
1833
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 37
val mk_perm: term -> term -> term
1834
+ − 38
val dest_perm: term -> term * term
+ − 39
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>
diff
changeset
+ − 40
val mk_sort_of: term -> term
1979
+ − 41
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>
diff
changeset
+ − 42
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>
diff
changeset
+ − 43
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>
diff
changeset
+ − 44
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>
diff
changeset
+ − 45
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 46
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>
diff
changeset
+ − 47
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>
diff
changeset
+ − 48
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>
diff
changeset
+ − 49
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>
diff
changeset
+ − 50
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>
diff
changeset
+ − 51
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>
diff
changeset
+ − 52
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 53
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>
diff
changeset
+ − 54
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>
diff
changeset
+ − 55
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>
diff
changeset
+ − 56
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>
diff
changeset
+ − 57
2608
+ − 58
val to_set_ty: typ -> term -> term
+ − 59
val to_set: term -> term
+ − 60
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 61
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>
diff
changeset
+ − 62
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>
diff
changeset
+ − 63
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>
diff
changeset
+ − 64
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>
diff
changeset
+ − 65
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>
diff
changeset
+ − 66
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>
diff
changeset
+ − 67
2608
+ − 68
val fresh_star_ty: typ -> typ
+ − 69
val fresh_star_const: typ -> term
+ − 70
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>
diff
changeset
+ − 71
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>
diff
changeset
+ − 72
1979
+ − 73
val supp_ty: typ -> typ
2296
+ − 74
val supp_const: typ -> term
1979
+ − 75
val mk_supp_ty: typ -> term -> term
+ − 76
val mk_supp: term -> term
+ − 77
2475
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 78
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>
diff
changeset
+ − 79
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>
diff
changeset
+ − 80
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>
diff
changeset
+ − 81
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>
diff
changeset
+ − 82
2448
+ − 83
val supports_const: typ -> term
+ − 84
val mk_supports_ty: typ -> term -> term -> term
+ − 85
val mk_supports: term -> term -> term
+ − 86
2450
+ − 87
val finite_const: typ -> term
+ − 88
val mk_finite_ty: typ -> term -> term
+ − 89
val mk_finite: term -> term
+ − 90
1834
+ − 91
val mk_equiv: thm -> thm
+ − 92
val safe_mk_equiv: thm -> thm
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>
diff
changeset
+ − 93
2289
+ − 94
val mk_diff: term * term -> term
2296
+ − 95
val mk_append: term * term -> term
2289
+ − 96
val mk_union: term * term -> term
+ − 97
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>
diff
changeset
+ − 98
val fold_append: term list -> term
2389
+ − 99
val mk_conj: term * term -> term
+ − 100
val fold_conj: term list -> term
2289
+ − 101
2625
+ − 102
(* functions for de-Bruijn open terms *)
+ − 103
val mk_binop_env: typ list -> string -> term * term -> term
+ − 104
val mk_union_env: typ list -> term * term -> term
+ − 105
val fold_union_env: typ list -> term list -> term
+ − 106
2448
+ − 107
(* fresh arguments for a term *)
+ − 108
val fresh_args: Proof.context -> term -> term list
+ − 109
2625
+ − 110
(* some logic operations *)
+ − 111
val strip_full_horn: term -> (string * typ) list * term list * term
+ − 112
val mk_full_horn: (string * typ) list -> term list -> term -> term
+ − 113
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>
diff
changeset
+ − 114
(* datatype operations *)
2407
+ − 115
type cns_info = (term * typ * typ list * bool list) list
+ − 116
2296
+ − 117
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>
diff
changeset
+ − 118
val nth_dtyp: Datatype_Aux.descr -> (string * sort) list -> int -> typ
2407
+ − 119
val all_dtyp_constrs_types: Datatype_Aux.descr -> (string * sort) list -> cns_info list
+ − 120
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>
diff
changeset
+ − 121
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>
diff
changeset
+ − 122
2304
+ − 123
(* tactics for function package *)
2630
+ − 124
val size_simpset: simpset
2304
+ − 125
val pat_completeness_simp: thm list -> Proof.context -> tactic
2630
+ − 126
val prove_termination_ind: Proof.context -> int -> tactic
+ − 127
val prove_termination_fun: thm list -> Proof.context -> Function.info * local_theory
2304
+ − 128
2311
+ − 129
(* transformations of premises in inductions *)
+ − 130
val transform_prem1: Proof.context -> string list -> thm -> thm
+ − 131
val transform_prem2: Proof.context -> string list -> thm -> thm
2397
+ − 132
+ − 133
(* transformation into the object logic *)
+ − 134
val atomize: thm -> thm
2398
+ − 135
2625
+ − 136
(* applies a tactic to a formula composed of conjunctions *)
+ − 137
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
+ − 138
end
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 139
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 140
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 141
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
+ − 142
struct
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 143
2635
+ − 144
(* orders an AList according to keys - every key needs to be there *)
2593
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 145
fun order eq keys list =
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 146
map (the o AList.lookup eq list) keys
2480
ac7dff1194e8
introduced a general procedure for structural inductions; simplified reflexivity proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 147
2635
+ − 148
(* orders an AList according to keys - returns default for non-existing keys *)
+ − 149
fun order_default eq default keys list =
+ − 150
map (the_default default o AList.lookup eq list) keys
+ − 151
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 152
(* remove duplicates *)
2608
+ − 153
fun remove_dups eq [] = []
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 154
| remove_dups eq (x :: xs) =
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 155
if member eq xs x
2608
+ − 156
then remove_dups eq xs
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 157
else x :: remove_dups eq xs
2608
+ − 158
2313
+ − 159
fun last2 [] = raise Empty
+ − 160
| last2 [_] = raise Empty
2375
+ − 161
| last2 [x, y] = (x, y)
2313
+ − 162
| last2 (_ :: xs) = last2 xs
+ − 163
2635
+ − 164
fun split_last2 xs =
+ − 165
let
+ − 166
val (xs', x) = split_last xs
+ − 167
val (xs'', y) = split_last xs'
+ − 168
in
+ − 169
(xs'', y, x)
+ − 170
end
+ − 171
2619
+ − 172
fun map4 _ [] [] [] [] = []
+ − 173
| map4 f (x :: xs) (y :: ys) (z :: zs) (u :: us) = f x y z u :: map4 f xs ys zs us
2613
+ − 174
2616
dd7490fdd998
all examples for strong exhausts work; recursive binders need to be treated differently; still unclean version with lots of diagnostic code
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 175
fun split_filter f [] = ([], [])
dd7490fdd998
all examples for strong exhausts work; recursive binders need to be treated differently; still unclean version with lots of diagnostic code
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 176
| split_filter f (x :: xs) =
dd7490fdd998
all examples for strong exhausts work; recursive binders need to be treated differently; still unclean version with lots of diagnostic code
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 177
let
dd7490fdd998
all examples for strong exhausts work; recursive binders need to be treated differently; still unclean version with lots of diagnostic code
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 178
val (r, l) = split_filter f xs
dd7490fdd998
all examples for strong exhausts work; recursive binders need to be treated differently; still unclean version with lots of diagnostic code
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 179
in
dd7490fdd998
all examples for strong exhausts work; recursive binders need to be treated differently; still unclean version with lots of diagnostic code
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 180
if f x
dd7490fdd998
all examples for strong exhausts work; recursive binders need to be treated differently; still unclean version with lots of diagnostic code
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 181
then (x :: r, l)
dd7490fdd998
all examples for strong exhausts work; recursive binders need to be treated differently; still unclean version with lots of diagnostic code
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 182
else (r, x :: l)
dd7490fdd998
all examples for strong exhausts work; recursive binders need to be treated differently; still unclean version with lots of diagnostic code
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 183
end
2613
+ − 184
2625
+ − 185
(* to be used with left-infix binop-operations *)
+ − 186
fun fold_left f [] z = z
+ − 187
| fold_left f [x] z = x
+ − 188
| fold_left f (x :: y :: xs) z = fold_left f (f (x, y) :: xs) z
+ − 189
+ − 190
2613
+ − 191
2593
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 192
fun is_true @{term "Trueprop True"} = true
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 193
| is_true _ = false
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 194
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>
diff
changeset
+ − 195
fun dest_listT (Type (@{type_name list}, [T])) = T
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>
diff
changeset
+ − 196
| dest_listT T = raise TYPE ("dest_listT: list type expected", [T], [])
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>
diff
changeset
+ − 197
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 198
fun dest_fsetT (Type (@{type_name fset}, [T])) = T
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 199
| dest_fsetT T = raise TYPE ("dest_fsetT: fset type expected", [T], []);
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 200
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 201
2620
+ − 202
fun mk_id trm = HOLogic.id_const (fastype_of trm) $ trm
2593
25dcb2b1329e
ordered raw_bn_info to agree with the order of the raw_bn_functions; started alpha_bn proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 203
2609
666ffc8a92a9
freshness theorem in strong exhausts; (temporarily includes a cheat_tac to make all tests go through)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 204
fun mk_all (a, T) t = Term.all T $ Abs (a, T, t)
666ffc8a92a9
freshness theorem in strong exhausts; (temporarily includes a cheat_tac to make all tests go through)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 205
2635
+ − 206
fun mk_All (a, T) t = HOLogic.all_const T $ Abs (a, T, t)
+ − 207
2637
3890483c674f
final version of the ESOP paper; used set+ instead of res as requested by one reviewer
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 208
fun mk_exists (a, T) t = HOLogic.exists_const T $ Abs (a, T, t)
3890483c674f
final version of the ESOP paper; used set+ instead of res as requested by one reviewer
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 209
2410
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 210
fun sum_case_const ty1 ty2 ty3 =
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 211
Const (@{const_name sum_case}, [ty1 --> ty3, ty2 --> ty3, Type (@{type_name sum}, [ty1, ty2])] ---> ty3)
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 212
2410
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 213
fun mk_sum_case trm1 trm2 =
2477
+ − 214
let
+ − 215
val ([ty1], ty3) = strip_type (fastype_of trm1)
+ − 216
val ty2 = domain_type (fastype_of trm2)
+ − 217
in
+ − 218
sum_case_const ty1 ty2 ty3 $ trm1 $ trm2
+ − 219
end
2410
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 220
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 221
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 222
2399
+ − 223
fun mk_minus p = @{term "uminus::perm => perm"} $ p
1896
996d4411e95e
tuned; fleshed out some library functions about permutations; closed Datatype_Aux structure (increases readability)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 224
2399
+ − 225
fun mk_plus p q = @{term "plus::perm => perm => perm"} $ p $ q
+ − 226
+ − 227
fun perm_ty ty = @{typ "perm"} --> ty --> ty
2635
+ − 228
fun perm_const ty = Const (@{const_name "permute"}, perm_ty ty)
+ − 229
fun mk_perm_ty ty p trm = perm_const ty $ p $ trm
2399
+ − 230
fun mk_perm p trm = mk_perm_ty (fastype_of trm) p trm
1833
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 231
1834
+ − 232
fun dest_perm (Const (@{const_name "permute"}, _) $ p $ t) = (p, t)
1979
+ − 233
| dest_perm t = raise TERM ("dest_perm", [t]);
1833
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 234
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>
diff
changeset
+ − 235
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>
diff
changeset
+ − 236
1979
+ − 237
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>
diff
changeset
+ − 238
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>
diff
changeset
+ − 239
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>
diff
changeset
+ − 240
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>
diff
changeset
+ − 241
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 242
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>
diff
changeset
+ − 243
let
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 244
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>
diff
changeset
+ − 245
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>
diff
changeset
+ − 246
in
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 247
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>
diff
changeset
+ − 248
end
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 249
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 250
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>
diff
changeset
+ − 251
let
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 252
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>
diff
changeset
+ − 253
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>
diff
changeset
+ − 254
in
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 255
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>
diff
changeset
+ − 256
end
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 257
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 258
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>
diff
changeset
+ − 259
let
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 260
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>
diff
changeset
+ − 261
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>
diff
changeset
+ − 262
in
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 263
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>
diff
changeset
+ − 264
end
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 265
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 266
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>
diff
changeset
+ − 267
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>
diff
changeset
+ − 268
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>
diff
changeset
+ − 269
2608
+ − 270
(* coerces a list into a set *)
+ − 271
+ − 272
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>
diff
changeset
+ − 273
case ty of
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 274
@{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>
diff
changeset
+ − 275
| @{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>
diff
changeset
+ − 276
| _ => t
2608
+ − 277
+ − 278
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>
diff
changeset
+ − 279
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 280
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 281
(* 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>
diff
changeset
+ − 282
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>
diff
changeset
+ − 283
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>
diff
changeset
+ − 284
2608
+ − 285
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>
diff
changeset
+ − 286
| 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>
diff
changeset
+ − 287
2608
+ − 288
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>
diff
changeset
+ − 289
| 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>
diff
changeset
+ − 290
2608
+ − 291
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>
diff
changeset
+ − 292
| 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>
diff
changeset
+ − 293
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 294
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 295
(* 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>
diff
changeset
+ − 296
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>
diff
changeset
+ − 297
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>
diff
changeset
+ − 298
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>
diff
changeset
+ − 299
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>
diff
changeset
+ − 300
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>
diff
changeset
+ − 301
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>
diff
changeset
+ − 302
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>
diff
changeset
+ − 303
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>
diff
changeset
+ − 304
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>
diff
changeset
+ − 305
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>
diff
changeset
+ − 306
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>
diff
changeset
+ − 307
2607
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 308
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>
diff
changeset
+ − 309
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>
diff
changeset
+ − 310
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>
diff
changeset
+ − 311
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>
diff
changeset
+ − 312
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>
diff
changeset
+ − 313
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>
diff
changeset
+ − 314
then @{term "fset :: atom fset => atom set"} $ mk_atom_fset_ty ty t
2608
+ − 315
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>
diff
changeset
+ − 316
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>
diff
changeset
+ − 317
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>
diff
changeset
+ − 318
7430e07a5d61
moved setify and listify functions into the library; introduced versions that have a type argument
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 319
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>
diff
changeset
+ − 320
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>
diff
changeset
+ − 321
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>
diff
changeset
+ − 322
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>
diff
changeset
+ − 323
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>
diff
changeset
+ − 324
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>
diff
changeset
+ − 325
2611
3d101f2f817c
simple cases for strong inducts done; infrastructure for the difficult ones is there
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 326
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>
diff
changeset
+ − 327
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>
diff
changeset
+ − 328
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>
diff
changeset
+ − 329
2608
+ − 330
fun fresh_star_ty ty = [@{typ "atom set"}, ty] ---> @{typ bool}
+ − 331
fun fresh_star_const ty = Const (@{const_name fresh_star}, fresh_star_ty ty)
+ − 332
fun mk_fresh_star_ty ty t1 t2 = fresh_star_const ty $ t1 $ t2
+ − 333
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>
diff
changeset
+ − 334
1979
+ − 335
fun supp_ty ty = ty --> @{typ "atom set"};
2450
+ − 336
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>
diff
changeset
+ − 337
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>
diff
changeset
+ − 338
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>
diff
changeset
+ − 339
486d4647bb37
supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 340
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>
diff
changeset
+ − 341
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>
diff
changeset
+ − 342
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>
diff
changeset
+ − 343
fun mk_supp_rel r t = mk_supp_rel_ty (fastype_of t) r t
1979
+ − 344
2450
+ − 345
fun supports_const ty = Const (@{const_name supports}, [@{typ "atom set"}, ty] ---> @{typ bool});
2448
+ − 346
fun mk_supports_ty ty t1 t2 = supports_const ty $ t1 $ t2;
+ − 347
fun mk_supports t1 t2 = mk_supports_ty (fastype_of t2) t1 t2;
1979
+ − 348
2450
+ − 349
fun finite_const ty = Const (@{const_name finite}, ty --> @{typ bool})
+ − 350
fun mk_finite_ty ty t = finite_const ty $ t
+ − 351
fun mk_finite t = mk_finite_ty (fastype_of t) t
+ − 352
+ − 353
1834
+ − 354
fun mk_equiv r = r RS @{thm eq_reflection};
+ − 355
fun safe_mk_equiv r = mk_equiv r handle Thm.THM _ => r;
1833
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 356
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>
diff
changeset
+ − 357
2296
+ − 358
(* functions that construct differences, appends and unions
+ − 359
but avoid producing empty atom sets or empty atom lists *)
2289
+ − 360
+ − 361
fun mk_diff (@{term "{}::atom set"}, _) = @{term "{}::atom set"}
+ − 362
| 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>
diff
changeset
+ − 363
| 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>
diff
changeset
+ − 364
| mk_diff (t1, @{term "set ([]::atom list)"}) = t1
2289
+ − 365
| mk_diff (t1, t2) = HOLogic.mk_binop @{const_name minus} (t1, t2)
+ − 366
2389
+ − 367
fun mk_append (t1, @{term "[]::atom list"}) = t1
2296
+ − 368
| mk_append (@{term "[]::atom list"}, t2) = t2
+ − 369
| mk_append (t1, t2) = HOLogic.mk_binop @{const_name "append"} (t1, t2)
+ − 370
2389
+ − 371
fun mk_union (t1, @{term "{}::atom set"}) = t1
2289
+ − 372
| 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>
diff
changeset
+ − 373
| 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>
diff
changeset
+ − 374
| mk_union (@{term "set ([]::atom list)"}, t2) = t2
2296
+ − 375
| mk_union (t1, t2) = HOLogic.mk_binop @{const_name "sup"} (t1, t2)
2289
+ − 376
2384
+ − 377
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>
diff
changeset
+ − 378
fun fold_append trms = fold_rev (curry mk_append) trms @{term "[]::atom list"}
2289
+ − 379
2389
+ − 380
fun mk_conj (t1, @{term "True"}) = t1
+ − 381
| mk_conj (@{term "True"}, t2) = t2
+ − 382
| mk_conj (t1, t2) = HOLogic.mk_conj (t1, t2)
2289
+ − 383
2389
+ − 384
fun fold_conj trms = fold_rev (curry mk_conj) trms @{term "True"}
2296
+ − 385
2448
+ − 386
2625
+ − 387
(* functions for de-Bruijn open terms *)
+ − 388
+ − 389
fun mk_binop_env tys c (t, u) =
+ − 390
let
+ − 391
val ty = fastype_of1 (tys, t)
+ − 392
in
+ − 393
Const (c, [ty, ty] ---> ty) $ t $ u
+ − 394
end
+ − 395
+ − 396
fun mk_union_env tys (t1, @{term "{}::atom set"}) = t1
+ − 397
| mk_union_env tys (@{term "{}::atom set"}, t2) = t2
+ − 398
| mk_union_env tys (t1, @{term "set ([]::atom list)"}) = t1
+ − 399
| mk_union_env tys (@{term "set ([]::atom list)"}, t2) = t2
+ − 400
| mk_union_env tys (t1, t2) = mk_binop_env tys @{const_name "sup"} (t1, t2)
+ − 401
+ − 402
fun fold_union_env tys trms = fold_left (mk_union_env tys) trms @{term "{}::atom set"}
+ − 403
+ − 404
2448
+ − 405
(* produces fresh arguments for a term *)
+ − 406
+ − 407
fun fresh_args ctxt f =
+ − 408
f |> fastype_of
+ − 409
|> binder_types
+ − 410
|> map (pair "z")
+ − 411
|> Variable.variant_frees ctxt [f]
+ − 412
|> map Free
+ − 413
+ − 414
2625
+ − 415
(** some logic operations **)
+ − 416
+ − 417
(* decompses a formula into params, premises and a conclusion *)
+ − 418
fun strip_full_horn trm =
+ − 419
let
+ − 420
fun strip_outer_params (Const ("all", _) $ Abs (a, T, t)) = strip_outer_params t |>> cons (a, T)
+ − 421
| strip_outer_params B = ([], B)
+ − 422
+ − 423
val (params, body) = strip_outer_params trm
+ − 424
val (prems, concl) = Logic.strip_horn body
+ − 425
in
+ − 426
(params, prems, concl)
+ − 427
end
+ − 428
+ − 429
(* composes a formula out of params, premises and a conclusion *)
+ − 430
fun mk_full_horn params prems concl =
+ − 431
Logic.list_implies (prems, concl)
+ − 432
|> fold_rev mk_all params
2448
+ − 433
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>
diff
changeset
+ − 434
(** 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>
diff
changeset
+ − 435
2407
+ − 436
(* constructor infos *)
+ − 437
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>
diff
changeset
+ − 438
2602
+ − 439
(* - term for constructor constant
+ − 440
- type of the constructor
+ − 441
- types of the arguments
+ − 442
- flags indicating whether the argument is recursive
+ − 443
*)
+ − 444
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>
diff
changeset
+ − 445
(* returns the type of the nth datatype *)
2296
+ − 446
fun all_dtyps descr sorts =
+ − 447
map (fn n => Datatype_Aux.typ_of_dtyp descr sorts (Datatype_Aux.DtRec n)) (0 upto (length descr - 1))
+ − 448
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>
diff
changeset
+ − 449
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>
diff
changeset
+ − 450
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>
diff
changeset
+ − 451
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>
diff
changeset
+ − 452
(* 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>
diff
changeset
+ − 453
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>
diff
changeset
+ − 454
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>
diff
changeset
+ − 455
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>
diff
changeset
+ − 456
(* 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>
diff
changeset
+ − 457
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>
diff
changeset
+ − 458
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>
diff
changeset
+ − 459
let
2477
+ − 460
fun aux ((ty_name, vs), (cname, args)) =
+ − 461
let
+ − 462
val vs_tys = map (Datatype_Aux.typ_of_dtyp descr sorts) vs
+ − 463
val ty = Type (ty_name, vs_tys)
+ − 464
val arg_tys = map (Datatype_Aux.typ_of_dtyp descr sorts) args
+ − 465
val is_rec = map Datatype_Aux.is_rec_type args
+ − 466
in
+ − 467
(Const (cname, arg_tys ---> ty), ty, arg_tys, is_rec)
+ − 468
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>
diff
changeset
+ − 469
in
2477
+ − 470
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>
diff
changeset
+ − 471
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>
diff
changeset
+ − 472
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>
diff
changeset
+ − 473
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>
diff
changeset
+ − 474
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>
diff
changeset
+ − 475
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>
diff
changeset
+ − 476
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>
diff
changeset
+ − 477
(* 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>
diff
changeset
+ − 478
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>
diff
changeset
+ − 479
fun prefix_dt_names descr sorts str =
2477
+ − 480
let
+ − 481
fun get_nth_name (i, _) =
+ − 482
Datatype_Aux.name_of_typ (nth_dtyp descr sorts i)
+ − 483
in
+ − 484
Datatype_Prop.indexify_names
+ − 485
(map (prefix str o get_nth_name) descr)
+ − 486
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>
diff
changeset
+ − 487
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>
diff
changeset
+ − 488
2311
+ − 489
+ − 490
(** function package tactics **)
+ − 491
2304
+ − 492
fun pat_completeness_simp simps lthy =
2477
+ − 493
let
+ − 494
val simp_set = HOL_basic_ss addsimps (@{thms sum.inject sum.distinct} @ simps)
+ − 495
in
+ − 496
Pat_Completeness.pat_completeness_tac lthy 1
+ − 497
THEN ALLGOALS (asm_full_simp_tac simp_set)
+ − 498
end
2304
+ − 499
2630
+ − 500
(* simpset for size goals *)
+ − 501
val size_simpset = HOL_ss
+ − 502
addsimprocs Nat_Numeral_Simprocs.cancel_numerals
+ − 503
addsimps @{thms in_measure wf_measure sum.cases add_Suc_right add.right_neutral
+ − 504
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>
diff
changeset
+ − 505
2630
+ − 506
val natT = @{typ nat}
+ − 507
+ − 508
fun prod_size_const T1 T2 =
2477
+ − 509
let
2630
+ − 510
val T1_fun = T1 --> natT
+ − 511
val T2_fun = T2 --> natT
+ − 512
val prodT = HOLogic.mk_prodT (T1, T2)
+ − 513
in
+ − 514
Const (@{const_name prod_size}, [T1_fun, T2_fun, prodT] ---> natT)
+ − 515
end
+ − 516
+ − 517
fun snd_const T1 T2 =
+ − 518
Const ("Product_Type.snd", HOLogic.mk_prodT (T1, T2) --> T2)
+ − 519
2560
+ − 520
2630
+ − 521
fun mk_measure_trm f ctxt T =
+ − 522
HOLogic.dest_setT T
+ − 523
|> fst o HOLogic.dest_prodT
+ − 524
|> f
+ − 525
|> curry (op $) (Const (@{const_name "measure"}, dummyT))
+ − 526
|> Syntax.check_term ctxt
+ − 527
+ − 528
(* wf-goal arising in induction_schema *)
+ − 529
fun prove_termination_ind ctxt =
+ − 530
let
2560
+ − 531
fun mk_size_measure T =
+ − 532
case T of
2630
+ − 533
(Type (@{type_name Sum_Type.sum}, [T1, T2])) =>
+ − 534
SumTree.mk_sumcase T1 T2 natT (mk_size_measure T1) (mk_size_measure T2)
+ − 535
| (Type (@{type_name Product_Type.prod}, [T1, T2])) =>
+ − 536
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>
diff
changeset
+ − 537
| _ => HOLogic.size_const T
2304
+ − 538
2630
+ − 539
val measure_trm = mk_measure_trm (mk_size_measure) ctxt
+ − 540
in
+ − 541
Function_Relation.relation_tac ctxt measure_trm
2477
+ − 542
end
2410
2bbdb9c427b5
improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 543
2630
+ − 544
(* wf-goal arising in function definitions *)
+ − 545
fun prove_termination_fun size_simps ctxt =
+ − 546
let
+ − 547
fun mk_size_measure T =
+ − 548
case T of
+ − 549
(Type (@{type_name Sum_Type.sum}, [T1, T2])) =>
+ − 550
SumTree.mk_sumcase T1 T2 natT (mk_size_measure T1) (mk_size_measure T2)
+ − 551
| (Type (@{type_name Product_Type.prod}, [T1, T2])) =>
+ − 552
prod_size_const T1 T2 $ (mk_size_measure T1) $ (mk_size_measure T2)
+ − 553
| _ => HOLogic.size_const T
+ − 554
+ − 555
val measure_trm = mk_measure_trm (mk_size_measure) ctxt
+ − 556
+ − 557
val tac =
+ − 558
Function_Relation.relation_tac ctxt measure_trm
+ − 559
THEN_ALL_NEW simp_tac (size_simpset addsimps size_simps)
+ − 560
in
+ − 561
Function.prove_termination NONE (HEADGOAL tac) ctxt
+ − 562
end
2311
+ − 563
+ − 564
(** transformations of premises (in inductive proofs) **)
+ − 565
+ − 566
(*
+ − 567
given the theorem F[t]; proves the theorem F[f t]
+ − 568
+ − 569
- F needs to be monotone
+ − 570
- f returns either SOME for a term it fires on
+ − 571
and NONE elsewhere
+ − 572
*)
+ − 573
fun map_term f t =
+ − 574
(case f t of
+ − 575
NONE => map_term' f t
+ − 576
| x => x)
+ − 577
and map_term' f (t $ u) =
+ − 578
(case (map_term f t, map_term f u) of
+ − 579
(NONE, NONE) => NONE
+ − 580
| (SOME t'', NONE) => SOME (t'' $ u)
+ − 581
| (NONE, SOME u'') => SOME (t $ u'')
+ − 582
| (SOME t'', SOME u'') => SOME (t'' $ u''))
+ − 583
| map_term' f (Abs (s, T, t)) =
+ − 584
(case map_term f t of
+ − 585
NONE => NONE
+ − 586
| SOME t'' => SOME (Abs (s, T, t'')))
+ − 587
| map_term' _ _ = NONE;
+ − 588
+ − 589
fun map_thm_tac ctxt tac thm =
2477
+ − 590
let
+ − 591
val monos = Inductive.get_monos ctxt
+ − 592
val simps = HOL_basic_ss addsimps @{thms split_def}
+ − 593
in
+ − 594
EVERY [cut_facts_tac [thm] 1, etac rev_mp 1,
+ − 595
REPEAT_DETERM (FIRSTGOAL (simp_tac simps THEN' resolve_tac monos)),
+ − 596
REPEAT_DETERM (rtac impI 1 THEN (atac 1 ORELSE tac))]
+ − 597
end
2311
+ − 598
+ − 599
fun map_thm ctxt f tac thm =
2477
+ − 600
let
+ − 601
val opt_goal_trm = map_term f (prop_of thm)
+ − 602
in
+ − 603
case opt_goal_trm of
+ − 604
NONE => thm
+ − 605
| SOME goal =>
+ − 606
Goal.prove ctxt [] [] goal (fn _ => map_thm_tac ctxt tac thm)
+ − 607
end
2311
+ − 608
+ − 609
(*
+ − 610
inductive premises can be of the form
+ − 611
R ... /\ P ...; split_conj_i picks out
+ − 612
the part R or P part
+ − 613
*)
2480
ac7dff1194e8
introduced a general procedure for structural inductions; simplified reflexivity proof
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 614
fun split_conj1 names (Const (@{const_name "conj"}, _) $ f1 $ _) =
2311
+ − 615
(case head_of f1 of
+ − 616
Const (name, _) => if member (op =) names name then SOME f1 else NONE
+ − 617
| _ => NONE)
+ − 618
| split_conj1 _ _ = NONE;
+ − 619
2446
+ − 620
fun split_conj2 names (Const (@{const_name "conj"}, _) $ f1 $ f2) =
2311
+ − 621
(case head_of f1 of
+ − 622
Const (name, _) => if member (op =) names name then SOME f2 else NONE
+ − 623
| _ => NONE)
+ − 624
| split_conj2 _ _ = NONE;
+ − 625
+ − 626
fun transform_prem1 ctxt names thm =
+ − 627
map_thm ctxt (split_conj1 names) (etac conjunct1 1) thm
+ − 628
+ − 629
fun transform_prem2 ctxt names thm =
+ − 630
map_thm ctxt (split_conj2 names) (etac conjunct2 1) thm
+ − 631
+ − 632
2397
+ − 633
(* transformes a theorem into one of the object logic *)
+ − 634
val atomize = Conv.fconv_rule Object_Logic.atomize o forall_intr_vars
+ − 635
2625
+ − 636
(* applies a tactic to a formula composed of conjunctions *)
+ − 637
fun conj_tac tac i =
+ − 638
let
+ − 639
fun select (trm, i) =
+ − 640
case trm of
+ − 641
@{term "Trueprop"} $ t' => select (t', i)
+ − 642
| @{term "op &"} $ _ $ _ => EVERY' [rtac @{thm conjI}, RANGE [conj_tac tac, conj_tac tac]] i
+ − 643
| _ => tac i
+ − 644
in
+ − 645
SUBGOAL select i
+ − 646
end
+ − 647
+ − 648
1833
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 649
end (* structure *)
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 650
2050b5723c04
added a library for basic nominal functions; separated nominal_eqvt file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
+ − 651
open Nominal_Library;