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