src/HOL/BNF/Tools/bnf_fp_rec_sugar.ML
author blanchet
Sun, 20 Oct 2013 23:29:49 +0200
changeset 55626 c6291ae7cd18
parent 55625 8a2a5fa8c591
child 55627 83145b857bb9
permissions -rw-r--r--
strengthened tactic
     1 (*  Title:      HOL/BNF/Tools/bnf_fp_rec_sugar.ML
     2     Author:     Lorenz Panny, TU Muenchen
     3     Copyright   2013
     4 
     5 Recursor and corecursor sugar.
     6 *)
     7 
     8 signature BNF_FP_REC_SUGAR =
     9 sig
    10   val add_primrec: (binding * typ option * mixfix) list ->
    11     (Attrib.binding * term) list -> local_theory -> (term list * thm list list) * local_theory
    12   val add_primrec_cmd: (binding * string option * mixfix) list ->
    13     (Attrib.binding * string) list -> local_theory -> (term list * thm list list) * local_theory
    14   val add_primrec_global: (binding * typ option * mixfix) list ->
    15     (Attrib.binding * term) list -> theory -> (term list * thm list list) * theory
    16   val add_primrec_overloaded: (string * (string * typ) * bool) list ->
    17     (binding * typ option * mixfix) list ->
    18     (Attrib.binding * term) list -> theory -> (term list * thm list list) * theory
    19   val add_primrec_simple: ((binding * typ) * mixfix) list -> term list ->
    20     local_theory -> (string list * (term list * (int list list * thm list list))) * local_theory
    21   val add_primcorecursive_cmd: bool ->
    22     (binding * string option * mixfix) list * ((Attrib.binding * string) * string option) list ->
    23     Proof.context -> Proof.state
    24   val add_primcorec_cmd: bool ->
    25     (binding * string option * mixfix) list * ((Attrib.binding * string) * string option) list ->
    26     local_theory -> local_theory
    27 end;
    28 
    29 structure BNF_FP_Rec_Sugar : BNF_FP_REC_SUGAR =
    30 struct
    31 
    32 open BNF_Util
    33 open BNF_FP_Util
    34 open BNF_FP_Rec_Sugar_Util
    35 open BNF_FP_Rec_Sugar_Tactics
    36 
    37 val codeN = "code";
    38 val ctrN = "ctr";
    39 val discN = "disc";
    40 val selN = "sel";
    41 
    42 val nitpicksimp_attrs = @{attributes [nitpick_simp]};
    43 val simp_attrs = @{attributes [simp]};
    44 val code_nitpicksimp_attrs = Code.add_default_eqn_attrib :: nitpicksimp_attrs;
    45 val code_nitpicksimp_simp_attrs = Code.add_default_eqn_attrib :: nitpicksimp_attrs @ simp_attrs;
    46 
    47 exception Primrec_Error of string * term list;
    48 
    49 fun primrec_error str = raise Primrec_Error (str, []);
    50 fun primrec_error_eqn str eqn = raise Primrec_Error (str, [eqn]);
    51 fun primrec_error_eqns str eqns = raise Primrec_Error (str, eqns);
    52 
    53 fun finds eq = fold_map (fn x => List.partition (curry eq x) #>> pair x);
    54 
    55 val free_name = try (fn Free (v, _) => v);
    56 val const_name = try (fn Const (v, _) => v);
    57 val undef_const = Const (@{const_name undefined}, dummyT);
    58 
    59 fun permute_args n t = list_comb (t, map Bound (0 :: (n downto 1)))
    60   |> fold (K (Term.abs (Name.uu, dummyT))) (0 upto n);
    61 val abs_tuple = HOLogic.tupled_lambda o HOLogic.mk_tuple;
    62 fun drop_All t = subst_bounds (strip_qnt_vars @{const_name all} t |> map Free |> rev,
    63   strip_qnt_body @{const_name all} t)
    64 fun abstract vs =
    65   let fun a n (t $ u) = a n t $ a n u
    66         | a n (Abs (v, T, b)) = Abs (v, T, a (n + 1) b)
    67         | a n t = let val idx = find_index (equal t) vs in
    68             if idx < 0 then t else Bound (n + idx) end
    69   in a 0 end;
    70 fun mk_prod1 Ts (t, u) = HOLogic.pair_const (fastype_of1 (Ts, t)) (fastype_of1 (Ts, u)) $ t $ u;
    71 fun mk_tuple1 Ts = the_default HOLogic.unit o try (foldr1 (mk_prod1 Ts));
    72 
    73 fun get_indices fixes t = map (fst #>> Binding.name_of #> Free) fixes
    74   |> map_index (fn (i, v) => if exists_subterm (equal v) t then SOME i else NONE)
    75   |> map_filter I;
    76 
    77 
    78 (* Primrec *)
    79 
    80 type eqn_data = {
    81   fun_name: string,
    82   rec_type: typ,
    83   ctr: term,
    84   ctr_args: term list,
    85   left_args: term list,
    86   right_args: term list,
    87   res_type: typ,
    88   rhs_term: term,
    89   user_eqn: term
    90 };
    91 
    92 fun dissect_eqn lthy fun_names eqn' =
    93   let
    94     val eqn = drop_All eqn' |> HOLogic.dest_Trueprop
    95       handle TERM _ =>
    96         primrec_error_eqn "malformed function equation (expected \"lhs = rhs\")" eqn';
    97     val (lhs, rhs) = HOLogic.dest_eq eqn
    98         handle TERM _ =>
    99           primrec_error_eqn "malformed function equation (expected \"lhs = rhs\")" eqn';
   100     val (fun_name, args) = strip_comb lhs
   101       |>> (fn x => if is_Free x then fst (dest_Free x)
   102           else primrec_error_eqn "malformed function equation (does not start with free)" eqn);
   103     val (left_args, rest) = take_prefix is_Free args;
   104     val (nonfrees, right_args) = take_suffix is_Free rest;
   105     val num_nonfrees = length nonfrees;
   106     val _ = num_nonfrees = 1 orelse if num_nonfrees = 0 then
   107       primrec_error_eqn "constructor pattern missing in left-hand side" eqn else
   108       primrec_error_eqn "more than one non-variable argument in left-hand side" eqn;
   109     val _ = member (op =) fun_names fun_name orelse
   110       primrec_error_eqn "malformed function equation (does not start with function name)" eqn
   111 
   112     val (ctr, ctr_args) = strip_comb (the_single nonfrees);
   113     val _ = try (num_binder_types o fastype_of) ctr = SOME (length ctr_args) orelse
   114       primrec_error_eqn "partially applied constructor in pattern" eqn;
   115     val _ = let val d = duplicates (op =) (left_args @ ctr_args @ right_args) in null d orelse
   116       primrec_error_eqn ("duplicate variable \"" ^ Syntax.string_of_term lthy (hd d) ^
   117         "\" in left-hand side") eqn end;
   118     val _ = forall is_Free ctr_args orelse
   119       primrec_error_eqn "non-primitive pattern in left-hand side" eqn;
   120     val _ =
   121       let val b = fold_aterms (fn x as Free (v, _) =>
   122         if (not (member (op =) (left_args @ ctr_args @ right_args) x) andalso
   123         not (member (op =) fun_names v) andalso
   124         not (Variable.is_fixed lthy v)) then cons x else I | _ => I) rhs []
   125       in
   126         null b orelse
   127         primrec_error_eqn ("extra variable(s) in right-hand side: " ^
   128           commas (map (Syntax.string_of_term lthy) b)) eqn
   129       end;
   130   in
   131     {fun_name = fun_name,
   132      rec_type = body_type (type_of ctr),
   133      ctr = ctr,
   134      ctr_args = ctr_args,
   135      left_args = left_args,
   136      right_args = right_args,
   137      res_type = map fastype_of (left_args @ right_args) ---> fastype_of rhs,
   138      rhs_term = rhs,
   139      user_eqn = eqn'}
   140   end;
   141 
   142 fun rewrite_map_arg get_ctr_pos rec_type res_type =
   143   let
   144     val pT = HOLogic.mk_prodT (rec_type, res_type);
   145 
   146     val maybe_suc = Option.map (fn x => x + 1);
   147     fun subst d (t as Bound d') = t |> d = SOME d' ? curry (op $) (fst_const pT)
   148       | subst d (Abs (v, T, b)) = Abs (v, if d = SOME ~1 then pT else T, subst (maybe_suc d) b)
   149       | subst d t =
   150         let
   151           val (u, vs) = strip_comb t;
   152           val ctr_pos = try (get_ctr_pos o the) (free_name u) |> the_default ~1;
   153         in
   154           if ctr_pos >= 0 then
   155             if d = SOME ~1 andalso length vs = ctr_pos then
   156               list_comb (permute_args ctr_pos (snd_const pT), vs)
   157             else if length vs > ctr_pos andalso is_some d
   158                 andalso d = try (fn Bound n => n) (nth vs ctr_pos) then
   159               list_comb (snd_const pT $ nth vs ctr_pos, map (subst d) (nth_drop ctr_pos vs))
   160             else
   161               primrec_error_eqn ("recursive call not directly applied to constructor argument") t
   162           else if d = SOME ~1 andalso const_name u = SOME @{const_name comp} then
   163             list_comb (map_types (K dummyT) u, map2 subst [NONE, d] vs)
   164           else
   165             list_comb (u, map (subst (d |> d = SOME ~1 ? K NONE)) vs)
   166         end
   167   in
   168     subst (SOME ~1)
   169   end;
   170 
   171 fun subst_rec_calls lthy get_ctr_pos has_call ctr_args mutual_calls nested_calls =
   172   let
   173     fun try_nested_rec bound_Ts y t =
   174       AList.lookup (op =) nested_calls y
   175       |> Option.map (fn y' =>
   176         massage_nested_rec_call lthy has_call (rewrite_map_arg get_ctr_pos) bound_Ts y y' t);
   177 
   178     fun subst bound_Ts (t as g' $ y) =
   179         let
   180           fun subst_rec () = subst bound_Ts g' $ subst bound_Ts y;
   181           val y_head = head_of y;
   182         in
   183           if not (member (op =) ctr_args y_head) then
   184             subst_rec ()
   185           else
   186             (case try_nested_rec bound_Ts y_head t of
   187               SOME t' => t'
   188             | NONE =>
   189               let val (g, g_args) = strip_comb g' in
   190                 (case try (get_ctr_pos o the) (free_name g) of
   191                   SOME ctr_pos =>
   192                   (length g_args >= ctr_pos orelse
   193                    primrec_error_eqn "too few arguments in recursive call" t;
   194                    (case AList.lookup (op =) mutual_calls y of
   195                      SOME y' => list_comb (y', g_args)
   196                    | NONE => subst_rec ()))
   197                 | NONE => subst_rec ())
   198               end)
   199         end
   200       | subst bound_Ts (Abs (v, T, b)) = Abs (v, T, subst (T :: bound_Ts) b)
   201       | subst _ t = t
   202 
   203     fun subst' t =
   204       if has_call t then
   205         (* FIXME detect this case earlier? *)
   206         primrec_error_eqn "recursive call not directly applied to constructor argument" t
   207       else
   208         try_nested_rec [] (head_of t) t |> the_default t
   209   in
   210     subst' o subst []
   211   end;
   212 
   213 fun build_rec_arg lthy (funs_data : eqn_data list list) has_call (ctr_spec : rec_ctr_spec)
   214     (maybe_eqn_data : eqn_data option) =
   215   if is_none maybe_eqn_data then undef_const else
   216     let
   217       val eqn_data = the maybe_eqn_data;
   218       val t = #rhs_term eqn_data;
   219       val ctr_args = #ctr_args eqn_data;
   220 
   221       val calls = #calls ctr_spec;
   222       val n_args = fold (curry (op +) o (fn Mutual_Rec _ => 2 | _ => 1)) calls 0;
   223 
   224       val no_calls' = tag_list 0 calls
   225         |> map_filter (try (apsnd (fn No_Rec n => n | Mutual_Rec (n, _) => n)));
   226       val mutual_calls' = tag_list 0 calls
   227         |> map_filter (try (apsnd (fn Mutual_Rec (_, n) => n)));
   228       val nested_calls' = tag_list 0 calls
   229         |> map_filter (try (apsnd (fn Nested_Rec n => n)));
   230 
   231       fun make_mutual_type _ = dummyT; (* FIXME? *)
   232 
   233       val rec_res_type_list = map (fn (x :: _) => (#rec_type x, #res_type x)) funs_data;
   234 
   235       fun make_nested_type (Type (Tname, Ts)) = Type (Tname, Ts |> map (fn T =>
   236         let val maybe_res_type = AList.lookup (op =) rec_res_type_list T in
   237           if is_some maybe_res_type
   238           then HOLogic.mk_prodT (T, the maybe_res_type)
   239           else make_nested_type T end))
   240         | make_nested_type T = T;
   241 
   242       val args = replicate n_args ("", dummyT)
   243         |> Term.rename_wrt_term t
   244         |> map Free
   245         |> fold (fn (ctr_arg_idx, arg_idx) =>
   246             nth_map arg_idx (K (nth ctr_args ctr_arg_idx)))
   247           no_calls'
   248         |> fold (fn (ctr_arg_idx, arg_idx) =>
   249             nth_map arg_idx (K (nth ctr_args ctr_arg_idx |> map_types make_mutual_type)))
   250           mutual_calls'
   251         |> fold (fn (ctr_arg_idx, arg_idx) =>
   252             nth_map arg_idx (K (nth ctr_args ctr_arg_idx |> map_types make_nested_type)))
   253           nested_calls';
   254 
   255       val fun_name_ctr_pos_list =
   256         map (fn (x :: _) => (#fun_name x, length (#left_args x))) funs_data;
   257       val get_ctr_pos = try (the o AList.lookup (op =) fun_name_ctr_pos_list) #> the_default ~1;
   258       val mutual_calls = map (apfst (nth ctr_args) o apsnd (nth args)) mutual_calls';
   259       val nested_calls = map (apfst (nth ctr_args) o apsnd (nth args)) nested_calls';
   260 
   261       val abstractions = args @ #left_args eqn_data @ #right_args eqn_data;
   262     in
   263       t
   264       |> subst_rec_calls lthy get_ctr_pos has_call ctr_args mutual_calls nested_calls
   265       |> fold_rev lambda abstractions
   266     end;
   267 
   268 fun build_defs lthy bs mxs (funs_data : eqn_data list list) (rec_specs : rec_spec list) has_call =
   269   let
   270     val n_funs = length funs_data;
   271 
   272     val ctr_spec_eqn_data_list' =
   273       (take n_funs rec_specs |> map #ctr_specs) ~~ funs_data
   274       |> maps (uncurry (finds (fn (x, y) => #ctr x = #ctr y))
   275           ##> (fn x => null x orelse
   276             primrec_error_eqns "excess equations in definition" (map #rhs_term x)) #> fst);
   277     val _ = ctr_spec_eqn_data_list' |> map (fn (_, x) => length x <= 1 orelse
   278       primrec_error_eqns ("multiple equations for constructor") (map #user_eqn x));
   279 
   280     val ctr_spec_eqn_data_list =
   281       ctr_spec_eqn_data_list' @ (drop n_funs rec_specs |> maps #ctr_specs |> map (rpair []));
   282 
   283     val recs = take n_funs rec_specs |> map #recx;
   284     val rec_args = ctr_spec_eqn_data_list
   285       |> sort ((op <) o pairself (#offset o fst) |> make_ord)
   286       |> map (uncurry (build_rec_arg lthy funs_data has_call) o apsnd (try the_single));
   287     val ctr_poss = map (fn x =>
   288       if length (distinct ((op =) o pairself (length o #left_args)) x) <> 1 then
   289         primrec_error ("inconstant constructor pattern position for function " ^
   290           quote (#fun_name (hd x)))
   291       else
   292         hd x |> #left_args |> length) funs_data;
   293   in
   294     (recs, ctr_poss)
   295     |-> map2 (fn recx => fn ctr_pos => list_comb (recx, rec_args) |> permute_args ctr_pos)
   296     |> Syntax.check_terms lthy
   297     |> map3 (fn b => fn mx => fn t => ((b, mx), ((Binding.conceal (Thm.def_binding b), []), t)))
   298       bs mxs
   299   end;
   300 
   301 fun find_rec_calls has_call (eqn_data : eqn_data) =
   302   let
   303     fun find (Abs (_, _, b)) ctr_arg = find b ctr_arg
   304       | find (t as _ $ _) ctr_arg =
   305         let
   306           val (f', args') = strip_comb t;
   307           val n = find_index (equal ctr_arg) args';
   308         in
   309           if n < 0 then
   310             find f' ctr_arg @ maps (fn x => find x ctr_arg) args'
   311           else
   312             let val (f, args) = chop n args' |>> curry list_comb f' in
   313               if has_call f then
   314                 f :: maps (fn x => find x ctr_arg) args
   315               else
   316                 find f ctr_arg @ maps (fn x => find x ctr_arg) args
   317             end
   318         end
   319       | find _ _ = [];
   320   in
   321     map (find (#rhs_term eqn_data)) (#ctr_args eqn_data)
   322     |> (fn [] => NONE | callss => SOME (#ctr eqn_data, callss))
   323   end;
   324 
   325 fun prepare_primrec fixes specs lthy =
   326   let
   327     val (bs, mxs) = map_split (apfst fst) fixes;
   328     val fun_names = map Binding.name_of bs;
   329     val eqns_data = map (dissect_eqn lthy fun_names) specs;
   330     val funs_data = eqns_data
   331       |> partition_eq ((op =) o pairself #fun_name)
   332       |> finds (fn (x, y) => x = #fun_name (hd y)) fun_names |> fst
   333       |> map (fn (x, y) => the_single y handle List.Empty =>
   334           primrec_error ("missing equations for function " ^ quote x));
   335 
   336     val has_call = exists_subterm (map (fst #>> Binding.name_of #> Free) fixes |> member (op =));
   337     val arg_Ts = map (#rec_type o hd) funs_data;
   338     val res_Ts = map (#res_type o hd) funs_data;
   339     val callssss = funs_data
   340       |> map (partition_eq ((op =) o pairself #ctr))
   341       |> map (maps (map_filter (find_rec_calls has_call)));
   342 
   343     val ((n2m, rec_specs, _, induct_thm, induct_thms), lthy') =
   344       rec_specs_of bs arg_Ts res_Ts (get_indices fixes) callssss lthy;
   345 
   346     val actual_nn = length funs_data;
   347 
   348     val _ = let val ctrs = (maps (map #ctr o #ctr_specs) rec_specs) in
   349       map (fn {ctr, user_eqn, ...} => member (op =) ctrs ctr orelse
   350         primrec_error_eqn ("argument " ^ quote (Syntax.string_of_term lthy' ctr) ^
   351           " is not a constructor in left-hand side") user_eqn) eqns_data end;
   352 
   353     val defs = build_defs lthy' bs mxs funs_data rec_specs has_call;
   354 
   355     fun prove lthy def_thms' ({ctr_specs, nested_map_idents, nested_map_comps, ...} : rec_spec)
   356         (fun_data : eqn_data list) =
   357       let
   358         val def_thms = map (snd o snd) def_thms';
   359         val simp_thmss = finds (fn (x, y) => #ctr x = #ctr y) fun_data ctr_specs
   360           |> fst
   361           |> map_filter (try (fn (x, [y]) =>
   362             (#user_eqn x, length (#left_args x) + length (#right_args x), #rec_thm y)))
   363           |> map (fn (user_eqn, num_extra_args, rec_thm) =>
   364             mk_primrec_tac lthy num_extra_args nested_map_idents nested_map_comps def_thms rec_thm
   365             |> K |> Goal.prove lthy [] [] user_eqn);
   366         val poss = find_indices (fn (x, y) => #ctr x = #ctr y) fun_data eqns_data;
   367       in
   368         (poss, simp_thmss)
   369       end;
   370 
   371     val notes =
   372       (if n2m then map2 (fn name => fn thm =>
   373         (name, inductN, [thm], [])) fun_names (take actual_nn induct_thms) else [])
   374       |> map (fn (prefix, thmN, thms, attrs) =>
   375         ((Binding.qualify true prefix (Binding.name thmN), attrs), [(thms, [])]));
   376 
   377     val common_name = mk_common_name fun_names;
   378 
   379     val common_notes =
   380       (if n2m then [(inductN, [induct_thm], [])] else [])
   381       |> map (fn (thmN, thms, attrs) =>
   382         ((Binding.qualify true common_name (Binding.name thmN), attrs), [(thms, [])]));
   383   in
   384     (((fun_names, defs),
   385       fn lthy => fn defs =>
   386         split_list (map2 (prove lthy defs) (take actual_nn rec_specs) funs_data)),
   387       lthy' |> Local_Theory.notes (notes @ common_notes) |> snd)
   388   end;
   389 
   390 (* primrec definition *)
   391 
   392 fun add_primrec_simple fixes ts lthy =
   393   let
   394     val (((names, defs), prove), lthy) = prepare_primrec fixes ts lthy
   395       handle ERROR str => primrec_error str;
   396   in
   397     lthy
   398     |> fold_map Local_Theory.define defs
   399     |-> (fn defs => `(fn lthy => (names, (map fst defs, prove lthy defs))))
   400   end
   401   handle Primrec_Error (str, eqns) =>
   402     if null eqns
   403     then error ("primrec_new error:\n  " ^ str)
   404     else error ("primrec_new error:\n  " ^ str ^ "\nin\n  " ^
   405       space_implode "\n  " (map (quote o Syntax.string_of_term lthy) eqns));
   406 
   407 local
   408 
   409 fun gen_primrec prep_spec (raw_fixes : (binding * 'a option * mixfix) list) raw_spec lthy =
   410   let
   411     val d = duplicates (op =) (map (Binding.name_of o #1) raw_fixes)
   412     val _ = null d orelse primrec_error ("duplicate function name(s): " ^ commas d);
   413 
   414     val (fixes, specs) = fst (prep_spec raw_fixes raw_spec lthy);
   415 
   416     val mk_notes =
   417       flat ooo map3 (fn poss => fn prefix => fn thms =>
   418         let
   419           val (bs, attrss) = map_split (fst o nth specs) poss;
   420           val notes =
   421             map3 (fn b => fn attrs => fn thm =>
   422               ((Binding.qualify false prefix b, code_nitpicksimp_simp_attrs @ attrs), [([thm], [])]))
   423             bs attrss thms;
   424         in
   425           ((Binding.qualify true prefix (Binding.name simpsN), []), [(thms, [])]) :: notes
   426         end);
   427   in
   428     lthy
   429     |> add_primrec_simple fixes (map snd specs)
   430     |-> (fn (names, (ts, (posss, simpss))) =>
   431       Spec_Rules.add Spec_Rules.Equational (ts, flat simpss)
   432       #> Local_Theory.notes (mk_notes posss names simpss)
   433       #>> pair ts o map snd)
   434   end;
   435 
   436 in
   437 
   438 val add_primrec = gen_primrec Specification.check_spec;
   439 val add_primrec_cmd = gen_primrec Specification.read_spec;
   440 
   441 end;
   442 
   443 fun add_primrec_global fixes specs thy =
   444   let
   445     val lthy = Named_Target.theory_init thy;
   446     val ((ts, simps), lthy') = add_primrec fixes specs lthy;
   447     val simps' = burrow (Proof_Context.export lthy' lthy) simps;
   448   in ((ts, simps'), Local_Theory.exit_global lthy') end;
   449 
   450 fun add_primrec_overloaded ops fixes specs thy =
   451   let
   452     val lthy = Overloading.overloading ops thy;
   453     val ((ts, simps), lthy') = add_primrec fixes specs lthy;
   454     val simps' = burrow (Proof_Context.export lthy' lthy) simps;
   455   in ((ts, simps'), Local_Theory.exit_global lthy') end;
   456 
   457 
   458 
   459 (* Primcorec *)
   460 
   461 type coeqn_data_disc = {
   462   fun_name: string,
   463   fun_T: typ,
   464   fun_args: term list,
   465   ctr: term,
   466   ctr_no: int, (*###*)
   467   disc: term,
   468   prems: term list,
   469   auto_gen: bool,
   470   maybe_ctr_rhs: term option,
   471   maybe_code_rhs: term option,
   472   user_eqn: term
   473 };
   474 
   475 type coeqn_data_sel = {
   476   fun_name: string,
   477   fun_T: typ,
   478   fun_args: term list,
   479   ctr: term,
   480   sel: term,
   481   rhs_term: term,
   482   user_eqn: term
   483 };
   484 
   485 datatype coeqn_data =
   486   Disc of coeqn_data_disc |
   487   Sel of coeqn_data_sel;
   488 
   489 fun dissect_coeqn_disc seq fun_names (basic_ctr_specss : basic_corec_ctr_spec list list)
   490     maybe_ctr_rhs maybe_code_rhs prems' concl matchedsss =
   491   let
   492     fun find_subterm p = let (* FIXME \<exists>? *)
   493       fun f (t as u $ v) = if p t then SOME t else merge_options (f u, f v)
   494         | f t = if p t then SOME t else NONE
   495       in f end;
   496 
   497     val applied_fun = concl
   498       |> find_subterm (member ((op =) o apsnd SOME) fun_names o try (fst o dest_Free o head_of))
   499       |> the
   500       handle Option.Option => primrec_error_eqn "malformed discriminator equation" concl;
   501     val ((fun_name, fun_T), fun_args) = strip_comb applied_fun |>> dest_Free;
   502     val basic_ctr_specs = the (AList.lookup (op =) (fun_names ~~ basic_ctr_specss) fun_name);
   503 
   504     val discs = map #disc basic_ctr_specs;
   505     val ctrs = map #ctr basic_ctr_specs;
   506     val not_disc = head_of concl = @{term Not};
   507     val _ = not_disc andalso length ctrs <> 2 andalso
   508       primrec_error_eqn "\<not>ed discriminator for a type with \<noteq> 2 constructors" concl;
   509     val disc' = find_subterm (member (op =) discs o head_of) concl;
   510     val eq_ctr0 = concl |> perhaps (try (HOLogic.dest_not)) |> try (HOLogic.dest_eq #> snd)
   511         |> (fn SOME t => let val n = find_index (equal t) ctrs in
   512           if n >= 0 then SOME n else NONE end | _ => NONE);
   513     val _ = is_some disc' orelse is_some eq_ctr0 orelse
   514       primrec_error_eqn "no discriminator in equation" concl;
   515     val ctr_no' =
   516       if is_none disc' then the eq_ctr0 else find_index (equal (head_of (the disc'))) discs;
   517     val ctr_no = if not_disc then 1 - ctr_no' else ctr_no';
   518     val {ctr, disc, ...} = nth basic_ctr_specs ctr_no;
   519 
   520     val catch_all = try (fst o dest_Free o the_single) prems' = SOME Name.uu_;
   521     val matchedss = AList.lookup (op =) matchedsss fun_name |> the_default [];
   522     val prems = map (abstract (List.rev fun_args)) prems';
   523     val real_prems =
   524       (if catch_all orelse seq then maps s_not_conj matchedss else []) @
   525       (if catch_all then [] else prems);
   526 
   527     val matchedsss' = AList.delete (op =) fun_name matchedsss
   528       |> cons (fun_name, if seq then matchedss @ [prems] else matchedss @ [real_prems]);
   529 
   530     val user_eqn =
   531       (real_prems, concl)
   532       |>> map HOLogic.mk_Trueprop ||> HOLogic.mk_Trueprop o abstract (List.rev fun_args)
   533       |> curry Logic.list_all (map dest_Free fun_args) o Logic.list_implies;
   534   in
   535     (Disc {
   536       fun_name = fun_name,
   537       fun_T = fun_T,
   538       fun_args = fun_args,
   539       ctr = ctr,
   540       ctr_no = ctr_no,
   541       disc = disc,
   542       prems = real_prems,
   543       auto_gen = catch_all,
   544       maybe_ctr_rhs = maybe_ctr_rhs,
   545       maybe_code_rhs = maybe_code_rhs,
   546       user_eqn = user_eqn
   547     }, matchedsss')
   548   end;
   549 
   550 fun dissect_coeqn_sel fun_names (basic_ctr_specss : basic_corec_ctr_spec list list) eqn' of_spec
   551     eqn =
   552   let
   553     val (lhs, rhs) = HOLogic.dest_eq eqn
   554       handle TERM _ =>
   555         primrec_error_eqn "malformed function equation (expected \"lhs = rhs\")" eqn;
   556     val sel = head_of lhs;
   557     val ((fun_name, fun_T), fun_args) = dest_comb lhs |> snd |> strip_comb |> apfst dest_Free
   558       handle TERM _ =>
   559         primrec_error_eqn "malformed selector argument in left-hand side" eqn;
   560     val basic_ctr_specs = the (AList.lookup (op =) (fun_names ~~ basic_ctr_specss) fun_name)
   561       handle Option.Option => primrec_error_eqn "malformed selector argument in left-hand side" eqn;
   562     val {ctr, ...} =
   563       if is_some of_spec
   564       then the (find_first (equal (the of_spec) o #ctr) basic_ctr_specs)
   565       else filter (exists (equal sel) o #sels) basic_ctr_specs |> the_single
   566         handle List.Empty => primrec_error_eqn "ambiguous selector - use \"of\"" eqn;
   567     val user_eqn = drop_All eqn';
   568   in
   569     Sel {
   570       fun_name = fun_name,
   571       fun_T = fun_T,
   572       fun_args = fun_args,
   573       ctr = ctr,
   574       sel = sel,
   575       rhs_term = rhs,
   576       user_eqn = user_eqn
   577     }
   578   end;
   579 
   580 fun dissect_coeqn_ctr seq fun_names (basic_ctr_specss : basic_corec_ctr_spec list list) eqn'
   581     maybe_code_rhs prems concl matchedsss =
   582   let
   583     val (lhs, rhs) = HOLogic.dest_eq concl;
   584     val (fun_name, fun_args) = strip_comb lhs |>> fst o dest_Free;
   585     val basic_ctr_specs = the (AList.lookup (op =) (fun_names ~~ basic_ctr_specss) fun_name);
   586     val (ctr, ctr_args) = strip_comb (unfold_let rhs);
   587     val {disc, sels, ...} = the (find_first (equal ctr o #ctr) basic_ctr_specs)
   588       handle Option.Option => primrec_error_eqn "not a constructor" ctr;
   589 
   590     val disc_concl = betapply (disc, lhs);
   591     val (maybe_eqn_data_disc, matchedsss') = if length basic_ctr_specs = 1
   592       then (NONE, matchedsss)
   593       else apfst SOME (dissect_coeqn_disc seq fun_names basic_ctr_specss
   594           (SOME (abstract (List.rev fun_args) rhs)) maybe_code_rhs prems disc_concl matchedsss);
   595 
   596     val sel_concls = sels ~~ ctr_args
   597       |> map (fn (sel, ctr_arg) => HOLogic.mk_eq (betapply (sel, lhs), ctr_arg));
   598 
   599 (*
   600 val _ = tracing ("reduced\n    " ^ Syntax.string_of_term @{context} concl ^ "\nto\n    \<cdot> " ^
   601  (is_some maybe_eqn_data_disc ? K (Syntax.string_of_term @{context} disc_concl ^ "\n    \<cdot> ")) "" ^
   602  space_implode "\n    \<cdot> " (map (Syntax.string_of_term @{context}) sel_concls) ^
   603  "\nfor premise(s)\n    \<cdot> " ^
   604  space_implode "\n    \<cdot> " (map (Syntax.string_of_term @{context}) prems));
   605 *)
   606 
   607     val eqns_data_sel =
   608       map (dissect_coeqn_sel fun_names basic_ctr_specss eqn' (SOME ctr)) sel_concls;
   609   in
   610     (the_list maybe_eqn_data_disc @ eqns_data_sel, matchedsss')
   611   end;
   612 
   613 fun dissect_coeqn_code lthy has_call fun_names basic_ctr_specss eqn' concl matchedsss =
   614   let
   615     val (lhs, (rhs', rhs)) = HOLogic.dest_eq concl ||> `(expand_corec_code_rhs lthy has_call []);
   616     val (fun_name, fun_args) = strip_comb lhs |>> fst o dest_Free;
   617     val basic_ctr_specs = the (AList.lookup (op =) (fun_names ~~ basic_ctr_specss) fun_name);
   618 
   619     val cond_ctrs = fold_rev_corec_code_rhs lthy (fn cs => fn ctr => fn _ =>
   620         if member ((op =) o apsnd #ctr) basic_ctr_specs ctr
   621         then cons (ctr, cs)
   622         else primrec_error_eqn "not a constructor" ctr) [] rhs' []
   623       |> AList.group (op =);
   624 
   625     val ctr_premss = (case cond_ctrs of [_] => [[]] | _ => map (s_dnf o snd) cond_ctrs);
   626     val ctr_concls = cond_ctrs |> map (fn (ctr, _) =>
   627         binder_types (fastype_of ctr)
   628         |> map_index (fn (n, T) => massage_corec_code_rhs lthy (fn _ => fn ctr' => fn args =>
   629           if ctr' = ctr then nth args n else Const (@{const_name undefined}, T)) [] rhs')
   630         |> curry list_comb ctr
   631         |> curry HOLogic.mk_eq lhs);
   632   in
   633     fold_map2 (dissect_coeqn_ctr false fun_names basic_ctr_specss eqn'
   634         (SOME (abstract (List.rev fun_args) rhs)))
   635       ctr_premss ctr_concls matchedsss
   636   end;
   637 
   638 fun dissect_coeqn lthy seq has_call fun_names (basic_ctr_specss : basic_corec_ctr_spec list list)
   639     eqn' of_spec matchedsss =
   640   let
   641     val eqn = drop_All eqn'
   642       handle TERM _ => primrec_error_eqn "malformed function equation" eqn';
   643     val (prems, concl) = Logic.strip_horn eqn
   644       |> apfst (map HOLogic.dest_Trueprop) o apsnd HOLogic.dest_Trueprop;
   645 
   646     val head = concl
   647       |> perhaps (try HOLogic.dest_not) |> perhaps (try (fst o HOLogic.dest_eq))
   648       |> head_of;
   649 
   650     val maybe_rhs = concl |> perhaps (try (HOLogic.dest_not)) |> try (snd o HOLogic.dest_eq);
   651 
   652     val discs = maps (map #disc) basic_ctr_specss;
   653     val sels = maps (maps #sels) basic_ctr_specss;
   654     val ctrs = maps (map #ctr) basic_ctr_specss;
   655   in
   656     if member (op =) discs head orelse
   657       is_some maybe_rhs andalso
   658         member (op =) (filter (null o binder_types o fastype_of) ctrs) (the maybe_rhs) then
   659       dissect_coeqn_disc seq fun_names basic_ctr_specss NONE NONE prems concl matchedsss
   660       |>> single
   661     else if member (op =) sels head then
   662       ([dissect_coeqn_sel fun_names basic_ctr_specss eqn' of_spec concl], matchedsss)
   663     else if is_Free head andalso member (op =) fun_names (fst (dest_Free head)) andalso
   664       member (op =) ctrs (head_of (unfold_let (the maybe_rhs))) then
   665       dissect_coeqn_ctr seq fun_names basic_ctr_specss eqn' NONE prems concl matchedsss
   666     else if is_Free head andalso member (op =) fun_names (fst (dest_Free head)) andalso
   667       null prems then
   668       dissect_coeqn_code lthy has_call fun_names basic_ctr_specss eqn' concl matchedsss
   669       |>> flat
   670     else
   671       primrec_error_eqn "malformed function equation" eqn
   672   end;
   673 
   674 fun build_corec_arg_disc (ctr_specs : corec_ctr_spec list)
   675     ({fun_args, ctr_no, prems, ...} : coeqn_data_disc) =
   676   if is_none (#pred (nth ctr_specs ctr_no)) then I else
   677     s_conjs prems
   678     |> curry subst_bounds (List.rev fun_args)
   679     |> HOLogic.tupled_lambda (HOLogic.mk_tuple fun_args)
   680     |> K |> nth_map (the (#pred (nth ctr_specs ctr_no)));
   681 
   682 fun build_corec_arg_no_call (sel_eqns : coeqn_data_sel list) sel =
   683   find_first (equal sel o #sel) sel_eqns
   684   |> try (fn SOME {fun_args, rhs_term, ...} => abs_tuple fun_args rhs_term)
   685   |> the_default undef_const
   686   |> K;
   687 
   688 fun build_corec_args_mutual_call lthy has_call (sel_eqns : coeqn_data_sel list) sel =
   689   let
   690     val maybe_sel_eqn = find_first (equal sel o #sel) sel_eqns;
   691   in
   692     if is_none maybe_sel_eqn then (I, I, I) else
   693     let
   694       val {fun_args, rhs_term, ... } = the maybe_sel_eqn;
   695       val bound_Ts = List.rev (map fastype_of fun_args);
   696       fun rewrite_q _ t = if has_call t then @{term False} else @{term True};
   697       fun rewrite_g _ t = if has_call t then undef_const else t;
   698       fun rewrite_h bound_Ts t =
   699         if has_call t then mk_tuple1 bound_Ts (snd (strip_comb t)) else undef_const;
   700       fun massage f _ = massage_mutual_corec_call lthy has_call f bound_Ts rhs_term
   701         |> abs_tuple fun_args;
   702     in
   703       (massage rewrite_q,
   704        massage rewrite_g,
   705        massage rewrite_h)
   706     end
   707   end;
   708 
   709 fun build_corec_arg_nested_call lthy has_call (sel_eqns : coeqn_data_sel list) sel =
   710   let
   711     val maybe_sel_eqn = find_first (equal sel o #sel) sel_eqns;
   712   in
   713     if is_none maybe_sel_eqn then I else
   714     let
   715       val {fun_args, rhs_term, ...} = the maybe_sel_eqn;
   716       val bound_Ts = List.rev (map fastype_of fun_args);
   717       fun rewrite bound_Ts U T (Abs (v, V, b)) = Abs (v, V, rewrite (V :: bound_Ts) U T b)
   718         | rewrite bound_Ts U T (t as _ $ _) =
   719           let val (u, vs) = strip_comb t in
   720             if is_Free u andalso has_call u then
   721               Inr_const U T $ mk_tuple1 bound_Ts vs
   722             else if try (fst o dest_Const) u = SOME @{const_name prod_case} then
   723               map (rewrite bound_Ts U T) vs |> chop 1 |>> HOLogic.mk_split o the_single |> list_comb
   724             else
   725               list_comb (rewrite bound_Ts U T u, map (rewrite bound_Ts U T) vs)
   726           end
   727         | rewrite _ U T t =
   728           if is_Free t andalso has_call t then Inr_const U T $ HOLogic.unit else t;
   729       fun massage t =
   730         rhs_term
   731         |> massage_nested_corec_call lthy has_call rewrite bound_Ts (range_type (fastype_of t))
   732         |> abs_tuple fun_args;
   733     in
   734       massage
   735     end
   736   end;
   737 
   738 fun build_corec_args_sel lthy has_call (all_sel_eqns : coeqn_data_sel list)
   739     (ctr_spec : corec_ctr_spec) =
   740   let val sel_eqns = filter (equal (#ctr ctr_spec) o #ctr) all_sel_eqns in
   741     if null sel_eqns then I else
   742       let
   743         val sel_call_list = #sels ctr_spec ~~ #calls ctr_spec;
   744 
   745         val no_calls' = map_filter (try (apsnd (fn No_Corec n => n))) sel_call_list;
   746         val mutual_calls' = map_filter (try (apsnd (fn Mutual_Corec n => n))) sel_call_list;
   747         val nested_calls' = map_filter (try (apsnd (fn Nested_Corec n => n))) sel_call_list;
   748       in
   749         I
   750         #> fold (fn (sel, n) => nth_map n (build_corec_arg_no_call sel_eqns sel)) no_calls'
   751         #> fold (fn (sel, (q, g, h)) =>
   752           let val (fq, fg, fh) = build_corec_args_mutual_call lthy has_call sel_eqns sel in
   753             nth_map q fq o nth_map g fg o nth_map h fh end) mutual_calls'
   754         #> fold (fn (sel, n) => nth_map n
   755           (build_corec_arg_nested_call lthy has_call sel_eqns sel)) nested_calls'
   756       end
   757   end;
   758 
   759 fun build_codefs lthy bs mxs has_call arg_Tss (corec_specs : corec_spec list)
   760     (disc_eqnss : coeqn_data_disc list list) (sel_eqnss : coeqn_data_sel list list) =
   761   let
   762     val corecs = map #corec corec_specs;
   763     val ctr_specss = map #ctr_specs corec_specs;
   764     val corec_args = hd corecs
   765       |> fst o split_last o binder_types o fastype_of
   766       |> map (Const o pair @{const_name undefined})
   767       |> fold2 (fold o build_corec_arg_disc) ctr_specss disc_eqnss
   768       |> fold2 (fold o build_corec_args_sel lthy has_call) sel_eqnss ctr_specss;
   769     fun currys [] t = t
   770       | currys Ts t = t $ mk_tuple1 (List.rev Ts) (map Bound (length Ts - 1 downto 0))
   771           |> fold_rev (Term.abs o pair Name.uu) Ts;
   772 
   773 (*
   774 val _ = tracing ("corecursor arguments:\n    \<cdot> " ^
   775  space_implode "\n    \<cdot> " (map (Syntax.string_of_term lthy) corec_args));
   776 *)
   777 
   778     val exclss' =
   779       disc_eqnss
   780       |> map (map (fn x => (#fun_args x, #ctr_no x, #prems x, #auto_gen x))
   781         #> fst o (fn xs => fold_map (fn x => fn ys => ((x, ys), ys @ [x])) xs [])
   782         #> maps (uncurry (map o pair)
   783           #> map (fn ((fun_args, c, x, a), (_, c', y, a')) =>
   784               ((c, c', a orelse a'), (x, s_not (s_conjs y)))
   785             ||> apfst (map HOLogic.mk_Trueprop) o apsnd HOLogic.mk_Trueprop
   786             ||> Logic.list_implies
   787             ||> curry Logic.list_all (map dest_Free fun_args))))
   788   in
   789     map (list_comb o rpair corec_args) corecs
   790     |> map2 (fn Ts => fn t => if length Ts = 0 then t $ HOLogic.unit else t) arg_Tss
   791     |> map2 currys arg_Tss
   792     |> Syntax.check_terms lthy
   793     |> map3 (fn b => fn mx => fn t => ((b, mx), ((Binding.conceal (Thm.def_binding b), []), t)))
   794       bs mxs
   795     |> rpair exclss'
   796   end;
   797 
   798 fun mk_real_disc_eqns fun_binding arg_Ts ({ctr_specs, ...} : corec_spec)
   799     (sel_eqns : coeqn_data_sel list) (disc_eqns : coeqn_data_disc list) =
   800   if length disc_eqns <> length ctr_specs - 1 then disc_eqns else
   801     let
   802       val n = 0 upto length ctr_specs
   803         |> the o find_first (fn idx => not (exists (equal idx o #ctr_no) disc_eqns));
   804       val fun_args = (try (#fun_args o hd) disc_eqns, try (#fun_args o hd) sel_eqns)
   805         |> the_default (map (curry Free Name.uu) arg_Ts) o merge_options;
   806       val extra_disc_eqn = {
   807         fun_name = Binding.name_of fun_binding,
   808         fun_T = arg_Ts ---> body_type (fastype_of (#ctr (hd ctr_specs))),
   809         fun_args = fun_args,
   810         ctr = #ctr (nth ctr_specs n),
   811         ctr_no = n,
   812         disc = #disc (nth ctr_specs n),
   813         prems = maps (s_not_conj o #prems) disc_eqns,
   814         auto_gen = true,
   815         maybe_ctr_rhs = NONE,
   816         maybe_code_rhs = NONE,
   817         user_eqn = undef_const};
   818     in
   819       chop n disc_eqns ||> cons extra_disc_eqn |> (op @)
   820     end;
   821 
   822 fun find_corec_calls has_call basic_ctr_specs {ctr, sel, rhs_term, ...} =
   823   let
   824     val sel_no = find_first (equal ctr o #ctr) basic_ctr_specs
   825       |> find_index (equal sel) o #sels o the;
   826     fun find (Abs (_, _, b)) = find b
   827       | find (t as _ $ _) = strip_comb t |>> find ||> maps find |> (op @)
   828       | find f = if is_Free f andalso has_call f then [f] else [];
   829   in
   830     find rhs_term
   831     |> K |> nth_map sel_no |> AList.map_entry (op =) ctr
   832   end;
   833 
   834 fun add_primcorec simple seq fixes specs of_specs lthy =
   835   let
   836     val (bs, mxs) = map_split (apfst fst) fixes;
   837     val (arg_Ts, res_Ts) = map (strip_type o snd o fst #>> HOLogic.mk_tupleT) fixes |> split_list;
   838 
   839     val fun_names = map Binding.name_of bs;
   840     val basic_ctr_specss = map (basic_corec_specs_of lthy) res_Ts;
   841     val has_call = exists_subterm (map (fst #>> Binding.name_of #> Free) fixes |> member (op =));
   842     val eqns_data =
   843       fold_map2 (dissect_coeqn lthy seq has_call fun_names basic_ctr_specss) (map snd specs)
   844         of_specs []
   845       |> flat o fst;
   846 
   847     val callssss =
   848       map_filter (try (fn Sel x => x)) eqns_data
   849       |> partition_eq ((op =) o pairself #fun_name)
   850       |> fst o finds (fn (x, ({fun_name, ...} :: _)) => x = fun_name) fun_names
   851       |> map (flat o snd)
   852       |> map2 (fold o find_corec_calls has_call) basic_ctr_specss
   853       |> map2 (curry (op |>)) (map (map (fn {ctr, sels, ...} =>
   854         (ctr, map (K []) sels))) basic_ctr_specss);
   855 
   856 (*
   857 val _ = tracing ("callssss = " ^ @{make_string} callssss);
   858 *)
   859 
   860     val ((n2m, corec_specs', _, coinduct_thm, strong_coinduct_thm, coinduct_thms,
   861           strong_coinduct_thms), lthy') =
   862       corec_specs_of bs arg_Ts res_Ts (get_indices fixes) callssss lthy;
   863     val actual_nn = length bs;
   864     val corec_specs = take actual_nn corec_specs'; (*###*)
   865 
   866     val disc_eqnss' = map_filter (try (fn Disc x => x)) eqns_data
   867       |> partition_eq ((op =) o pairself #fun_name)
   868       |> fst o finds (fn (x, ({fun_name, ...} :: _)) => x = fun_name) fun_names
   869       |> map (sort ((op <) o pairself #ctr_no |> make_ord) o flat o snd);
   870     val _ = disc_eqnss' |> map (fn x =>
   871       let val d = duplicates ((op =) o pairself #ctr_no) x in null d orelse
   872         primrec_error_eqns "excess discriminator equations in definition"
   873           (maps (fn t => filter (equal (#ctr_no t) o #ctr_no) x) d |> map #user_eqn) end);
   874 
   875     val sel_eqnss = map_filter (try (fn Sel x => x)) eqns_data
   876       |> partition_eq ((op =) o pairself #fun_name)
   877       |> fst o finds (fn (x, ({fun_name, ...} :: _)) => x = fun_name) fun_names
   878       |> map (flat o snd);
   879 
   880     val arg_Tss = map (binder_types o snd o fst) fixes;
   881     val disc_eqnss = map5 mk_real_disc_eqns bs arg_Tss corec_specs sel_eqnss disc_eqnss';
   882     val (defs, exclss') =
   883       build_codefs lthy' bs mxs has_call arg_Tss corec_specs disc_eqnss sel_eqnss;
   884 
   885     fun excl_tac (c, c', a) =
   886       if a orelse c = c' orelse seq then
   887         SOME (K (HEADGOAL (mk_primcorec_assumption_tac lthy [])))
   888       else if simple then
   889         SOME (K (auto_tac lthy))
   890       else
   891         NONE;
   892 
   893 (*
   894 val _ = tracing ("exclusiveness properties:\n    \<cdot> " ^
   895  space_implode "\n    \<cdot> " (maps (map (Syntax.string_of_term lthy o snd)) exclss'));
   896 *)
   897 
   898     val exclss'' = exclss' |> map (map (fn (idx, t) =>
   899       (idx, (Option.map (Goal.prove lthy [] [] t) (excl_tac idx), t))));
   900     val taut_thmss = map (map (apsnd (the o fst)) o filter (is_some o fst o snd)) exclss'';
   901     val (obligation_idxss, obligationss) = exclss''
   902       |> map (map (apsnd (rpair [] o snd)) o filter (is_none o fst o snd))
   903       |> split_list o map split_list;
   904 
   905     fun prove thmss' def_thms' lthy =
   906       let
   907         val def_thms = map (snd o snd) def_thms';
   908 
   909         val exclss' = map (op ~~) (obligation_idxss ~~ thmss');
   910         fun mk_exclsss excls n =
   911           (excls, map (fn k => replicate k [TrueI] @ replicate (n - k) []) (0 upto n - 1))
   912           |-> fold (fn ((c, c', _), thm) => nth_map c (nth_map c' (K [thm])));
   913         val exclssss = (exclss' ~~ taut_thmss |> map (op @), fun_names ~~ corec_specs)
   914           |-> map2 (fn excls => fn (_, {ctr_specs, ...}) => mk_exclsss excls (length ctr_specs));
   915 
   916         fun prove_disc ({ctr_specs, ...} : corec_spec) exclsss
   917             ({fun_name, fun_T, fun_args, ctr_no, prems, ...} : coeqn_data_disc) =
   918           if Term.aconv_untyped (#disc (nth ctr_specs ctr_no), @{term "\<lambda>x. x = x"}) then [] else
   919             let
   920               val {disc_corec, ...} = nth ctr_specs ctr_no;
   921               val k = 1 + ctr_no;
   922               val m = length prems;
   923               val t =
   924                 list_comb (Free (fun_name, fun_T), map Bound (length fun_args - 1 downto 0))
   925                 |> curry betapply (#disc (nth ctr_specs ctr_no)) (*###*)
   926                 |> HOLogic.mk_Trueprop
   927                 |> curry Logic.list_implies (map HOLogic.mk_Trueprop prems)
   928                 |> curry Logic.list_all (map dest_Free fun_args);
   929             in
   930               if prems = [@{term False}] then [] else
   931               mk_primcorec_disc_tac lthy def_thms disc_corec k m exclsss
   932               |> K |> Goal.prove lthy [] [] t
   933               |> pair (#disc (nth ctr_specs ctr_no))
   934               |> single
   935             end;
   936 
   937         fun prove_sel ({nested_maps, nested_map_idents, nested_map_comps, ctr_specs, ...}
   938             : corec_spec) (disc_eqns : coeqn_data_disc list) exclsss
   939             ({fun_name, fun_T, fun_args, ctr, sel, rhs_term, ...} : coeqn_data_sel) =
   940           let
   941             val SOME ctr_spec = find_first (equal ctr o #ctr) ctr_specs;
   942             val ctr_no = find_index (equal ctr o #ctr) ctr_specs;
   943             val prems = the_default (maps (s_not_conj o #prems) disc_eqns)
   944                 (find_first (equal ctr_no o #ctr_no) disc_eqns |> Option.map #prems);
   945             val sel_corec = find_index (equal sel) (#sels ctr_spec)
   946               |> nth (#sel_corecs ctr_spec);
   947             val k = 1 + ctr_no;
   948             val m = length prems;
   949             val t =
   950               list_comb (Free (fun_name, fun_T), map Bound (length fun_args - 1 downto 0))
   951               |> curry betapply sel
   952               |> rpair (abstract (List.rev fun_args) rhs_term)
   953               |> HOLogic.mk_Trueprop o HOLogic.mk_eq
   954               |> curry Logic.list_implies (map HOLogic.mk_Trueprop prems)
   955               |> curry Logic.list_all (map dest_Free fun_args);
   956             val (distincts, _, sel_splits, sel_split_asms) = case_thms_of_term lthy [] rhs_term;
   957           in
   958             mk_primcorec_sel_tac lthy def_thms distincts sel_splits sel_split_asms nested_maps
   959               nested_map_idents nested_map_comps sel_corec k m exclsss
   960             |> K |> Goal.prove lthy [] [] t
   961             |> pair sel
   962           end;
   963 
   964         fun prove_ctr disc_alist sel_alist (disc_eqns : coeqn_data_disc list)
   965             (sel_eqns : coeqn_data_sel list) ({ctr, disc, sels, collapse, ...} : corec_ctr_spec) =
   966           (* don't try to prove theorems when some sel_eqns are missing *)
   967           if not (exists (equal ctr o #ctr) disc_eqns)
   968               andalso not (exists (equal ctr o #ctr) sel_eqns)
   969             orelse
   970               filter (equal ctr o #ctr) sel_eqns
   971               |> fst o finds ((op =) o apsnd #sel) sels
   972               |> exists (null o snd)
   973           then [] else
   974             let
   975               val (fun_name, fun_T, fun_args, prems, maybe_rhs) =
   976                 (find_first (equal ctr o #ctr) disc_eqns, find_first (equal ctr o #ctr) sel_eqns)
   977                 |>> Option.map (fn x => (#fun_name x, #fun_T x, #fun_args x, #prems x,
   978                   #maybe_ctr_rhs x))
   979                 ||> Option.map (fn x => (#fun_name x, #fun_T x, #fun_args x, [], NONE))
   980                 |> the o merge_options;
   981               val m = length prems;
   982               val t = (if is_some maybe_rhs then the maybe_rhs else
   983                   filter (equal ctr o #ctr) sel_eqns
   984                   |> fst o finds ((op =) o apsnd #sel) sels
   985                   |> map (snd #> (fn [x] => (List.rev (#fun_args x), #rhs_term x)) #-> abstract)
   986                   |> curry list_comb ctr)
   987                 |> curry HOLogic.mk_eq (list_comb (Free (fun_name, fun_T),
   988                   map Bound (length fun_args - 1 downto 0)))
   989                 |> HOLogic.mk_Trueprop
   990                 |> curry Logic.list_implies (map HOLogic.mk_Trueprop prems)
   991                 |> curry Logic.list_all (map dest_Free fun_args);
   992               val maybe_disc_thm = AList.lookup (op =) disc_alist disc;
   993               val sel_thms = map snd (filter (member (op =) sels o fst) sel_alist);
   994             in
   995               if prems = [@{term False}] then [] else
   996                 mk_primcorec_ctr_of_dtr_tac lthy m collapse maybe_disc_thm sel_thms
   997                 |> K |> Goal.prove lthy [] [] t
   998                 |> pair ctr
   999                 |> single
  1000             end;
  1001 
  1002         fun prove_code disc_eqns sel_eqns ctr_alist {ctr_specs, ...} =
  1003           let
  1004             val (fun_name, fun_T, fun_args, maybe_rhs) =
  1005               (find_first (member (op =) (map #ctr ctr_specs) o #ctr) disc_eqns,
  1006                find_first (member (op =) (map #ctr ctr_specs) o #ctr) sel_eqns)
  1007               |>> Option.map (fn x => (#fun_name x, #fun_T x, #fun_args x, #maybe_code_rhs x))
  1008               ||> Option.map (fn x => (#fun_name x, #fun_T x, #fun_args x, NONE))
  1009               |> the o merge_options;
  1010 
  1011             val bound_Ts = List.rev (map fastype_of fun_args);
  1012 
  1013             val lhs = list_comb (Free (fun_name, fun_T), map Bound (length fun_args - 1 downto 0));
  1014             val maybe_rhs_info =
  1015               (case maybe_rhs of
  1016                 SOME rhs =>
  1017                 let
  1018                   val raw_rhs = expand_corec_code_rhs lthy has_call bound_Ts rhs;
  1019                   val cond_ctrs =
  1020                     fold_rev_corec_code_rhs lthy (K oo (cons oo pair)) bound_Ts raw_rhs [];
  1021                   val ctr_thms = map (the o AList.lookup (op =) ctr_alist o snd) cond_ctrs;
  1022                 in SOME (rhs, raw_rhs, ctr_thms) end
  1023               | NONE =>
  1024                 let
  1025                   fun prove_code_ctr {ctr, sels, ...} =
  1026                     if not (exists (equal ctr o fst) ctr_alist) then NONE else
  1027                       let
  1028                         val prems = find_first (equal ctr o #ctr) disc_eqns
  1029                           |> Option.map #prems |> the_default [];
  1030                         val t =
  1031                           filter (equal ctr o #ctr) sel_eqns
  1032                           |> fst o finds ((op =) o apsnd #sel) sels
  1033                           |> map (snd #> (fn [x] => (List.rev (#fun_args x), #rhs_term x))
  1034                             #-> abstract)
  1035                           |> curry list_comb ctr;
  1036                       in
  1037                         SOME (prems, t)
  1038                       end;
  1039                   val maybe_ctr_conds_argss = map prove_code_ctr ctr_specs;
  1040                 in
  1041                   if exists is_none maybe_ctr_conds_argss then NONE else
  1042                     let
  1043                       val rhs = fold_rev (fn SOME (prems, u) => fn t => mk_If (s_conjs prems) u t)
  1044                         maybe_ctr_conds_argss
  1045                         (Const (@{const_name Code.abort}, @{typ String.literal} -->
  1046                             (@{typ unit} --> body_type fun_T) --> body_type fun_T) $
  1047                           @{term "STR []"} $ (* FIXME *)
  1048                           absdummy @{typ unit} (incr_boundvars 1 lhs));
  1049                     in SOME (rhs, rhs, map snd ctr_alist) end
  1050                 end);
  1051           in
  1052             (case maybe_rhs_info of
  1053               NONE => []
  1054             | SOME (rhs, raw_rhs, ctr_thms) =>
  1055               let
  1056                 val ms = map (Logic.count_prems o prop_of) ctr_thms;
  1057                 val (raw_t, t) = (raw_rhs, rhs)
  1058                   |> pairself
  1059                     (curry HOLogic.mk_eq (list_comb (Free (fun_name, fun_T),
  1060                       map Bound (length fun_args - 1 downto 0)))
  1061                     #> HOLogic.mk_Trueprop
  1062                     #> curry Logic.list_all (map dest_Free fun_args));
  1063                 val (distincts, discIs, sel_splits, sel_split_asms) =
  1064                   case_thms_of_term lthy bound_Ts raw_rhs;
  1065 
  1066                 val raw_code_thm = mk_primcorec_raw_code_of_ctr_tac lthy distincts discIs sel_splits
  1067                     sel_split_asms ms ctr_thms
  1068                   |> K |> Goal.prove lthy [] [] raw_t;
  1069 val _ = tracing ("raw code theorem: " ^ Syntax.string_of_term lthy (prop_of raw_code_thm));
  1070               in
  1071                 mk_primcorec_code_of_raw_code_tac lthy distincts sel_splits raw_code_thm
  1072                 |> K |> Goal.prove lthy [] [] t
  1073 |> tap (tracing o curry (op ^) "code theorem: " o Syntax.string_of_term lthy o prop_of)
  1074                 |> single
  1075               end)
  1076 handle ERROR s => (warning s; []) (*###*)
  1077           end;
  1078 
  1079         val disc_alists = map3 (maps oo prove_disc) corec_specs exclssss disc_eqnss;
  1080         val sel_alists = map4 (map ooo prove_sel) corec_specs disc_eqnss exclssss sel_eqnss;
  1081         val disc_thmss = map (map snd) disc_alists;
  1082         val sel_thmss = map (map snd) sel_alists;
  1083 
  1084         val ctr_alists = map5 (maps oooo prove_ctr) disc_alists sel_alists disc_eqnss sel_eqnss
  1085           (map #ctr_specs corec_specs);
  1086         val ctr_thmss = map (map snd) ctr_alists;
  1087 
  1088         val code_thmss = map4 prove_code disc_eqnss sel_eqnss ctr_alists corec_specs;
  1089 
  1090         val simp_thmss = map2 append disc_thmss sel_thmss
  1091 
  1092         val common_name = mk_common_name fun_names;
  1093 
  1094         val notes =
  1095           [(coinductN, map (if n2m then single else K []) coinduct_thms, []),
  1096            (codeN, code_thmss, code_nitpicksimp_attrs),
  1097            (ctrN, ctr_thmss, []),
  1098            (discN, disc_thmss, simp_attrs),
  1099            (selN, sel_thmss, simp_attrs),
  1100            (simpsN, simp_thmss, []),
  1101            (strong_coinductN, map (if n2m then single else K []) strong_coinduct_thms, [])]
  1102           |> maps (fn (thmN, thmss, attrs) =>
  1103             map2 (fn fun_name => fn thms =>
  1104                 ((Binding.qualify true fun_name (Binding.name thmN), attrs), [(thms, [])]))
  1105               fun_names (take actual_nn thmss))
  1106           |> filter_out (null o fst o hd o snd);
  1107 
  1108         val common_notes =
  1109           [(coinductN, if n2m then [coinduct_thm] else [], []),
  1110            (strong_coinductN, if n2m then [strong_coinduct_thm] else [], [])]
  1111           |> filter_out (null o #2)
  1112           |> map (fn (thmN, thms, attrs) =>
  1113             ((Binding.qualify true common_name (Binding.name thmN), attrs), [(thms, [])]));
  1114       in
  1115         lthy |> Local_Theory.notes (notes @ common_notes) |> snd
  1116       end;
  1117 
  1118     fun after_qed thmss' = fold_map Local_Theory.define defs #-> prove thmss';
  1119 
  1120     val _ = if not simple orelse forall null obligationss then () else
  1121       primrec_error "need exclusiveness proofs - use primcorecursive instead of primcorec";
  1122   in
  1123     if simple then
  1124       lthy'
  1125       |> after_qed (map (fn [] => []) obligationss)
  1126       |> pair NONE o SOME
  1127     else
  1128       lthy'
  1129       |> Proof.theorem NONE after_qed obligationss
  1130       |> Proof.refine (Method.primitive_text I)
  1131       |> Seq.hd
  1132       |> rpair NONE o SOME
  1133   end;
  1134 
  1135 fun add_primcorec_ursive_cmd simple seq (raw_fixes, raw_specs') lthy =
  1136   let
  1137     val (raw_specs, of_specs) = split_list raw_specs' ||> map (Option.map (Syntax.read_term lthy));
  1138     val ((fixes, specs), _) = Specification.read_spec raw_fixes raw_specs lthy;
  1139   in
  1140     add_primcorec simple seq fixes specs of_specs lthy
  1141     handle ERROR str => primrec_error str
  1142   end
  1143   handle Primrec_Error (str, eqns) =>
  1144     if null eqns
  1145     then error ("primcorec error:\n  " ^ str)
  1146     else error ("primcorec error:\n  " ^ str ^ "\nin\n  " ^
  1147       space_implode "\n  " (map (quote o Syntax.string_of_term lthy) eqns));
  1148 
  1149 val add_primcorecursive_cmd = (the o fst) ooo add_primcorec_ursive_cmd false;
  1150 val add_primcorec_cmd = (the o snd) ooo add_primcorec_ursive_cmd true;
  1151 
  1152 end;