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