author | haftmann |
Thu, 30 Jul 2009 13:52:17 +0200 | |
changeset 32339 | 40612b7ace87 |
parent 32287 | 65d5c5b30747 |
child 32342 | 3fabf5b5fc83 |
permissions | -rw-r--r-- |
923 | 1 |
(* Title: HOL/hologic.ML |
2 |
Author: Lawrence C Paulson and Markus Wenzel |
|
3 |
||
4 |
Abstract syntax operations for HOL. |
|
5 |
*) |
|
6 |
||
7 |
signature HOLOGIC = |
|
8 |
sig |
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
9 |
val typeS: sort |
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
10 |
val typeT: typ |
8275 | 11 |
val boolN: string |
923 | 12 |
val boolT: typ |
30450 | 13 |
val Trueprop: term |
14 |
val mk_Trueprop: term -> term |
|
15 |
val dest_Trueprop: term -> term |
|
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
16 |
val true_const: term |
7073 | 17 |
val false_const: term |
923 | 18 |
val mk_setT: typ -> typ |
19 |
val dest_setT: typ -> typ |
|
30450 | 20 |
val Collect_const: typ -> term |
21 |
val mk_Collect: string * typ * term -> term |
|
22 |
val mk_mem: term * term -> term |
|
23 |
val dest_mem: term -> term * term |
|
24 |
val mk_set: typ -> term list -> term |
|
25 |
val dest_set: term -> term list |
|
26 |
val mk_UNIV: typ -> term |
|
23555
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
27 |
val conj_intr: thm -> thm -> thm |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
28 |
val conj_elim: thm -> thm * thm |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
29 |
val conj_elims: thm -> thm list |
923 | 30 |
val conj: term |
31 |
val disj: term |
|
32 |
val imp: term |
|
8429 | 33 |
val Not: term |
7690 | 34 |
val mk_conj: term * term -> term |
35 |
val mk_disj: term * term -> term |
|
36 |
val mk_imp: term * term -> term |
|
16835 | 37 |
val mk_not: term -> term |
15151 | 38 |
val dest_conj: term -> term list |
15945 | 39 |
val dest_disj: term -> term list |
24958 | 40 |
val disjuncts: term -> term list |
4571 | 41 |
val dest_imp: term -> term * term |
15151 | 42 |
val dest_not: term -> term |
923 | 43 |
val eq_const: typ -> term |
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
44 |
val mk_eq: term * term -> term |
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
45 |
val dest_eq: term -> term * term |
923 | 46 |
val all_const: typ -> term |
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
47 |
val mk_all: string * typ * term -> term |
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
48 |
val list_all: (string * typ) list * term -> term |
923 | 49 |
val exists_const: typ -> term |
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
50 |
val mk_exists: string * typ * term -> term |
15945 | 51 |
val choice_const: typ -> term |
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
52 |
val class_eq: string |
2510 | 53 |
val mk_binop: string -> term * term -> term |
54 |
val mk_binrel: string -> term * term -> term |
|
55 |
val dest_bin: string -> typ -> term -> term * term |
|
4571 | 56 |
val unitT: typ |
9362 | 57 |
val is_unitT: typ -> bool |
4571 | 58 |
val unit: term |
59 |
val is_unit: term -> bool |
|
60 |
val mk_prodT: typ * typ -> typ |
|
61 |
val dest_prodT: typ -> typ * typ |
|
14048 | 62 |
val pair_const: typ -> typ -> term |
4571 | 63 |
val mk_prod: term * term -> term |
64 |
val dest_prod: term -> term * term |
|
65 |
val mk_fst: term -> term |
|
66 |
val mk_snd: term -> term |
|
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
67 |
val split_const: typ * typ * typ -> term |
18285 | 68 |
val mk_split: term -> term |
32287
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
69 |
val flatten_tupleT: typ -> typ list |
23745 | 70 |
val mk_tupleT: int list list -> typ list -> typ |
32287
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
71 |
val strip_tupleT: int list list -> typ -> typ list |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
72 |
val flat_tupleT_paths: typ -> int list list |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
73 |
val mk_tuple: int list list -> typ -> term list -> term |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
74 |
val dest_tuple: int list list -> term -> term list |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
75 |
val flat_tuple_paths: term -> int list list |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
76 |
val mk_splits: int list list -> typ -> typ -> term -> term |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
77 |
val strip_splits: term -> term * typ list * int list list |
5207 | 78 |
val natT: typ |
79 |
val zero: term |
|
80 |
val is_zero: term -> bool |
|
81 |
val mk_Suc: term -> term |
|
82 |
val dest_Suc: term -> term |
|
21621 | 83 |
val Suc_zero: term |
24630
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
wenzelm
parents:
23745
diff
changeset
|
84 |
val mk_nat: int -> term |
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
wenzelm
parents:
23745
diff
changeset
|
85 |
val dest_nat: term -> int |
22994 | 86 |
val class_size: string |
87 |
val size_const: typ -> term |
|
31205
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
88 |
val code_numeralT: typ |
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
89 |
val intT: typ |
7073 | 90 |
val pls_const: term |
91 |
val min_const: term |
|
26086
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
92 |
val bit0_const: term |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
93 |
val bit1_const: term |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
94 |
val mk_bit: int -> term |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
95 |
val dest_bit: term -> int |
24630
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
wenzelm
parents:
23745
diff
changeset
|
96 |
val mk_numeral: int -> term |
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
wenzelm
parents:
23745
diff
changeset
|
97 |
val dest_numeral: term -> int |
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
98 |
val number_of_const: typ -> term |
23269 | 99 |
val add_numerals: term -> (term * typ) list -> (term * typ) list |
24630
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
wenzelm
parents:
23745
diff
changeset
|
100 |
val mk_number: typ -> int -> term |
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
wenzelm
parents:
23745
diff
changeset
|
101 |
val dest_number: term -> typ * int |
21778
66440bf72cdc
binary numerals: restricted to actual abstract syntax;
wenzelm
parents:
21755
diff
changeset
|
102 |
val realT: typ |
21755 | 103 |
val nibbleT: typ |
104 |
val mk_nibble: int -> term |
|
105 |
val dest_nibble: term -> int |
|
106 |
val charT: typ |
|
107 |
val mk_char: int -> term |
|
108 |
val dest_char: term -> int |
|
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
109 |
val listT: typ -> typ |
25887 | 110 |
val nil_const: typ -> term |
111 |
val cons_const: typ -> term |
|
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
112 |
val mk_list: typ -> term list -> term |
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
113 |
val dest_list: term -> term list |
21778
66440bf72cdc
binary numerals: restricted to actual abstract syntax;
wenzelm
parents:
21755
diff
changeset
|
114 |
val stringT: typ |
21820
2f2b6a965ccc
introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents:
21788
diff
changeset
|
115 |
val mk_string: string -> term |
2f2b6a965ccc
introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents:
21788
diff
changeset
|
116 |
val dest_string: term -> string |
31205
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
117 |
val literalT: typ |
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
118 |
val mk_literal: string -> term |
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
119 |
val dest_literal: term -> string |
31135 | 120 |
val mk_typerep: typ -> term |
32339 | 121 |
val termT: typ |
122 |
val term_of_const: typ -> term |
|
31135 | 123 |
val mk_term_of: typ -> term -> term |
124 |
val reflect_term: term -> term |
|
31463 | 125 |
val mk_valtermify_app: string -> (string * typ) list -> typ -> term |
31183 | 126 |
val mk_return: typ -> typ -> term -> term |
127 |
val mk_ST: ((term * typ) * (string * typ) option) list -> term -> typ -> typ option * typ -> term |
|
31463 | 128 |
val mk_random: typ -> term -> term |
923 | 129 |
end; |
130 |
||
131 |
structure HOLogic: HOLOGIC = |
|
132 |
struct |
|
133 |
||
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
134 |
(* HOL syntax *) |
923 | 135 |
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
136 |
val typeS: sort = ["HOL.type"]; |
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
137 |
val typeT = TypeInfer.anyT typeS; |
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
138 |
|
923 | 139 |
|
2510 | 140 |
(* bool and set *) |
923 | 141 |
|
8275 | 142 |
val boolN = "bool"; |
143 |
val boolT = Type (boolN, []); |
|
923 | 144 |
|
9856 | 145 |
val true_const = Const ("True", boolT); |
146 |
val false_const = Const ("False", boolT); |
|
7073 | 147 |
|
26804
e2b1e6868c2f
Adapted functions mk_setT and dest_setT to encoding of sets as predicates.
berghofe
parents:
26086
diff
changeset
|
148 |
fun mk_setT T = T --> boolT; |
923 | 149 |
|
26804
e2b1e6868c2f
Adapted functions mk_setT and dest_setT to encoding of sets as predicates.
berghofe
parents:
26086
diff
changeset
|
150 |
fun dest_setT (Type ("fun", [T, Type ("bool", [])])) = T |
3794 | 151 |
| dest_setT T = raise TYPE ("dest_setT: set type expected", [T], []); |
923 | 152 |
|
30450 | 153 |
fun mk_set T ts = |
154 |
let |
|
155 |
val sT = mk_setT T; |
|
32264
0be31453f698
Set.UNIV and Set.empty are mere abbreviations for top and bot
haftmann
parents:
31736
diff
changeset
|
156 |
val empty = Const ("Orderings.bot_class.bot", sT); |
31456 | 157 |
fun insert t u = Const ("Set.insert", T --> sT --> sT) $ t $ u; |
30450 | 158 |
in fold_rev insert ts empty end; |
159 |
||
32264
0be31453f698
Set.UNIV and Set.empty are mere abbreviations for top and bot
haftmann
parents:
31736
diff
changeset
|
160 |
fun mk_UNIV T = Const ("Orderings.top_class.top", mk_setT T); |
30450 | 161 |
|
32264
0be31453f698
Set.UNIV and Set.empty are mere abbreviations for top and bot
haftmann
parents:
31736
diff
changeset
|
162 |
fun dest_set (Const ("Orderings.bot_class.bot", _)) = [] |
31456 | 163 |
| dest_set (Const ("Set.insert", _) $ t $ u) = t :: dest_set u |
30450 | 164 |
| dest_set t = raise TERM ("dest_set", [t]); |
165 |
||
166 |
fun Collect_const T = Const ("Collect", (T --> boolT) --> mk_setT T); |
|
167 |
fun mk_Collect (a, T, t) = Collect_const T $ absfree (a, T, t); |
|
168 |
||
169 |
fun mk_mem (x, A) = |
|
170 |
let val setT = fastype_of A in |
|
171 |
Const ("op :", dest_setT setT --> setT --> boolT) $ x $ A |
|
172 |
end; |
|
173 |
||
174 |
fun dest_mem (Const ("op :", _) $ x $ A) = (x, A) |
|
175 |
| dest_mem t = raise TERM ("dest_mem", [t]); |
|
176 |
||
8275 | 177 |
|
7073 | 178 |
(* logic *) |
923 | 179 |
|
180 |
val Trueprop = Const ("Trueprop", boolT --> propT); |
|
181 |
||
182 |
fun mk_Trueprop P = Trueprop $ P; |
|
183 |
||
184 |
fun dest_Trueprop (Const ("Trueprop", _) $ P) = P |
|
3794 | 185 |
| dest_Trueprop t = raise TERM ("dest_Trueprop", [t]); |
923 | 186 |
|
23555
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
187 |
fun conj_intr thP thQ = |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
188 |
let |
23576
1ffe739e5ee0
removed dest_cTrueprop (cf. ObjectLogic.dest_judgment);
wenzelm
parents:
23566
diff
changeset
|
189 |
val (P, Q) = pairself (ObjectLogic.dest_judgment o Thm.cprop_of) (thP, thQ) |
23555
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
190 |
handle CTERM (msg, _) => raise THM (msg, 0, [thP, thQ]); |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
191 |
val inst = Thm.instantiate ([], [(@{cpat "?P::bool"}, P), (@{cpat "?Q::bool"}, Q)]); |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
192 |
in Drule.implies_elim_list (inst @{thm conjI}) [thP, thQ] end; |
923 | 193 |
|
23555
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
194 |
fun conj_elim thPQ = |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
195 |
let |
23576
1ffe739e5ee0
removed dest_cTrueprop (cf. ObjectLogic.dest_judgment);
wenzelm
parents:
23566
diff
changeset
|
196 |
val (P, Q) = Thm.dest_binop (ObjectLogic.dest_judgment (Thm.cprop_of thPQ)) |
23555
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
197 |
handle CTERM (msg, _) => raise THM (msg, 0, [thPQ]); |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
198 |
val inst = Thm.instantiate ([], [(@{cpat "?P::bool"}, P), (@{cpat "?Q::bool"}, Q)]); |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
199 |
val thP = Thm.implies_elim (inst @{thm conjunct1}) thPQ; |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
200 |
val thQ = Thm.implies_elim (inst @{thm conjunct2}) thPQ; |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
201 |
in (thP, thQ) end; |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
202 |
|
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
203 |
fun conj_elims th = |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
204 |
let val (th1, th2) = conj_elim th |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
205 |
in conj_elims th1 @ conj_elims th2 end handle THM _ => [th]; |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
206 |
|
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
207 |
val conj = @{term "op &"} |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
208 |
and disj = @{term "op |"} |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
209 |
and imp = @{term "op -->"} |
16e5fd18905c
assume basic HOL context for compilation (antiquotations);
wenzelm
parents:
23297
diff
changeset
|
210 |
and Not = @{term "Not"}; |
923 | 211 |
|
7690 | 212 |
fun mk_conj (t1, t2) = conj $ t1 $ t2 |
213 |
and mk_disj (t1, t2) = disj $ t1 $ t2 |
|
16835 | 214 |
and mk_imp (t1, t2) = imp $ t1 $ t2 |
215 |
and mk_not t = Not $ t; |
|
7690 | 216 |
|
15151 | 217 |
fun dest_conj (Const ("op &", _) $ t $ t') = t :: dest_conj t' |
218 |
| dest_conj t = [t]; |
|
219 |
||
15945 | 220 |
fun dest_disj (Const ("op |", _) $ t $ t') = t :: dest_disj t' |
221 |
| dest_disj t = [t]; |
|
222 |
||
24958 | 223 |
(*Like dest_disj, but flattens disjunctions however nested*) |
224 |
fun disjuncts_aux (Const ("op |", _) $ t $ t') disjs = disjuncts_aux t (disjuncts_aux t' disjs) |
|
225 |
| disjuncts_aux t disjs = t::disjs; |
|
226 |
||
227 |
fun disjuncts t = disjuncts_aux t []; |
|
228 |
||
4466
305390f23734
Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents:
4294
diff
changeset
|
229 |
fun dest_imp (Const("op -->",_) $ A $ B) = (A, B) |
305390f23734
Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents:
4294
diff
changeset
|
230 |
| dest_imp t = raise TERM ("dest_imp", [t]); |
305390f23734
Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents:
4294
diff
changeset
|
231 |
|
15151 | 232 |
fun dest_not (Const ("Not", _) $ t) = t |
233 |
| dest_not t = raise TERM ("dest_not", [t]); |
|
8302 | 234 |
|
923 | 235 |
fun eq_const T = Const ("op =", [T, T] ---> boolT); |
236 |
fun mk_eq (t, u) = eq_const (fastype_of t) $ t $ u; |
|
237 |
||
6031 | 238 |
fun dest_eq (Const ("op =", _) $ lhs $ rhs) = (lhs, rhs) |
239 |
| dest_eq t = raise TERM ("dest_eq", [t]) |
|
240 |
||
923 | 241 |
fun all_const T = Const ("All", [T --> boolT] ---> boolT); |
242 |
fun mk_all (x, T, P) = all_const T $ absfree (x, T, P); |
|
21173
663a7b39894c
removed is_Trueprop (use can dest_Trueprop'' instead);
wenzelm
parents:
21078
diff
changeset
|
243 |
fun list_all (xs, t) = fold_rev (fn (x, T) => fn P => all_const T $ Abs (x, T, P)) xs t; |
923 | 244 |
|
245 |
fun exists_const T = Const ("Ex", [T --> boolT] ---> boolT); |
|
246 |
fun mk_exists (x, T, P) = exists_const T $ absfree (x, T, P); |
|
247 |
||
21755 | 248 |
fun choice_const T = Const("Hilbert_Choice.Eps", (T --> boolT) --> T); |
15945 | 249 |
|
23247 | 250 |
val class_eq = "HOL.eq"; |
21045 | 251 |
|
923 | 252 |
|
13743
f8f9393be64c
Fixed bug in simpdata.ML that prevented the use of congruence rules from a
ballarin
parents:
13640
diff
changeset
|
253 |
(* binary operations and relations *) |
2510 | 254 |
|
255 |
fun mk_binop c (t, u) = |
|
256 |
let val T = fastype_of t in |
|
257 |
Const (c, [T, T] ---> T) $ t $ u |
|
258 |
end; |
|
259 |
||
260 |
fun mk_binrel c (t, u) = |
|
261 |
let val T = fastype_of t in |
|
262 |
Const (c, [T, T] ---> boolT) $ t $ u |
|
263 |
end; |
|
264 |
||
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14103
diff
changeset
|
265 |
(*destruct the application of a binary operator. The dummyT case is a crude |
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14103
diff
changeset
|
266 |
way of handling polymorphic operators.*) |
2510 | 267 |
fun dest_bin c T (tm as Const (c', Type ("fun", [T', _])) $ t $ u) = |
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14103
diff
changeset
|
268 |
if c = c' andalso (T=T' orelse T=dummyT) then (t, u) |
3794 | 269 |
else raise TERM ("dest_bin " ^ c, [tm]) |
270 |
| dest_bin c _ tm = raise TERM ("dest_bin " ^ c, [tm]); |
|
2510 | 271 |
|
272 |
||
4571 | 273 |
(* unit *) |
274 |
||
11604 | 275 |
val unitT = Type ("Product_Type.unit", []); |
4571 | 276 |
|
11604 | 277 |
fun is_unitT (Type ("Product_Type.unit", [])) = true |
9362 | 278 |
| is_unitT _ = false; |
279 |
||
11604 | 280 |
val unit = Const ("Product_Type.Unity", unitT); |
4571 | 281 |
|
11604 | 282 |
fun is_unit (Const ("Product_Type.Unity", _)) = true |
4571 | 283 |
| is_unit _ = false; |
284 |
||
285 |
||
286 |
(* prod *) |
|
287 |
||
288 |
fun mk_prodT (T1, T2) = Type ("*", [T1, T2]); |
|
289 |
||
290 |
fun dest_prodT (Type ("*", [T1, T2])) = (T1, T2) |
|
291 |
| dest_prodT T = raise TYPE ("dest_prodT", [T], []); |
|
292 |
||
14048 | 293 |
fun pair_const T1 T2 = Const ("Pair", [T1, T2] ---> mk_prodT (T1, T2)); |
294 |
||
4571 | 295 |
fun mk_prod (t1, t2) = |
296 |
let val T1 = fastype_of t1 and T2 = fastype_of t2 in |
|
14048 | 297 |
pair_const T1 T2 $ t1 $ t2 |
4571 | 298 |
end; |
299 |
||
300 |
fun dest_prod (Const ("Pair", _) $ t1 $ t2) = (t1, t2) |
|
301 |
| dest_prod t = raise TERM ("dest_prod", [t]); |
|
302 |
||
303 |
fun mk_fst p = |
|
304 |
let val pT = fastype_of p in |
|
305 |
Const ("fst", pT --> fst (dest_prodT pT)) $ p |
|
306 |
end; |
|
307 |
||
308 |
fun mk_snd p = |
|
309 |
let val pT = fastype_of p in |
|
310 |
Const ("snd", pT --> snd (dest_prodT pT)) $ p |
|
311 |
end; |
|
312 |
||
18285 | 313 |
fun split_const (A, B, C) = |
314 |
Const ("split", (A --> B --> C) --> mk_prodT (A, B) --> C); |
|
315 |
||
316 |
fun mk_split t = |
|
317 |
(case Term.fastype_of t of |
|
318 |
T as (Type ("fun", [A, Type ("fun", [B, C])])) => |
|
319 |
Const ("split", T --> mk_prodT (A, B) --> C) $ t |
|
320 |
| _ => raise TERM ("mk_split: bad body type", [t])); |
|
321 |
||
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
322 |
(*Maps the type T1 * ... * Tn to [T1, ..., Tn], however nested*) |
32287
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
323 |
fun flatten_tupleT (Type ("*", [T1, T2])) = flatten_tupleT T1 @ flatten_tupleT T2 |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
324 |
| flatten_tupleT T = [T]; |
23745 | 325 |
|
32287
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
326 |
(* tuples with specific arities |
23745 | 327 |
|
25172 | 328 |
an "arity" of a tuple is a list of lists of integers |
329 |
("factors"), denoting paths to subterms that are pairs |
|
330 |
*) |
|
23745 | 331 |
|
332 |
fun prod_err s = raise TERM (s ^ ": inconsistent use of products", []); |
|
333 |
||
334 |
fun mk_tupleT ps = |
|
335 |
let |
|
336 |
fun mk p Ts = |
|
337 |
if p mem ps then |
|
338 |
let |
|
339 |
val (T, Ts') = mk (1::p) Ts; |
|
340 |
val (U, Ts'') = mk (2::p) Ts' |
|
341 |
in (mk_prodT (T, U), Ts'') end |
|
342 |
else (hd Ts, tl Ts) |
|
343 |
in fst o mk [] end; |
|
344 |
||
32287
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
345 |
fun strip_tupleT ps = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
346 |
let |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
347 |
fun factors p T = if p mem ps then (case T of |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
348 |
Type ("*", [T1, T2]) => |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
349 |
factors (1::p) T1 @ factors (2::p) T2 |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
350 |
| _ => prod_err "strip_tupleT") else [T] |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
351 |
in factors [] end; |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
352 |
|
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
353 |
val flat_tupleT_paths = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
354 |
let |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
355 |
fun factors p (Type ("*", [T1, T2])) = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
356 |
p :: factors (1::p) T1 @ factors (2::p) T2 |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
357 |
| factors p _ = [] |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
358 |
in factors [] end; |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
359 |
|
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
360 |
fun mk_tuple ps = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
361 |
let |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
362 |
fun mk p T ts = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
363 |
if p mem ps then (case T of |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
364 |
Type ("*", [T1, T2]) => |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
365 |
let |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
366 |
val (t, ts') = mk (1::p) T1 ts; |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
367 |
val (u, ts'') = mk (2::p) T2 ts' |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
368 |
in (pair_const T1 T2 $ t $ u, ts'') end |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
369 |
| _ => prod_err "mk_tuple") |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
370 |
else (hd ts, tl ts) |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
371 |
in fst oo mk [] end; |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
372 |
|
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
373 |
fun dest_tuple ps = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
374 |
let |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
375 |
fun dest p t = if p mem ps then (case t of |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
376 |
Const ("Pair", _) $ t $ u => |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
377 |
dest (1::p) t @ dest (2::p) u |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
378 |
| _ => prod_err "dest_tuple") else [t] |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
379 |
in dest [] end; |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
380 |
|
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
381 |
val flat_tuple_paths = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
382 |
let |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
383 |
fun factors p (Const ("Pair", _) $ t $ u) = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
384 |
p :: factors (1::p) t @ factors (2::p) u |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
385 |
| factors p _ = [] |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
386 |
in factors [] end; |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
387 |
|
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
388 |
(*In mk_splits ps S T u, term u expects separate arguments for the factors of S, |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
389 |
with result type T. The call creates a new term expecting one argument |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
390 |
of type S.*) |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
391 |
fun mk_splits ps T T3 u = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
392 |
let |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
393 |
fun ap ((p, T) :: pTs) = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
394 |
if p mem ps then (case T of |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
395 |
Type ("*", [T1, T2]) => |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
396 |
split_const (T1, T2, map snd pTs ---> T3) $ |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
397 |
ap ((1::p, T1) :: (2::p, T2) :: pTs) |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
398 |
| _ => prod_err "mk_splits") |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
399 |
else Abs ("x", T, ap pTs) |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
400 |
| ap [] = |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
401 |
let val k = length ps |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
402 |
in list_comb (incr_boundvars (k + 1) u, map Bound (k downto 0)) end |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
403 |
in ap [([], T)] end; |
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
404 |
|
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
405 |
val strip_splits = |
23745 | 406 |
let |
407 |
fun strip [] qs Ts t = (t, Ts, qs) |
|
408 |
| strip (p :: ps) qs Ts (Const ("split", _) $ t) = |
|
409 |
strip ((1 :: p) :: (2 :: p) :: ps) (p :: qs) Ts t |
|
410 |
| strip (p :: ps) qs Ts (Abs (s, T, t)) = strip ps qs (T :: Ts) t |
|
411 |
| strip (p :: ps) qs Ts t = strip ps qs |
|
412 |
(hd (binder_types (fastype_of1 (Ts, t))) :: Ts) |
|
413 |
(incr_boundvars 1 t $ Bound 0) |
|
32287
65d5c5b30747
cleaned up abstract tuple operations and named them consistently
haftmann
parents:
32264
diff
changeset
|
414 |
in strip [[]] [] [] end; |
23745 | 415 |
|
5207 | 416 |
|
417 |
(* nat *) |
|
418 |
||
419 |
val natT = Type ("nat", []); |
|
420 |
||
22994 | 421 |
val zero = Const ("HOL.zero_class.zero", natT); |
5207 | 422 |
|
22994 | 423 |
fun is_zero (Const ("HOL.zero_class.zero", _)) = true |
5207 | 424 |
| is_zero _ = false; |
425 |
||
426 |
fun mk_Suc t = Const ("Suc", natT --> natT) $ t; |
|
427 |
||
428 |
fun dest_Suc (Const ("Suc", _) $ t) = t |
|
429 |
| dest_Suc t = raise TERM ("dest_Suc", [t]); |
|
430 |
||
21621 | 431 |
val Suc_zero = mk_Suc zero; |
432 |
||
24630
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
wenzelm
parents:
23745
diff
changeset
|
433 |
fun mk_nat n = |
22994 | 434 |
let |
435 |
fun mk 0 = zero |
|
23297 | 436 |
| mk n = mk_Suc (mk (n - 1)); |
23576
1ffe739e5ee0
removed dest_cTrueprop (cf. ObjectLogic.dest_judgment);
wenzelm
parents:
23566
diff
changeset
|
437 |
in if n < 0 then raise TERM ("mk_nat: negative number", []) else mk n end; |
5207 | 438 |
|
24630
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
wenzelm
parents:
23745
diff
changeset
|
439 |
fun dest_nat (Const ("HOL.zero_class.zero", _)) = 0 |
23297 | 440 |
| dest_nat (Const ("Suc", _) $ t) = dest_nat t + 1 |
5207 | 441 |
| dest_nat t = raise TERM ("dest_nat", [t]); |
442 |
||
22994 | 443 |
val class_size = "Nat.size"; |
444 |
||
445 |
fun size_const T = Const ("Nat.size_class.size", T --> natT); |
|
446 |
||
5207 | 447 |
|
31205
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
448 |
(* code numeral *) |
26036 | 449 |
|
31205
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
450 |
val code_numeralT = Type ("Code_Numeral.code_numeral", []); |
26036 | 451 |
|
452 |
||
21778
66440bf72cdc
binary numerals: restricted to actual abstract syntax;
wenzelm
parents:
21755
diff
changeset
|
453 |
(* binary numerals and int -- non-unique representation due to leading zeros/ones! *) |
66440bf72cdc
binary numerals: restricted to actual abstract syntax;
wenzelm
parents:
21755
diff
changeset
|
454 |
|
25919
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25887
diff
changeset
|
455 |
val intT = Type ("Int.int", []); |
21778
66440bf72cdc
binary numerals: restricted to actual abstract syntax;
wenzelm
parents:
21755
diff
changeset
|
456 |
|
25919
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25887
diff
changeset
|
457 |
val pls_const = Const ("Int.Pls", intT) |
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25887
diff
changeset
|
458 |
and min_const = Const ("Int.Min", intT) |
26086
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
459 |
and bit0_const = Const ("Int.Bit0", intT --> intT) |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
460 |
and bit1_const = Const ("Int.Bit1", intT --> intT); |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
461 |
|
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
462 |
fun mk_bit 0 = bit0_const |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
463 |
| mk_bit 1 = bit1_const |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
464 |
| mk_bit _ = raise TERM ("mk_bit", []); |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
465 |
|
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
466 |
fun dest_bit (Const ("Int.Bit0", _)) = 0 |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
467 |
| dest_bit (Const ("Int.Bit1", _)) = 1 |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
468 |
| dest_bit t = raise TERM ("dest_bit", [t]); |
8768 | 469 |
|
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
470 |
fun mk_numeral 0 = pls_const |
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
471 |
| mk_numeral ~1 = min_const |
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
472 |
| mk_numeral i = |
24630
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
wenzelm
parents:
23745
diff
changeset
|
473 |
let val (q, r) = Integer.div_mod i 2; |
26086
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
474 |
in mk_bit r $ mk_numeral q end; |
13755 | 475 |
|
25919
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25887
diff
changeset
|
476 |
fun dest_numeral (Const ("Int.Pls", _)) = 0 |
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25887
diff
changeset
|
477 |
| dest_numeral (Const ("Int.Min", _)) = ~1 |
26086
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
478 |
| dest_numeral (Const ("Int.Bit0", _) $ bs) = 2 * dest_numeral bs |
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
26036
diff
changeset
|
479 |
| dest_numeral (Const ("Int.Bit1", _) $ bs) = 2 * dest_numeral bs + 1 |
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
480 |
| dest_numeral t = raise TERM ("dest_numeral", [t]); |
13755 | 481 |
|
25919
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25887
diff
changeset
|
482 |
fun number_of_const T = Const ("Int.number_class.number_of", intT --> T); |
21820
2f2b6a965ccc
introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents:
21788
diff
changeset
|
483 |
|
25919
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25887
diff
changeset
|
484 |
fun add_numerals (Const ("Int.number_class.number_of", Type (_, [_, T])) $ t) = cons (t, T) |
23269 | 485 |
| add_numerals (t $ u) = add_numerals t #> add_numerals u |
486 |
| add_numerals (Abs (_, _, t)) = add_numerals t |
|
487 |
| add_numerals _ = I; |
|
22391 | 488 |
|
22994 | 489 |
fun mk_number T 0 = Const ("HOL.zero_class.zero", T) |
490 |
| mk_number T 1 = Const ("HOL.one_class.one", T) |
|
21820
2f2b6a965ccc
introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents:
21788
diff
changeset
|
491 |
| mk_number T i = number_of_const T $ mk_numeral i; |
2f2b6a965ccc
introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents:
21788
diff
changeset
|
492 |
|
22994 | 493 |
fun dest_number (Const ("HOL.zero_class.zero", T)) = (T, 0) |
494 |
| dest_number (Const ("HOL.one_class.one", T)) = (T, 1) |
|
25919
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25887
diff
changeset
|
495 |
| dest_number (Const ("Int.number_class.number_of", Type ("fun", [_, T])) $ t) = |
22994 | 496 |
(T, dest_numeral t) |
21820
2f2b6a965ccc
introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents:
21788
diff
changeset
|
497 |
| dest_number t = raise TERM ("dest_number", [t]); |
13755 | 498 |
|
21829
016eff9c5699
simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents:
21820
diff
changeset
|
499 |
|
13755 | 500 |
(* real *) |
501 |
||
16971 | 502 |
val realT = Type ("RealDef.real", []); |
13755 | 503 |
|
504 |
||
21755 | 505 |
(* list *) |
21455 | 506 |
|
21755 | 507 |
fun listT T = Type ("List.list", [T]); |
21455 | 508 |
|
25887 | 509 |
fun nil_const T = Const ("List.list.Nil", listT T); |
510 |
||
511 |
fun cons_const T = |
|
512 |
let val lT = listT T |
|
513 |
in Const ("List.list.Cons", T --> lT --> lT) end; |
|
514 |
||
21755 | 515 |
fun mk_list T ts = |
21455 | 516 |
let |
21755 | 517 |
val lT = listT T; |
518 |
val Nil = Const ("List.list.Nil", lT); |
|
519 |
fun Cons t u = Const ("List.list.Cons", T --> lT --> lT) $ t $ u; |
|
520 |
in fold_rev Cons ts Nil end; |
|
521 |
||
522 |
fun dest_list (Const ("List.list.Nil", _)) = [] |
|
523 |
| dest_list (Const ("List.list.Cons", _) $ t $ u) = t :: dest_list u |
|
524 |
| dest_list t = raise TERM ("dest_list", [t]); |
|
21455 | 525 |
|
526 |
||
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
527 |
(* nibble *) |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
528 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
529 |
val nibbleT = Type ("String.nibble", []); |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
530 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
531 |
fun mk_nibble n = |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
532 |
let val s = |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
533 |
if 0 <= n andalso n <= 9 then chr (n + ord "0") |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
534 |
else if 10 <= n andalso n <= 15 then chr (n + ord "A" - 10) |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
535 |
else raise TERM ("mk_nibble", []) |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
536 |
in Const ("String.nibble.Nibble" ^ s, nibbleT) end; |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
537 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
538 |
fun dest_nibble t = |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
539 |
let fun err () = raise TERM ("dest_nibble", [t]) in |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
540 |
(case try (unprefix "String.nibble.Nibble" o fst o Term.dest_Const) t of |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
541 |
NONE => err () |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
542 |
| SOME c => |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
543 |
if size c <> 1 then err () |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
544 |
else if "0" <= c andalso c <= "9" then ord c - ord "0" |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
545 |
else if "A" <= c andalso c <= "F" then ord c - ord "A" + 10 |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
546 |
else err ()) |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
547 |
end; |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
548 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
549 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
550 |
(* char *) |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
551 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
552 |
val charT = Type ("String.char", []); |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
553 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
554 |
fun mk_char n = |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
555 |
if 0 <= n andalso n <= 255 then |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
556 |
Const ("String.char.Char", nibbleT --> nibbleT --> charT) $ |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
557 |
mk_nibble (n div 16) $ mk_nibble (n mod 16) |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
558 |
else raise TERM ("mk_char", []); |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
559 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
560 |
fun dest_char (Const ("String.char.Char", _) $ t $ u) = |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
561 |
dest_nibble t * 16 + dest_nibble u |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
562 |
| dest_char t = raise TERM ("dest_char", [t]); |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
563 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
564 |
|
21455 | 565 |
(* string *) |
566 |
||
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
567 |
val stringT = Type ("String.string", []); |
21455 | 568 |
|
21755 | 569 |
val mk_string = mk_list charT o map (mk_char o ord) o explode; |
570 |
val dest_string = implode o map (chr o dest_char) o dest_list; |
|
21455 | 571 |
|
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
572 |
|
31205
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
573 |
(* literal *) |
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
574 |
|
31205
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
575 |
val literalT = Type ("String.literal", []); |
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
576 |
|
31205
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
577 |
fun mk_literal s = Const ("String.literal.STR", stringT --> literalT) |
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
578 |
$ mk_string s; |
31205
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
579 |
fun dest_literal (Const ("String.literal.STR", _) $ t) = |
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
580 |
dest_string t |
31205
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
581 |
| dest_literal t = raise TERM ("dest_literal", [t]); |
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
30453
diff
changeset
|
582 |
|
31135 | 583 |
|
584 |
(* typerep and term *) |
|
585 |
||
586 |
val typerepT = Type ("Typerep.typerep", []); |
|
587 |
||
31736 | 588 |
fun mk_typerep (Type (tyco, Ts)) = Const ("Typerep.typerep.Typerep", |
589 |
literalT --> listT typerepT --> typerepT) $ mk_literal tyco |
|
590 |
$ mk_list typerepT (map mk_typerep Ts) |
|
591 |
| mk_typerep (T as TFree _) = Const ("Typerep.typerep_class.typerep", |
|
592 |
Term.itselfT T --> typerepT) $ Logic.mk_type T; |
|
31135 | 593 |
|
594 |
val termT = Type ("Code_Eval.term", []); |
|
595 |
||
32339 | 596 |
fun term_of_const T = Const ("Code_Eval.term_of_class.term_of", T --> termT); |
597 |
||
598 |
fun mk_term_of T t = term_of_const T $ t; |
|
31135 | 599 |
|
600 |
fun reflect_term (Const (c, T)) = |
|
31205
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
601 |
Const ("Code_Eval.Const", literalT --> typerepT --> termT) |
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents:
31183
diff
changeset
|
602 |
$ mk_literal c $ mk_typerep T |
31135 | 603 |
| reflect_term (t1 $ t2) = |
604 |
Const ("Code_Eval.App", termT --> termT --> termT) |
|
605 |
$ reflect_term t1 $ reflect_term t2 |
|
31183 | 606 |
| reflect_term (Abs (v, _, t)) = Abs (v, termT, reflect_term t) |
607 |
| reflect_term t = t; |
|
608 |
||
31463 | 609 |
fun mk_valtermify_app c vs T = |
610 |
let |
|
611 |
fun termifyT T = mk_prodT (T, unitT --> termT); |
|
612 |
fun valapp T T' = Const ("Code_Eval.valapp", |
|
613 |
termifyT (T --> T') --> termifyT T --> termifyT T'); |
|
614 |
fun mk_fTs [] _ = [] |
|
615 |
| mk_fTs (_ :: Ts) T = (Ts ---> T) :: mk_fTs Ts T; |
|
616 |
val Ts = map snd vs; |
|
617 |
val t = Const (c, Ts ---> T); |
|
618 |
val tt = mk_prod (t, Abs ("u", unitT, reflect_term t)); |
|
619 |
fun app (t, (fT, (v, T))) = valapp T fT $ t $ Free (v, termifyT T); |
|
620 |
in Library.foldl app (tt, mk_fTs Ts T ~~ vs) end; |
|
621 |
||
31183 | 622 |
|
623 |
(* open state monads *) |
|
624 |
||
625 |
fun mk_return T U x = pair_const T U $ x; |
|
626 |
||
627 |
fun mk_ST clauses t U (someT, V) = |
|
628 |
let |
|
629 |
val R = case someT of SOME T => mk_prodT (T, V) | NONE => V |
|
630 |
fun mk_clause ((t, U), SOME (v, T)) (t', U') = |
|
631 |
(Const ("Product_Type.scomp", (U --> mk_prodT (T, U')) --> (T --> U' --> R) --> U --> R) |
|
632 |
$ t $ lambda (Free (v, T)) t', U) |
|
633 |
| mk_clause ((t, U), NONE) (t', U') = |
|
634 |
(Const ("Product_Type.fcomp", (U --> U') --> (U' --> R) --> U --> R) |
|
635 |
$ t $ t', U) |
|
636 |
in fold_rev mk_clause clauses (t, U) |> fst end; |
|
31135 | 637 |
|
31463 | 638 |
val code_numeralT = Type ("Code_Numeral.code_numeral", []); |
639 |
val random_seedT = mk_prodT (code_numeralT, code_numeralT); |
|
640 |
||
641 |
fun mk_random T t = Const ("Quickcheck.random_class.random", code_numeralT |
|
642 |
--> random_seedT --> mk_prodT (mk_prodT (T, unitT --> termT), random_seedT)) $ t; |
|
643 |
||
923 | 644 |
end; |