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