| author | wenzelm | 
| Wed, 11 Feb 2009 21:40:16 +0100 | |
| changeset 29728 | 2a4f000d1e4d | 
| parent 29581 | b3b33e0298eb | 
| child 29807 | 4159caa18f85 | 
| child 29863 | dadad1831e9d | 
| permissions | -rw-r--r-- | 
| 5719 | 1 | (* Title: HOL/Tools/primrec_package.ML | 
| 25557 | 2 | Author: Stefan Berghofer, TU Muenchen; Norbert Voelker, FernUni Hagen; | 
| 3 | Florian Haftmann, TU Muenchen | |
| 5178 | 4 | |
| 6359 | 5 | Package for defining functions on datatypes by primitive recursion. | 
| 5178 | 6 | *) | 
| 7 | ||
| 8 | signature PRIMREC_PACKAGE = | |
| 9 | sig | |
| 29581 | 10 | val add_primrec: (binding * typ option * mixfix) list -> | 
| 28084 
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
 wenzelm parents: 
28083diff
changeset | 11 | (Attrib.binding * term) list -> local_theory -> thm list * local_theory | 
| 29581 | 12 | val add_primrec_global: (binding * typ option * mixfix) list -> | 
| 28084 
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
 wenzelm parents: 
28083diff
changeset | 13 | (Attrib.binding * term) list -> theory -> thm list * theory | 
| 26679 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 14 | val add_primrec_overloaded: (string * (string * typ) * bool) list -> | 
| 29581 | 15 | (binding * typ option * mixfix) list -> | 
| 28084 
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
 wenzelm parents: 
28083diff
changeset | 16 | (Attrib.binding * term) list -> theory -> thm list * theory | 
| 5178 | 17 | end; | 
| 18 | ||
| 19 | structure PrimrecPackage : PRIMREC_PACKAGE = | |
| 20 | struct | |
| 21 | ||
| 22 | open DatatypeAux; | |
| 23 | ||
| 25557 | 24 | exception PrimrecError of string * term option; | 
| 6359 | 25 | |
| 25557 | 26 | fun primrec_error msg = raise PrimrecError (msg, NONE); | 
| 27 | fun primrec_error_eqn msg eqn = raise PrimrecError (msg, SOME eqn); | |
| 23765 
997e5fe47532
Function unify_consts moved from OldInductivePackage to PrimrecPackage.
 berghofe parents: 
22728diff
changeset | 28 | |
| 25557 | 29 | fun message s = if ! Toplevel.debug then () else writeln s; | 
| 23765 
997e5fe47532
Function unify_consts moved from OldInductivePackage to PrimrecPackage.
 berghofe parents: 
22728diff
changeset | 30 | |
| 
997e5fe47532
Function unify_consts moved from OldInductivePackage to PrimrecPackage.
 berghofe parents: 
22728diff
changeset | 31 | |
| 5178 | 32 | (* preprocessing of equations *) | 
| 33 | ||
| 25559 | 34 | fun process_eqn is_fixed spec rec_fns = | 
| 5178 | 35 | let | 
| 25566 | 36 | val (vs, Ts) = split_list (strip_qnt_vars "all" spec); | 
| 25557 | 37 | val body = strip_qnt_body "all" spec; | 
| 25566 | 38 | val (vs', _) = Name.variants vs (Name.make_context (fold_aterms | 
| 39 | (fn Free (v, _) => insert (op =) v | _ => I) body [])); | |
| 40 | val eqn = curry subst_bounds (map2 (curry Free) vs' Ts |> rev) body; | |
| 25557 | 41 | val (lhs, rhs) = HOLogic.dest_eq (HOLogic.dest_Trueprop eqn) | 
| 42 | handle TERM _ => primrec_error "not a proper equation"; | |
| 5178 | 43 | val (recfun, args) = strip_comb lhs; | 
| 25557 | 44 | val fname = case recfun of Free (v, _) => if is_fixed v then v | 
| 45 | else primrec_error "illegal head of function equation" | |
| 46 | | _ => primrec_error "illegal head of function equation"; | |
| 5178 | 47 | |
| 48 | val (ls', rest) = take_prefix is_Free args; | |
| 49 | val (middle, rs') = take_suffix is_Free rest; | |
| 50 | val rpos = length ls'; | |
| 51 | ||
| 25557 | 52 | val (constr, cargs') = if null middle then primrec_error "constructor missing" | 
| 5178 | 53 | else strip_comb (hd middle); | 
| 54 | val (cname, T) = dest_Const constr | |
| 25557 | 55 | handle TERM _ => primrec_error "ill-formed constructor"; | 
| 7016 
df54b5365477
- Now also supports arbitrarily branching datatypes.
 berghofe parents: 
6729diff
changeset | 56 | val (tname, _) = dest_Type (body_type T) handle TYPE _ => | 
| 25557 | 57 | primrec_error "cannot determine datatype associated with function" | 
| 5178 | 58 | |
| 20176 | 59 | val (ls, cargs, rs) = | 
| 60 | (map dest_Free ls', map dest_Free cargs', map dest_Free rs') | |
| 25557 | 61 | handle TERM _ => primrec_error "illegal argument in pattern"; | 
| 5178 | 62 | val lfrees = ls @ rs @ cargs; | 
| 63 | ||
| 12474 | 64 | fun check_vars _ [] = () | 
| 25557 | 65 | | check_vars s vars = primrec_error (s ^ commas_quote (map fst vars)) eqn; | 
| 5178 | 66 | in | 
| 22692 | 67 | if length middle > 1 then | 
| 25557 | 68 | primrec_error "more than one non-variable in pattern" | 
| 12474 | 69 | else | 
| 18964 | 70 | (check_vars "repeated variable names in pattern: " (duplicates (op =) lfrees); | 
| 12474 | 71 | check_vars "extra variables on rhs: " | 
| 29265 
5b4247055bd7
moved old add_term_vars, add_term_frees etc. to structure OldTerm;
 wenzelm parents: 
29006diff
changeset | 72 | (map dest_Free (OldTerm.term_frees rhs) |> subtract (op =) lfrees | 
| 25559 | 73 | |> filter_out (is_fixed o fst)); | 
| 25557 | 74 | case AList.lookup (op =) rec_fns fname of | 
| 15531 | 75 | NONE => | 
| 25557 | 76 | (fname, (tname, rpos, [(cname, (ls, cargs, rs, rhs, eqn))]))::rec_fns | 
| 15531 | 77 | | SOME (_, rpos', eqns) => | 
| 17184 | 78 | if AList.defined (op =) eqns cname then | 
| 25557 | 79 | primrec_error "constructor already occurred as pattern" | 
| 5178 | 80 | else if rpos <> rpos' then | 
| 25557 | 81 | primrec_error "position of recursive argument inconsistent" | 
| 5178 | 82 | else | 
| 25557 | 83 | AList.update (op =) | 
| 84 | (fname, (tname, rpos, (cname, (ls, cargs, rs, rhs, eqn))::eqns)) | |
| 17314 | 85 | rec_fns) | 
| 25557 | 86 | end handle PrimrecError (msg, NONE) => primrec_error_eqn msg spec; | 
| 5178 | 87 | |
| 25557 | 88 | fun process_fun descr eqns (i, fname) (fnames, fnss) = | 
| 5178 | 89 | let | 
| 25557 | 90 | val (_, (tname, _, constrs)) = nth descr i; | 
| 5178 | 91 | |
| 92 | (* substitute "fname ls x rs" by "y ls rs" for (x, (_, y)) in subs *) | |
| 93 | ||
| 21064 | 94 | fun subst [] t fs = (t, fs) | 
| 95 | | subst subs (Abs (a, T, t)) fs = | |
| 96 | fs | |
| 97 | |> subst subs t | |
| 98 | |-> (fn t' => pair (Abs (a, T, t'))) | |
| 99 | | subst subs (t as (_ $ _)) fs = | |
| 100 | let | |
| 101 | val (f, ts) = strip_comb t; | |
| 5178 | 102 | in | 
| 25557 | 103 | if is_Free f | 
| 104 | andalso member (fn ((v, _), (w, _)) => v = w) eqns (dest_Free f) then | |
| 5178 | 105 | let | 
| 25557 | 106 | val (fname', _) = dest_Free f; | 
| 107 | val (_, rpos, _) = the (AList.lookup (op =) eqns fname'); | |
| 27301 
bf7d82193a2e
fixed bind error for malformed primrec specifications
 haftmann parents: 
26679diff
changeset | 108 | val (ls, rs) = chop rpos ts | 
| 
bf7d82193a2e
fixed bind error for malformed primrec specifications
 haftmann parents: 
26679diff
changeset | 109 | val (x', rs') = case rs | 
| 
bf7d82193a2e
fixed bind error for malformed primrec specifications
 haftmann parents: 
26679diff
changeset | 110 | of x' :: rs => (x', rs) | 
| 
bf7d82193a2e
fixed bind error for malformed primrec specifications
 haftmann parents: 
26679diff
changeset | 111 |                   | [] => primrec_error ("not enough arguments in recursive application\n"
 | 
| 
bf7d82193a2e
fixed bind error for malformed primrec specifications
 haftmann parents: 
26679diff
changeset | 112 | ^ "of function " ^ quote fname' ^ " on rhs"); | 
| 
bf7d82193a2e
fixed bind error for malformed primrec specifications
 haftmann parents: 
26679diff
changeset | 113 | val (x, xs) = strip_comb x'; | 
| 21064 | 114 | in case AList.lookup (op =) subs x | 
| 115 | of NONE => | |
| 116 | fs | |
| 117 | |> fold_map (subst subs) ts | |
| 118 | |-> (fn ts' => pair (list_comb (f, ts'))) | |
| 119 | | SOME (i', y) => | |
| 120 | fs | |
| 27301 
bf7d82193a2e
fixed bind error for malformed primrec specifications
 haftmann parents: 
26679diff
changeset | 121 | |> fold_map (subst subs) (xs @ ls @ rs') | 
| 25557 | 122 | ||> process_fun descr eqns (i', fname') | 
| 21064 | 123 | |-> (fn ts' => pair (list_comb (y, ts'))) | 
| 5178 | 124 | end | 
| 125 | else | |
| 21064 | 126 | fs | 
| 127 | |> fold_map (subst subs) (f :: ts) | |
| 128 | |-> (fn (f'::ts') => pair (list_comb (f', ts'))) | |
| 5178 | 129 | end | 
| 21064 | 130 | | subst _ t fs = (t, fs); | 
| 5178 | 131 | |
| 132 | (* translate rec equations into function arguments suitable for rec comb *) | |
| 133 | ||
| 25557 | 134 | fun trans eqns (cname, cargs) (fnames', fnss', fns) = | 
| 17184 | 135 | (case AList.lookup (op =) eqns cname of | 
| 15531 | 136 |           NONE => (warning ("No equation for constructor " ^ quote cname ^
 | 
| 6427 | 137 | "\nin definition of function " ^ quote fname); | 
| 25557 | 138 |               (fnames', fnss', (Const ("HOL.undefined", dummyT))::fns))
 | 
| 15531 | 139 | | SOME (ls, cargs', rs, rhs, eq) => | 
| 5178 | 140 | let | 
| 21064 | 141 | val recs = filter (is_rec_type o snd) (cargs' ~~ cargs); | 
| 5178 | 142 | val rargs = map fst recs; | 
| 22692 | 143 | val subs = map (rpair dummyT o fst) | 
| 29276 | 144 | (rev (Term.rename_wrt_term rhs rargs)); | 
| 27301 
bf7d82193a2e
fixed bind error for malformed primrec specifications
 haftmann parents: 
26679diff
changeset | 145 | val (rhs', (fnames'', fnss'')) = subst (map2 (fn (x, y) => fn z => | 
| 
bf7d82193a2e
fixed bind error for malformed primrec specifications
 haftmann parents: 
26679diff
changeset | 146 | (Free x, (body_index y, Free z))) recs subs) rhs (fnames', fnss') | 
| 25557 | 147 | handle PrimrecError (s, NONE) => primrec_error_eqn s eq | 
| 148 | in (fnames'', fnss'', | |
| 20176 | 149 | (list_abs_free (cargs' @ subs @ ls @ rs, rhs'))::fns) | 
| 5178 | 150 | end) | 
| 151 | ||
| 25557 | 152 | in (case AList.lookup (op =) fnames i of | 
| 15531 | 153 | NONE => | 
| 25557 | 154 | if exists (fn (_, v) => fname = v) fnames then | 
| 155 |           primrec_error ("inconsistent functions for datatype " ^ quote tname)
 | |
| 5178 | 156 | else | 
| 157 | let | |
| 25557 | 158 | val (_, _, eqns) = the (AList.lookup (op =) eqns fname); | 
| 159 | val (fnames', fnss', fns) = fold_rev (trans eqns) constrs | |
| 160 | ((i, fname)::fnames, fnss, []) | |
| 5178 | 161 | in | 
| 25557 | 162 | (fnames', (i, (fname, #1 (snd (hd eqns)), fns))::fnss') | 
| 5178 | 163 | end | 
| 25557 | 164 | | SOME fname' => | 
| 165 | if fname = fname' then (fnames, fnss) | |
| 166 |         else primrec_error ("inconsistent functions for datatype " ^ quote tname))
 | |
| 5178 | 167 | end; | 
| 168 | ||
| 6359 | 169 | |
| 5178 | 170 | (* prepare functions needed for definitions *) | 
| 171 | ||
| 21064 | 172 | fun get_fns fns ((i : int, (tname, _, constrs)), rec_name) (fs, defs) = | 
| 17184 | 173 | case AList.lookup (op =) fns i of | 
| 15531 | 174 | NONE => | 
| 5178 | 175 | let | 
| 22480 | 176 |          val dummy_fns = map (fn (_, cargs) => Const ("HOL.undefined",
 | 
| 15570 | 177 | replicate ((length cargs) + (length (List.filter is_rec_type cargs))) | 
| 5178 | 178 | dummyT ---> HOLogic.unitT)) constrs; | 
| 6427 | 179 |          val _ = warning ("No function definition for datatype " ^ quote tname)
 | 
| 5178 | 180 | in | 
| 181 | (dummy_fns @ fs, defs) | |
| 182 | end | |
| 21064 | 183 | | SOME (fname, ls, fs') => (fs' @ fs, (fname, ls, rec_name, tname) :: defs); | 
| 5178 | 184 | |
| 6359 | 185 | |
| 5178 | 186 | (* make definition *) | 
| 187 | ||
| 25557 | 188 | fun make_def ctxt fixes fs (fname, ls, rec_name, tname) = | 
| 5178 | 189 | let | 
| 25557 | 190 |     val raw_rhs = fold_rev (fn T => fn t => Abs ("", T, t))
 | 
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27301diff
changeset | 191 | (map snd ls @ [dummyT]) | 
| 20176 | 192 | (list_comb (Const (rec_name, dummyT), | 
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27301diff
changeset | 193 | fs @ map Bound (0 :: (length ls downto 1)))) | 
| 25557 | 194 | val def_name = Thm.def_name (Sign.base_name fname); | 
| 195 | val rhs = singleton (Syntax.check_terms ctxt) raw_rhs; | |
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27301diff
changeset | 196 | val SOME var = get_first (fn ((b, _), mx) => | 
| 29006 | 197 | if Binding.base_name b = fname then SOME (b, mx) else NONE) fixes; | 
| 28965 | 198 | in (var, ((Binding.name def_name, []), rhs)) end; | 
| 5178 | 199 | |
| 6359 | 200 | |
| 5178 | 201 | (* find datatypes which contain all datatypes in tnames' *) | 
| 202 | ||
| 203 | fun find_dts (dt_info : datatype_info Symtab.table) _ [] = [] | |
| 204 | | find_dts dt_info tnames' (tname::tnames) = | |
| 17412 | 205 | (case Symtab.lookup dt_info tname of | 
| 25557 | 206 | NONE => primrec_error (quote tname ^ " is not a datatype") | 
| 15531 | 207 | | SOME dt => | 
| 5178 | 208 | if tnames' subset (map (#1 o snd) (#descr dt)) then | 
| 209 | (tname, dt)::(find_dts dt_info tnames' tnames) | |
| 210 | else find_dts dt_info tnames' tnames); | |
| 211 | ||
| 25557 | 212 | |
| 213 | (* primrec definition *) | |
| 214 | ||
| 20841 | 215 | local | 
| 216 | ||
| 25557 | 217 | fun prepare_spec prep_spec ctxt raw_fixes raw_spec = | 
| 218 | let | |
| 25559 | 219 | val ((fixes, spec), _) = prep_spec | 
| 220 | raw_fixes (map (single o apsnd single) raw_spec) ctxt | |
| 221 | in (fixes, map (apsnd the_single) spec) end; | |
| 25557 | 222 | |
| 25566 | 223 | fun prove_spec ctxt names rec_rewrites defs = | 
| 25557 | 224 | let | 
| 225 | val rewrites = map mk_meta_eq rec_rewrites @ map (snd o snd) defs; | |
| 226 | fun tac _ = EVERY [rewrite_goals_tac rewrites, rtac refl 1]; | |
| 25566 | 227 |     val _ = message ("Proving equations for primrec function(s) " ^ commas_quote names);
 | 
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27301diff
changeset | 228 | in map (fn (a, t) => (a, [Goal.prove ctxt [] [] t tac])) end; | 
| 25557 | 229 | |
| 26129 | 230 | fun gen_primrec set_group prep_spec raw_fixes raw_spec lthy = | 
| 5178 | 231 | let | 
| 25557 | 232 | val (fixes, spec) = prepare_spec prep_spec lthy raw_fixes raw_spec; | 
| 25559 | 233 | val eqns = fold_rev (process_eqn (fn v => Variable.is_fixed lthy v | 
| 29006 | 234 | orelse exists (fn ((w, _), _) => v = Binding.base_name w) fixes) o snd) spec []; | 
| 25557 | 235 | val tnames = distinct (op =) (map (#1 o snd) eqns); | 
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27301diff
changeset | 236 | val dts = find_dts (DatatypePackage.get_datatypes (ProofContext.theory_of lthy)) tnames tnames; | 
| 25557 | 237 |     val main_fns = map (fn (tname, {index, ...}) =>
 | 
| 238 | (index, (fst o the o find_first (fn (_, x) => #1 x = tname)) eqns)) dts; | |
| 22692 | 239 |     val {descr, rec_names, rec_rewrites, ...} =
 | 
| 25557 | 240 | if null dts then primrec_error | 
| 241 |         ("datatypes " ^ commas_quote tnames ^ "\nare not mutually recursive")
 | |
| 18362 
e8b7e0a22727
removed thms 'swap' and 'nth_map' from ML toplevel
 haftmann parents: 
18358diff
changeset | 242 | else snd (hd dts); | 
| 25557 | 243 | val (fnames, fnss) = fold_rev (process_fun descr eqns) main_fns ([], []); | 
| 21064 | 244 | val (fs, defs) = fold_rev (get_fns fnss) (descr ~~ rec_names) ([], []); | 
| 25566 | 245 | val names1 = map snd fnames; | 
| 246 | val names2 = map fst eqns; | |
| 247 | val _ = if gen_eq_set (op =) (names1, names2) then () | |
| 248 |       else primrec_error ("functions " ^ commas_quote names2 ^
 | |
| 25557 | 249 | "\nare not mutually recursive"); | 
| 28965 | 250 | val qualify = Binding.qualify | 
| 25557 | 251 | (space_implode "_" (map (Sign.base_name o #1) defs)); | 
| 28107 | 252 | val spec' = (map o apfst o apfst) qualify spec; | 
| 25570 | 253 | val simp_atts = map (Attrib.internal o K) | 
| 28703 | 254 | [Simplifier.simp_add, Code.add_default_eqn_attribute]; | 
| 8480 
50266d517b0c
Added new theory data slot for primrec equations.
 berghofe parents: 
8432diff
changeset | 255 | in | 
| 25557 | 256 | lthy | 
| 26129 | 257 | |> set_group ? LocalTheory.set_group (serial_string ()) | 
| 25557 | 258 | |> fold_map (LocalTheory.define Thm.definitionK o make_def lthy fixes fs) defs | 
| 26556 | 259 | |-> (fn defs => `(fn ctxt => prove_spec ctxt names1 rec_rewrites defs spec')) | 
| 25557 | 260 | |-> (fn simps => fold_map (LocalTheory.note Thm.theoremK) simps) | 
| 261 | |-> (fn simps' => LocalTheory.note Thm.theoremK | |
| 28965 | 262 | ((qualify (Binding.name "simps"), simp_atts), maps snd simps')) | 
| 25604 | 263 | |>> snd | 
| 25557 | 264 | end handle PrimrecError (msg, some_eqn) => | 
| 265 |     error ("Primrec definition error:\n" ^ msg ^ (case some_eqn
 | |
| 266 | of SOME eqn => "\nin\n" ^ quote (Syntax.string_of_term lthy eqn) | |
| 267 | | NONE => "")); | |
| 20841 | 268 | |
| 269 | in | |
| 270 | ||
| 26129 | 271 | val add_primrec = gen_primrec false Specification.check_specification; | 
| 272 | val add_primrec_cmd = gen_primrec true Specification.read_specification; | |
| 20841 | 273 | |
| 22692 | 274 | end; | 
| 19688 | 275 | |
| 26679 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 276 | fun add_primrec_global fixes specs thy = | 
| 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 277 | let | 
| 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 278 | val lthy = TheoryTarget.init NONE thy; | 
| 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 279 | val (simps, lthy') = add_primrec fixes specs lthy; | 
| 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 280 | val simps' = ProofContext.export lthy' lthy simps; | 
| 28394 | 281 | in (simps', LocalTheory.exit_global lthy') end; | 
| 26679 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 282 | |
| 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 283 | fun add_primrec_overloaded ops fixes specs thy = | 
| 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 284 | let | 
| 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 285 | val lthy = TheoryTarget.overloading ops thy; | 
| 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 286 | val (simps, lthy') = add_primrec fixes specs lthy; | 
| 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 287 | val simps' = ProofContext.export lthy' lthy simps; | 
| 28394 | 288 | in (simps', LocalTheory.exit_global lthy') end; | 
| 26679 
447f4872b7ee
Added add_primrec_global and add_primrec_overloaded functions (thanks to Markus).
 berghofe parents: 
26556diff
changeset | 289 | |
| 5178 | 290 | |
| 6359 | 291 | (* outer syntax *) | 
| 292 | ||
| 17057 | 293 | local structure P = OuterParse and K = OuterKeyword in | 
| 6359 | 294 | |
| 19688 | 295 | val opt_unchecked_name = | 
| 296 |   Scan.optional (P.$$$ "(" |-- P.!!!
 | |
| 297 | (((P.$$$ "unchecked" >> K true) -- Scan.optional P.name "" || | |
| 298 | P.name >> pair false) --| P.$$$ ")")) (false, ""); | |
| 299 | ||
| 25557 | 300 | val old_primrec_decl = | 
| 29006 | 301 | opt_unchecked_name -- Scan.repeat1 ((SpecParse.opt_thm_name ":" >> apfst Binding.base_name) -- P.prop); | 
| 6359 | 302 | |
| 25557 | 303 | fun pipe_error t = P.!!! (Scan.fail_with (K | 
| 304 | (cat_lines ["Equations must be separated by " ^ quote "|", quote t]))); | |
| 305 | ||
| 306 | val statement = SpecParse.opt_thm_name ":" -- P.prop --| Scan.ahead | |
| 307 |   ((P.term :-- pipe_error) || Scan.succeed ("",""));
 | |
| 308 | ||
| 309 | val statements = P.enum1 "|" statement; | |
| 310 | ||
| 311 | val primrec_decl = P.opt_target -- P.fixes --| P.$$$ "where" -- statements; | |
| 312 | ||
| 24867 | 313 | val _ = | 
| 6723 | 314 | OuterSyntax.command "primrec" "define primitive recursive functions on datatypes" K.thy_decl | 
| 25557 | 315 | ((primrec_decl >> (fn ((opt_target, raw_fixes), raw_spec) => | 
| 316 | Toplevel.local_theory opt_target (add_primrec_cmd raw_fixes raw_spec #> snd))) | |
| 317 | || (old_primrec_decl >> (fn ((unchecked, alt_name), eqns) => | |
| 20176 | 318 | Toplevel.theory (snd o | 
| 25557 | 319 | (if unchecked then OldPrimrecPackage.add_primrec_unchecked else OldPrimrecPackage.add_primrec) alt_name | 
| 320 | (map P.triple_swap eqns))))); | |
| 6359 | 321 | |
| 5178 | 322 | end; | 
| 6384 | 323 | |
| 324 | end; |