src/HOL/BNF/Tools/bnf_fp_rec_sugar.ML
author blanchet
Thu, 19 Sep 2013 23:54:54 +0200
changeset 54880 87585d506db4
parent 54873 82799e03fff7
child 54881 9db52ae90009
permissions -rw-r--r--
added TODO
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
blanchet@54440
    10
  val add_primrec_cmd: (binding * string option * mixfix) list ->
blanchet@54440
    11
    (Attrib.binding * string) list -> local_theory -> local_theory;
blanchet@54447
    12
  val add_primcorec_cmd: bool ->
blanchet@54447
    13
    (binding * string option * mixfix) list * (Attrib.binding * string) list -> Proof.context ->
blanchet@54447
    14
    Proof.state
blanchet@54440
    15
end;
blanchet@54440
    16
blanchet@54440
    17
structure BNF_FP_Rec_Sugar : BNF_FP_REC_SUGAR =
blanchet@54440
    18
struct
blanchet@54440
    19
blanchet@54440
    20
open BNF_Util
blanchet@54440
    21
open BNF_FP_Util
blanchet@54440
    22
open BNF_FP_Rec_Sugar_Util
blanchet@54440
    23
open BNF_FP_Rec_Sugar_Tactics
blanchet@54440
    24
blanchet@54440
    25
exception Primrec_Error of string * term list;
blanchet@54440
    26
blanchet@54440
    27
fun primrec_error str = raise Primrec_Error (str, []);
blanchet@54440
    28
fun primrec_error_eqn str eqn = raise Primrec_Error (str, [eqn]);
blanchet@54440
    29
fun primrec_error_eqns str eqns = raise Primrec_Error (str, eqns);
blanchet@54440
    30
panny@54495
    31
fun finds eq = fold_map (fn x => List.partition (curry eq x) #>> pair x);
panny@54495
    32
panny@54494
    33
val free_name = try (fn Free (v, _) => v);
panny@54494
    34
val const_name = try (fn Const (v, _) => v);
panny@54495
    35
val undef_const = Const (@{const_name undefined}, dummyT);
panny@54494
    36
panny@54495
    37
fun permute_args n t = list_comb (t, map Bound (0 :: (n downto 1)))
panny@54857
    38
  |> fold (K (Term.abs (Name.uu, dummyT))) (0 upto n);
panny@54538
    39
val abs_tuple = HOLogic.tupled_lambda o HOLogic.mk_tuple;
panny@54791
    40
fun drop_All t = subst_bounds (strip_qnt_vars @{const_name all} t |> map Free |> rev,
panny@54791
    41
  strip_qnt_body @{const_name all} t)
panny@54791
    42
fun mk_not @{const True} = @{const False}
panny@54791
    43
  | mk_not @{const False} = @{const True}
panny@54791
    44
  | mk_not (@{const Not} $ t) = t
panny@54791
    45
  | mk_not (@{const Trueprop} $ t) = @{const Trueprop} $ mk_not t
panny@54791
    46
  | mk_not t = HOLogic.mk_not t
panny@54791
    47
val mk_conjs = try (foldr1 HOLogic.mk_conj) #> the_default @{const True};
panny@54791
    48
val mk_disjs = try (foldr1 HOLogic.mk_disj) #> the_default @{const False};
panny@54791
    49
fun invert_prems [t] = map mk_not (HOLogic.disjuncts t)
panny@54791
    50
  | invert_prems ts = [mk_disjs (map mk_not ts)];
panny@54857
    51
fun invert_prems_disj [t] = map mk_not (HOLogic.disjuncts t)
panny@54857
    52
  | invert_prems_disj ts = [mk_disjs (map (mk_conjs o map mk_not o HOLogic.disjuncts) ts)];
panny@54857
    53
fun abstract vs =
panny@54857
    54
  let fun a n (t $ u) = a n t $ a n u
panny@54857
    55
        | a n (Abs (v, T, b)) = Abs (v, T, a (n + 1) b)
panny@54857
    56
        | a n t = let val idx = find_index (equal t) vs in
panny@54857
    57
            if idx < 0 then t else Bound (n + idx) end
panny@54857
    58
  in a 0 end;
panny@54872
    59
fun mk_prod1 Ts (t, u) = HOLogic.pair_const (fastype_of1 (Ts, t)) (fastype_of1 (Ts, u)) $ t $ u;
panny@54872
    60
fun mk_tuple1 Ts = the_default HOLogic.unit o try (foldr1 (mk_prod1 Ts));
blanchet@54440
    61
blanchet@54440
    62
val simp_attrs = @{attributes [simp]};
blanchet@54440
    63
blanchet@54447
    64
blanchet@54447
    65
(* Primrec *)
blanchet@54447
    66
blanchet@54440
    67
type eqn_data = {
blanchet@54440
    68
  fun_name: string,
blanchet@54440
    69
  rec_type: typ,
blanchet@54440
    70
  ctr: term,
blanchet@54440
    71
  ctr_args: term list,
blanchet@54440
    72
  left_args: term list,
blanchet@54440
    73
  right_args: term list,
blanchet@54440
    74
  res_type: typ,
blanchet@54440
    75
  rhs_term: term,
blanchet@54440
    76
  user_eqn: term
blanchet@54440
    77
};
blanchet@54440
    78
blanchet@54440
    79
fun dissect_eqn lthy fun_names eqn' =
blanchet@54440
    80
  let
panny@54791
    81
    val eqn = drop_All eqn' |> HOLogic.dest_Trueprop
panny@54791
    82
      handle TERM _ =>
panny@54791
    83
        primrec_error_eqn "malformed function equation (expected \"lhs = rhs\")" eqn';
blanchet@54440
    84
    val (lhs, rhs) = HOLogic.dest_eq eqn
blanchet@54440
    85
        handle TERM _ =>
blanchet@54440
    86
          primrec_error_eqn "malformed function equation (expected \"lhs = rhs\")" eqn';
blanchet@54440
    87
    val (fun_name, args) = strip_comb lhs
blanchet@54440
    88
      |>> (fn x => if is_Free x then fst (dest_Free x)
blanchet@54440
    89
          else primrec_error_eqn "malformed function equation (does not start with free)" eqn);
blanchet@54440
    90
    val (left_args, rest) = take_prefix is_Free args;
blanchet@54440
    91
    val (nonfrees, right_args) = take_suffix is_Free rest;
blanchet@54440
    92
    val _ = length nonfrees = 1 orelse if length nonfrees = 0 then
blanchet@54440
    93
      primrec_error_eqn "constructor pattern missing in left-hand side" eqn else
blanchet@54440
    94
      primrec_error_eqn "more than one non-variable argument in left-hand side" eqn;
blanchet@54440
    95
    val _ = member (op =) fun_names fun_name orelse
blanchet@54440
    96
      primrec_error_eqn "malformed function equation (does not start with function name)" eqn
blanchet@54440
    97
blanchet@54440
    98
    val (ctr, ctr_args) = strip_comb (the_single nonfrees);
blanchet@54440
    99
    val _ = try (num_binder_types o fastype_of) ctr = SOME (length ctr_args) orelse
blanchet@54440
   100
      primrec_error_eqn "partially applied constructor in pattern" eqn;
blanchet@54440
   101
    val _ = let val d = duplicates (op =) (left_args @ ctr_args @ right_args) in null d orelse
blanchet@54440
   102
      primrec_error_eqn ("duplicate variable \"" ^ Syntax.string_of_term lthy (hd d) ^
blanchet@54440
   103
        "\" in left-hand side") eqn end;
blanchet@54440
   104
    val _ = forall is_Free ctr_args orelse
blanchet@54440
   105
      primrec_error_eqn "non-primitive pattern in left-hand side" eqn;
blanchet@54440
   106
    val _ =
blanchet@54440
   107
      let val b = fold_aterms (fn x as Free (v, _) =>
blanchet@54440
   108
        if (not (member (op =) (left_args @ ctr_args @ right_args) x) andalso
blanchet@54440
   109
        not (member (op =) fun_names v) andalso
blanchet@54440
   110
        not (Variable.is_fixed lthy v)) then cons x else I | _ => I) rhs []
blanchet@54440
   111
      in
blanchet@54440
   112
        null b orelse
blanchet@54440
   113
        primrec_error_eqn ("extra variable(s) in right-hand side: " ^
blanchet@54440
   114
          commas (map (Syntax.string_of_term lthy) b)) eqn
blanchet@54440
   115
      end;
blanchet@54440
   116
  in
blanchet@54440
   117
    {fun_name = fun_name,
blanchet@54440
   118
     rec_type = body_type (type_of ctr),
blanchet@54440
   119
     ctr = ctr,
blanchet@54440
   120
     ctr_args = ctr_args,
blanchet@54440
   121
     left_args = left_args,
blanchet@54440
   122
     right_args = right_args,
blanchet@54440
   123
     res_type = map fastype_of (left_args @ right_args) ---> fastype_of rhs,
blanchet@54440
   124
     rhs_term = rhs,
blanchet@54440
   125
     user_eqn = eqn'}
blanchet@54440
   126
  end;
blanchet@54440
   127
panny@54538
   128
fun rewrite_map_arg get_ctr_pos rec_type res_type =
blanchet@54440
   129
  let
blanchet@54440
   130
    val pT = HOLogic.mk_prodT (rec_type, res_type);
blanchet@54440
   131
panny@54494
   132
    val maybe_suc = Option.map (fn x => x + 1);
panny@54494
   133
    fun subst d (t as Bound d') = t |> d = SOME d' ? curry (op $) (fst_const pT)
panny@54494
   134
      | subst d (Abs (v, T, b)) = Abs (v, if d = SOME ~1 then pT else T, subst (maybe_suc d) b)
panny@54494
   135
      | subst d t =
panny@54495
   136
        let
panny@54495
   137
          val (u, vs) = strip_comb t;
panny@54538
   138
          val ctr_pos = try (get_ctr_pos o the) (free_name u) |> the_default ~1;
panny@54495
   139
        in
panny@54538
   140
          if ctr_pos >= 0 then
panny@54494
   141
            if d = SOME ~1 andalso length vs = ctr_pos then
panny@54494
   142
              list_comb (permute_args ctr_pos (snd_const pT), vs)
panny@54494
   143
            else if length vs > ctr_pos andalso is_some d
panny@54494
   144
                andalso d = try (fn Bound n => n) (nth vs ctr_pos) then
panny@54494
   145
              list_comb (snd_const pT $ nth vs ctr_pos, map (subst d) (nth_drop ctr_pos vs))
blanchet@54440
   146
            else
panny@54494
   147
              primrec_error_eqn ("recursive call not directly applied to constructor argument") t
panny@54494
   148
          else if d = SOME ~1 andalso const_name u = SOME @{const_name comp} then
panny@54494
   149
            list_comb (map_types (K dummyT) u, map2 subst [NONE, d] vs)
blanchet@54440
   150
          else
panny@54494
   151
            list_comb (u, map (subst (d |> d = SOME ~1 ? K NONE)) vs)
blanchet@54440
   152
        end
blanchet@54440
   153
  in
panny@54494
   154
    subst (SOME ~1)
blanchet@54440
   155
  end;
blanchet@54440
   156
panny@54538
   157
fun subst_rec_calls lthy get_ctr_pos has_call ctr_args direct_calls indirect_calls t =
blanchet@54440
   158
  let
panny@54487
   159
    fun subst bound_Ts (Abs (v, T, b)) = Abs (v, T, subst (T :: bound_Ts) b)
panny@54495
   160
      | subst bound_Ts (t as g' $ y) =
blanchet@54440
   161
        let
panny@54487
   162
          val maybe_direct_y' = AList.lookup (op =) direct_calls y;
panny@54487
   163
          val maybe_indirect_y' = AList.lookup (op =) indirect_calls y;
panny@54495
   164
          val (g, g_args) = strip_comb g';
panny@54538
   165
          val ctr_pos = try (get_ctr_pos o the) (free_name g) |> the_default ~1;
panny@54538
   166
          val _ = ctr_pos < 0 orelse length g_args >= ctr_pos orelse
panny@54495
   167
            primrec_error_eqn "too few arguments in recursive call" t;
blanchet@54440
   168
        in
panny@54495
   169
          if not (member (op =) ctr_args y) then
panny@54495
   170
            pairself (subst bound_Ts) (g', y) |> (op $)
panny@54538
   171
          else if ctr_pos >= 0 then
panny@54495
   172
            list_comb (the maybe_direct_y', g_args)
panny@54487
   173
          else if is_some maybe_indirect_y' then
panny@54495
   174
            (if has_call g' then t else y)
panny@54495
   175
            |> massage_indirect_rec_call lthy has_call
panny@54538
   176
              (rewrite_map_arg get_ctr_pos) bound_Ts y (the maybe_indirect_y')
panny@54495
   177
            |> (if has_call g' then I else curry (op $) g')
blanchet@54440
   178
          else
panny@54487
   179
            t
blanchet@54440
   180
        end
panny@54487
   181
      | subst _ t = t
panny@54487
   182
  in
panny@54487
   183
    subst [] t
panny@54495
   184
    |> tap (fn u => has_call u andalso (* FIXME detect this case earlier *)
panny@54495
   185
      primrec_error_eqn "recursive call not directly applied to constructor argument" t)
panny@54487
   186
  end;
blanchet@54440
   187
panny@54495
   188
fun build_rec_arg lthy funs_data has_call ctr_spec maybe_eqn_data =
panny@54495
   189
  if is_none maybe_eqn_data then undef_const else
blanchet@54440
   190
    let
blanchet@54440
   191
      val eqn_data = the maybe_eqn_data;
blanchet@54440
   192
      val t = #rhs_term eqn_data;
blanchet@54440
   193
      val ctr_args = #ctr_args eqn_data;
blanchet@54440
   194
blanchet@54440
   195
      val calls = #calls ctr_spec;
blanchet@54440
   196
      val n_args = fold (curry (op +) o (fn Direct_Rec _ => 2 | _ => 1)) calls 0;
blanchet@54440
   197
blanchet@54440
   198
      val no_calls' = tag_list 0 calls
blanchet@54440
   199
        |> map_filter (try (apsnd (fn No_Rec n => n | Direct_Rec (n, _) => n)));
blanchet@54440
   200
      val direct_calls' = tag_list 0 calls
blanchet@54440
   201
        |> map_filter (try (apsnd (fn Direct_Rec (_, n) => n)));
blanchet@54440
   202
      val indirect_calls' = tag_list 0 calls
blanchet@54440
   203
        |> map_filter (try (apsnd (fn Indirect_Rec n => n)));
blanchet@54440
   204
blanchet@54440
   205
      fun make_direct_type T = dummyT; (* FIXME? *)
blanchet@54440
   206
blanchet@54440
   207
      val rec_res_type_list = map (fn (x :: _) => (#rec_type x, #res_type x)) funs_data;
blanchet@54440
   208
blanchet@54440
   209
      fun make_indirect_type (Type (Tname, Ts)) = Type (Tname, Ts |> map (fn T =>
blanchet@54440
   210
        let val maybe_res_type = AList.lookup (op =) rec_res_type_list T in
blanchet@54440
   211
          if is_some maybe_res_type
blanchet@54440
   212
          then HOLogic.mk_prodT (T, the maybe_res_type)
blanchet@54440
   213
          else make_indirect_type T end))
blanchet@54440
   214
        | make_indirect_type T = T;
blanchet@54440
   215
blanchet@54440
   216
      val args = replicate n_args ("", dummyT)
blanchet@54440
   217
        |> Term.rename_wrt_term t
blanchet@54440
   218
        |> map Free
blanchet@54440
   219
        |> fold (fn (ctr_arg_idx, arg_idx) =>
blanchet@54440
   220
            nth_map arg_idx (K (nth ctr_args ctr_arg_idx)))
blanchet@54440
   221
          no_calls'
blanchet@54440
   222
        |> fold (fn (ctr_arg_idx, arg_idx) =>
blanchet@54440
   223
            nth_map arg_idx (K (nth ctr_args ctr_arg_idx |> map_types make_direct_type)))
blanchet@54440
   224
          direct_calls'
blanchet@54440
   225
        |> fold (fn (ctr_arg_idx, arg_idx) =>
blanchet@54440
   226
            nth_map arg_idx (K (nth ctr_args ctr_arg_idx |> map_types make_indirect_type)))
blanchet@54440
   227
          indirect_calls';
blanchet@54440
   228
panny@54538
   229
      val fun_name_ctr_pos_list =
panny@54538
   230
        map (fn (x :: _) => (#fun_name x, length (#left_args x))) funs_data;
panny@54538
   231
      val get_ctr_pos = try (the o AList.lookup (op =) fun_name_ctr_pos_list) #> the_default ~1;
blanchet@54440
   232
      val direct_calls = map (apfst (nth ctr_args) o apsnd (nth args)) direct_calls';
blanchet@54440
   233
      val indirect_calls = map (apfst (nth ctr_args) o apsnd (nth args)) indirect_calls';
blanchet@54440
   234
panny@54538
   235
      val abstractions = args @ #left_args eqn_data @ #right_args eqn_data;
blanchet@54440
   236
    in
panny@54487
   237
      t
panny@54538
   238
      |> subst_rec_calls lthy get_ctr_pos has_call ctr_args direct_calls indirect_calls
panny@54538
   239
      |> fold_rev lambda abstractions
panny@54487
   240
    end;
blanchet@54440
   241
panny@54495
   242
fun build_defs lthy bs mxs funs_data rec_specs has_call =
blanchet@54440
   243
  let
blanchet@54440
   244
    val n_funs = length funs_data;
blanchet@54440
   245
blanchet@54440
   246
    val ctr_spec_eqn_data_list' =
blanchet@54440
   247
      (take n_funs rec_specs |> map #ctr_specs) ~~ funs_data
blanchet@54440
   248
      |> maps (uncurry (finds (fn (x, y) => #ctr x = #ctr y))
blanchet@54440
   249
          ##> (fn x => null x orelse
blanchet@54440
   250
            primrec_error_eqns "excess equations in definition" (map #rhs_term x)) #> fst);
blanchet@54440
   251
    val _ = ctr_spec_eqn_data_list' |> map (fn (_, x) => length x <= 1 orelse
blanchet@54440
   252
      primrec_error_eqns ("multiple equations for constructor") (map #user_eqn x));
blanchet@54440
   253
blanchet@54440
   254
    val ctr_spec_eqn_data_list =
blanchet@54440
   255
      ctr_spec_eqn_data_list' @ (drop n_funs rec_specs |> maps #ctr_specs |> map (rpair []));
blanchet@54440
   256
blanchet@54440
   257
    val recs = take n_funs rec_specs |> map #recx;
blanchet@54440
   258
    val rec_args = ctr_spec_eqn_data_list
blanchet@54440
   259
      |> sort ((op <) o pairself (#offset o fst) |> make_ord)
panny@54495
   260
      |> map (uncurry (build_rec_arg lthy funs_data has_call) o apsnd (try the_single));
blanchet@54440
   261
    val ctr_poss = map (fn x =>
blanchet@54440
   262
      if length (distinct ((op =) o pairself (length o #left_args)) x) <> 1 then
blanchet@54440
   263
        primrec_error ("inconstant constructor pattern position for function " ^
blanchet@54440
   264
          quote (#fun_name (hd x)))
blanchet@54440
   265
      else
blanchet@54440
   266
        hd x |> #left_args |> length) funs_data;
blanchet@54440
   267
  in
blanchet@54440
   268
    (recs, ctr_poss)
blanchet@54440
   269
    |-> map2 (fn recx => fn ctr_pos => list_comb (recx, rec_args) |> permute_args ctr_pos)
blanchet@54440
   270
    |> Syntax.check_terms lthy
traytel@54489
   271
    |> map3 (fn b => fn mx => fn t => ((b, mx), ((Binding.map_name Thm.def_name b, []), t))) bs mxs
blanchet@54440
   272
  end;
blanchet@54440
   273
panny@54495
   274
fun find_rec_calls has_call eqn_data =
blanchet@54440
   275
  let
blanchet@54440
   276
    fun find (Abs (_, _, b)) ctr_arg = find b ctr_arg
blanchet@54440
   277
      | find (t as _ $ _) ctr_arg =
blanchet@54440
   278
        let
blanchet@54440
   279
          val (f', args') = strip_comb t;
blanchet@54440
   280
          val n = find_index (equal ctr_arg) args';
blanchet@54440
   281
        in
blanchet@54440
   282
          if n < 0 then
blanchet@54440
   283
            find f' ctr_arg @ maps (fn x => find x ctr_arg) args'
blanchet@54440
   284
          else
blanchet@54440
   285
            let val (f, args) = chop n args' |>> curry list_comb f' in
panny@54495
   286
              if has_call f then
blanchet@54440
   287
                f :: maps (fn x => find x ctr_arg) args
blanchet@54440
   288
              else
blanchet@54440
   289
                find f ctr_arg @ maps (fn x => find x ctr_arg) args
blanchet@54440
   290
            end
blanchet@54440
   291
        end
blanchet@54440
   292
      | find _ _ = [];
blanchet@54440
   293
  in
blanchet@54440
   294
    map (find (#rhs_term eqn_data)) (#ctr_args eqn_data)
blanchet@54440
   295
    |> (fn [] => NONE | callss => SOME (#ctr eqn_data, callss))
blanchet@54440
   296
  end;
blanchet@54440
   297
blanchet@54440
   298
fun add_primrec fixes specs lthy =
blanchet@54440
   299
  let
traytel@54489
   300
    val (bs, mxs) = map_split (apfst fst) fixes;
blanchet@54440
   301
    val fun_names = map Binding.name_of bs;
blanchet@54440
   302
    val eqns_data = map (snd #> dissect_eqn lthy fun_names) specs;
blanchet@54440
   303
    val funs_data = eqns_data
blanchet@54440
   304
      |> partition_eq ((op =) o pairself #fun_name)
blanchet@54440
   305
      |> finds (fn (x, y) => x = #fun_name (hd y)) fun_names |> fst
blanchet@54440
   306
      |> map (fn (x, y) => the_single y handle List.Empty =>
blanchet@54440
   307
          primrec_error ("missing equations for function " ^ quote x));
blanchet@54440
   308
panny@54495
   309
    val has_call = exists_subterm (map (fst #>> Binding.name_of #> Free) fixes |> member (op =));
blanchet@54440
   310
    val arg_Ts = map (#rec_type o hd) funs_data;
blanchet@54440
   311
    val res_Ts = map (#res_type o hd) funs_data;
blanchet@54440
   312
    val callssss = funs_data
blanchet@54440
   313
      |> map (partition_eq ((op =) o pairself #ctr))
panny@54495
   314
      |> map (maps (map_filter (find_rec_calls has_call)));
blanchet@54440
   315
panny@54495
   316
    fun get_indices t = map (fst #>> Binding.name_of #> Free) fixes
panny@54495
   317
      |> map_index (fn (i, v) => if exists_subterm (equal v) t then SOME i else NONE)
panny@54495
   318
      |> map_filter I;
blanchet@54440
   319
    val ((nontriv, rec_specs, _, induct_thm, induct_thms), lthy') =
blanchet@54440
   320
      rec_specs_of bs arg_Ts res_Ts get_indices callssss lthy;
blanchet@54440
   321
blanchet@54440
   322
    val actual_nn = length funs_data;
blanchet@54440
   323
blanchet@54440
   324
    val _ = let val ctrs = (maps (map #ctr o #ctr_specs) rec_specs) in
blanchet@54440
   325
      map (fn {ctr, user_eqn, ...} => member (op =) ctrs ctr orelse
blanchet@54440
   326
        primrec_error_eqn ("argument " ^ quote (Syntax.string_of_term lthy' ctr) ^
blanchet@54440
   327
          " is not a constructor in left-hand side") user_eqn) eqns_data end;
blanchet@54440
   328
panny@54495
   329
    val defs = build_defs lthy' bs mxs funs_data rec_specs has_call;
blanchet@54440
   330
blanchet@54466
   331
    fun prove def_thms' {ctr_specs, nested_map_idents, nested_map_comps, ...} induct_thm fun_data
blanchet@54440
   332
        lthy =
blanchet@54440
   333
      let
blanchet@54440
   334
        val fun_name = #fun_name (hd fun_data);
blanchet@54440
   335
        val def_thms = map (snd o snd) def_thms';
blanchet@54440
   336
        val simp_thms = finds (fn (x, y) => #ctr x = #ctr y) fun_data ctr_specs
blanchet@54440
   337
          |> fst
blanchet@54440
   338
          |> map_filter (try (fn (x, [y]) =>
blanchet@54440
   339
            (#user_eqn x, length (#left_args x) + length (#right_args x), #rec_thm y)))
blanchet@54440
   340
          |> map (fn (user_eqn, num_extra_args, rec_thm) =>
blanchet@54466
   341
            mk_primrec_tac lthy num_extra_args nested_map_idents nested_map_comps def_thms rec_thm
blanchet@54440
   342
            |> K |> Goal.prove lthy [] [] user_eqn)
blanchet@54440
   343
blanchet@54440
   344
        val notes =
blanchet@54440
   345
          [(inductN, if actual_nn > 1 then [induct_thm] else [], []),
blanchet@54440
   346
           (simpsN, simp_thms, simp_attrs)]
blanchet@54440
   347
          |> filter_out (null o #2)
blanchet@54440
   348
          |> map (fn (thmN, thms, attrs) =>
blanchet@54440
   349
            ((Binding.qualify true fun_name (Binding.name thmN), attrs), [(thms, [])]));
blanchet@54440
   350
      in
blanchet@54440
   351
        lthy |> Local_Theory.notes notes
blanchet@54440
   352
      end;
blanchet@54440
   353
blanchet@54440
   354
    val common_name = mk_common_name fun_names;
blanchet@54440
   355
blanchet@54440
   356
    val common_notes =
blanchet@54440
   357
      [(inductN, if nontriv andalso actual_nn > 1 then [induct_thm] else [], [])]
blanchet@54440
   358
      |> filter_out (null o #2)
blanchet@54440
   359
      |> map (fn (thmN, thms, attrs) =>
blanchet@54440
   360
        ((Binding.qualify true common_name (Binding.name thmN), attrs), [(thms, [])]));
blanchet@54440
   361
  in
blanchet@54440
   362
    lthy'
blanchet@54440
   363
    |> fold_map Local_Theory.define defs
panny@54791
   364
    |-> snd oo (fn def_thms' => fold_map3 (prove def_thms') (take actual_nn rec_specs)
blanchet@54440
   365
      (take actual_nn induct_thms) funs_data)
panny@54791
   366
    |> snd o Local_Theory.notes common_notes
blanchet@54440
   367
  end;
blanchet@54440
   368
blanchet@54440
   369
fun add_primrec_cmd raw_fixes raw_specs lthy =
blanchet@54440
   370
  let
blanchet@54440
   371
    val _ = let val d = duplicates (op =) (map (Binding.name_of o #1) raw_fixes) in null d orelse
blanchet@54440
   372
      primrec_error ("duplicate function name(s): " ^ commas d) end;
blanchet@54440
   373
    val (fixes, specs) = fst (Specification.read_spec raw_fixes raw_specs lthy);
blanchet@54440
   374
  in
blanchet@54440
   375
    add_primrec fixes specs lthy
blanchet@54440
   376
      handle ERROR str => primrec_error str
blanchet@54440
   377
  end
blanchet@54440
   378
  handle Primrec_Error (str, eqns) =>
blanchet@54440
   379
    if null eqns
blanchet@54440
   380
    then error ("primrec_new error:\n  " ^ str)
blanchet@54440
   381
    else error ("primrec_new error:\n  " ^ str ^ "\nin\n  " ^
blanchet@54440
   382
      space_implode "\n  " (map (quote o Syntax.string_of_term lthy) eqns))
blanchet@54440
   383
blanchet@54440
   384
blanchet@54440
   385
blanchet@54447
   386
(* Primcorec *)
blanchet@54440
   387
panny@54478
   388
type co_eqn_data_disc = {
blanchet@54440
   389
  fun_name: string,
panny@54857
   390
  fun_T: typ,
panny@54538
   391
  fun_args: term list,
panny@54857
   392
  ctr: term,
panny@54478
   393
  ctr_no: int, (*###*)
panny@54857
   394
  disc: term,
panny@54791
   395
  prems: term list,
blanchet@54440
   396
  user_eqn: term
blanchet@54440
   397
};
panny@54478
   398
type co_eqn_data_sel = {
blanchet@54440
   399
  fun_name: string,
panny@54857
   400
  fun_T: typ,
panny@54538
   401
  fun_args: term list,
panny@54478
   402
  ctr: term,
panny@54478
   403
  sel: term,
blanchet@54440
   404
  rhs_term: term,
blanchet@54440
   405
  user_eqn: term
blanchet@54440
   406
};
blanchet@54440
   407
datatype co_eqn_data =
panny@54478
   408
  Disc of co_eqn_data_disc |
panny@54478
   409
  Sel of co_eqn_data_sel;
blanchet@54440
   410
panny@54857
   411
fun co_dissect_eqn_disc sequential fun_names corec_specs prems' concl matchedsss =
blanchet@54440
   412
  let
blanchet@54440
   413
    fun find_subterm p = let (* FIXME \<exists>? *)
panny@54538
   414
      fun f (t as u $ v) = if p t then SOME t else merge_options (f u, f v)
blanchet@54440
   415
        | f t = if p t then SOME t else NONE
blanchet@54440
   416
      in f end;
blanchet@54440
   417
panny@54791
   418
    val applied_fun = concl
panny@54791
   419
      |> find_subterm (member ((op =) o apsnd SOME) fun_names o try (fst o dest_Free o head_of))
panny@54791
   420
      |> the
panny@54791
   421
      handle Option.Option => primrec_error_eqn "malformed discriminator equation" concl;
panny@54857
   422
    val ((fun_name, fun_T), fun_args) = strip_comb applied_fun |>> dest_Free;
panny@54857
   423
    val {ctr_specs, ...} = the (AList.lookup (op =) (fun_names ~~ corec_specs) fun_name);
blanchet@54440
   424
panny@54857
   425
    val discs = map #disc ctr_specs;
panny@54857
   426
    val ctrs = map #ctr ctr_specs;
panny@54791
   427
    val not_disc = head_of concl = @{term Not};
panny@54538
   428
    val _ = not_disc andalso length ctrs <> 2 andalso
panny@54791
   429
      primrec_error_eqn "\<not>ed discriminator for a type with \<noteq> 2 constructors" concl;
panny@54791
   430
    val disc = find_subterm (member (op =) discs o head_of) concl;
panny@54791
   431
    val eq_ctr0 = concl |> perhaps (try (HOLogic.dest_not)) |> try (HOLogic.dest_eq #> snd)
blanchet@54440
   432
        |> (fn SOME t => let val n = find_index (equal t) ctrs in
blanchet@54440
   433
          if n >= 0 then SOME n else NONE end | _ => NONE);
blanchet@54440
   434
    val _ = is_some disc orelse is_some eq_ctr0 orelse
panny@54791
   435
      primrec_error_eqn "no discriminator in equation" concl;
blanchet@54440
   436
    val ctr_no' =
blanchet@54440
   437
      if is_none disc then the eq_ctr0 else find_index (equal (head_of (the disc))) discs;
blanchet@54440
   438
    val ctr_no = if not_disc then 1 - ctr_no' else ctr_no';
panny@54857
   439
    val ctr = #ctr (nth ctr_specs ctr_no);
blanchet@54440
   440
panny@54791
   441
    val catch_all = try (fst o dest_Free o the_single) prems' = SOME Name.uu_;
panny@54857
   442
    val matchedss = AList.lookup (op =) matchedsss fun_name |> the_default [];
panny@54857
   443
    val prems = map (abstract (List.rev fun_args)) prems';
panny@54857
   444
    val real_prems =
panny@54857
   445
      (if catch_all orelse sequential then maps invert_prems_disj matchedss else []) @
panny@54791
   446
      (if catch_all then [] else prems);
blanchet@54440
   447
panny@54857
   448
    val matchedsss' = AList.delete (op =) fun_name matchedsss
panny@54857
   449
      |> cons (fun_name, if sequential then matchedss @ [prems] else matchedss @ [real_prems]);
panny@54791
   450
panny@54791
   451
    val user_eqn =
panny@54857
   452
      (real_prems, betapply (#disc (nth ctr_specs ctr_no), applied_fun))
panny@54791
   453
      |>> map HOLogic.mk_Trueprop ||> HOLogic.mk_Trueprop
panny@54791
   454
      |> Logic.list_implies;
blanchet@54440
   455
  in
panny@54478
   456
    (Disc {
blanchet@54440
   457
      fun_name = fun_name,
panny@54857
   458
      fun_T = fun_T,
panny@54538
   459
      fun_args = fun_args,
panny@54857
   460
      ctr = ctr,
blanchet@54440
   461
      ctr_no = ctr_no,
panny@54857
   462
      disc = #disc (nth ctr_specs ctr_no),
panny@54791
   463
      prems = real_prems,
panny@54791
   464
      user_eqn = user_eqn
panny@54857
   465
    }, matchedsss')
blanchet@54440
   466
  end;
blanchet@54440
   467
panny@54791
   468
fun co_dissect_eqn_sel fun_names corec_specs eqn' eqn =
blanchet@54440
   469
  let
blanchet@54440
   470
    val (lhs, rhs) = HOLogic.dest_eq eqn
blanchet@54440
   471
      handle TERM _ =>
blanchet@54440
   472
        primrec_error_eqn "malformed function equation (expected \"lhs = rhs\")" eqn;
blanchet@54440
   473
    val sel = head_of lhs;
panny@54857
   474
    val ((fun_name, fun_T), fun_args) = dest_comb lhs |> snd |> strip_comb |> apfst dest_Free
blanchet@54440
   475
      handle TERM _ =>
blanchet@54440
   476
        primrec_error_eqn "malformed selector argument in left-hand side" eqn;
panny@54791
   477
    val corec_spec = the (AList.lookup (op =) (fun_names ~~ corec_specs) fun_name)
blanchet@54440
   478
      handle Option.Option => primrec_error_eqn "malformed selector argument in left-hand side" eqn;
panny@54478
   479
    val (ctr_spec, sel) = #ctr_specs corec_spec
blanchet@54440
   480
      |> the o get_index (try (the o find_first (equal sel) o #sels))
panny@54478
   481
      |>> nth (#ctr_specs corec_spec);
panny@54791
   482
    val user_eqn = drop_All eqn';
blanchet@54440
   483
  in
panny@54478
   484
    Sel {
blanchet@54440
   485
      fun_name = fun_name,
panny@54857
   486
      fun_T = fun_T,
panny@54538
   487
      fun_args = fun_args,
panny@54478
   488
      ctr = #ctr ctr_spec,
panny@54478
   489
      sel = sel,
blanchet@54440
   490
      rhs_term = rhs,
panny@54791
   491
      user_eqn = user_eqn
blanchet@54440
   492
    }
blanchet@54440
   493
  end;
blanchet@54440
   494
panny@54857
   495
fun co_dissect_eqn_ctr sequential fun_names corec_specs eqn' imp_prems imp_rhs matchedsss =
blanchet@54440
   496
  let 
blanchet@54440
   497
    val (lhs, rhs) = HOLogic.dest_eq imp_rhs;
blanchet@54440
   498
    val fun_name = head_of lhs |> fst o dest_Free;
panny@54857
   499
    val {ctr_specs, ...} = the (AList.lookup (op =) (fun_names ~~ corec_specs) fun_name);
blanchet@54440
   500
    val (ctr, ctr_args) = strip_comb rhs;
panny@54857
   501
    val {disc, sels, ...} = the (find_first (equal ctr o #ctr) ctr_specs)
blanchet@54440
   502
      handle Option.Option => primrec_error_eqn "not a constructor" ctr;
panny@54478
   503
panny@54857
   504
    val disc_imp_rhs = betapply (disc, lhs);
panny@54857
   505
    val (maybe_eqn_data_disc, matchedsss') = if length ctr_specs = 1
panny@54857
   506
      then (NONE, matchedsss)
panny@54478
   507
      else apfst SOME (co_dissect_eqn_disc
panny@54857
   508
          sequential fun_names corec_specs imp_prems disc_imp_rhs matchedsss);
blanchet@54440
   509
panny@54857
   510
    val sel_imp_rhss = (sels ~~ ctr_args)
blanchet@54440
   511
      |> map (fn (sel, ctr_arg) => HOLogic.mk_eq (betapply (sel, lhs), ctr_arg));
blanchet@54440
   512
panny@54497
   513
val _ = tracing ("reduced\n    " ^ Syntax.string_of_term @{context} imp_rhs ^ "\nto\n    \<cdot> " ^
panny@54478
   514
 (is_some maybe_eqn_data_disc ? K (Syntax.string_of_term @{context} disc_imp_rhs ^ "\n    \<cdot> ")) "" ^
blanchet@54440
   515
 space_implode "\n    \<cdot> " (map (Syntax.string_of_term @{context}) sel_imp_rhss));
blanchet@54440
   516
blanchet@54440
   517
    val eqns_data_sel =
panny@54791
   518
      map (co_dissect_eqn_sel fun_names corec_specs eqn') sel_imp_rhss;
blanchet@54440
   519
  in
panny@54857
   520
    (the_list maybe_eqn_data_disc @ eqns_data_sel, matchedsss')
blanchet@54440
   521
  end;
blanchet@54440
   522
panny@54857
   523
fun co_dissect_eqn sequential fun_names corec_specs eqn' matchedsss =
blanchet@54440
   524
  let
panny@54791
   525
    val eqn = drop_All eqn'
panny@54791
   526
      handle TERM _ => primrec_error_eqn "malformed function equation" eqn';
panny@54791
   527
    val (imp_prems, imp_rhs) = Logic.strip_horn eqn
panny@54478
   528
      |> apfst (map HOLogic.dest_Trueprop) o apsnd HOLogic.dest_Trueprop;
blanchet@54440
   529
blanchet@54440
   530
    val head = imp_rhs
blanchet@54440
   531
      |> perhaps (try HOLogic.dest_not) |> perhaps (try (fst o HOLogic.dest_eq))
blanchet@54440
   532
      |> head_of;
blanchet@54440
   533
blanchet@54440
   534
    val maybe_rhs = imp_rhs |> perhaps (try (HOLogic.dest_not)) |> try (snd o HOLogic.dest_eq);
blanchet@54440
   535
panny@54791
   536
    val discs = maps #ctr_specs corec_specs |> map #disc;
panny@54791
   537
    val sels = maps #ctr_specs corec_specs |> maps #sels;
panny@54791
   538
    val ctrs = maps #ctr_specs corec_specs |> map #ctr;
blanchet@54440
   539
  in
blanchet@54440
   540
    if member (op =) discs head orelse
blanchet@54440
   541
      is_some maybe_rhs andalso
blanchet@54440
   542
        member (op =) (filter (null o binder_types o fastype_of) ctrs) (the maybe_rhs) then
panny@54857
   543
      co_dissect_eqn_disc sequential fun_names corec_specs imp_prems imp_rhs matchedsss
blanchet@54440
   544
      |>> single
blanchet@54440
   545
    else if member (op =) sels head then
panny@54857
   546
      ([co_dissect_eqn_sel fun_names corec_specs eqn' imp_rhs], matchedsss)
blanchet@54440
   547
    else if is_Free head andalso member (op =) fun_names (fst (dest_Free head)) then
panny@54857
   548
      co_dissect_eqn_ctr sequential fun_names corec_specs eqn' imp_prems imp_rhs matchedsss
blanchet@54440
   549
    else
blanchet@54440
   550
      primrec_error_eqn "malformed function equation" eqn
blanchet@54440
   551
  end;
blanchet@54440
   552
panny@54791
   553
fun build_corec_arg_disc ctr_specs {fun_args, ctr_no, prems, ...} =
panny@54791
   554
  if is_none (#pred (nth ctr_specs ctr_no)) then I else
panny@54791
   555
    mk_conjs prems
panny@54791
   556
    |> curry subst_bounds (List.rev fun_args)
panny@54791
   557
    |> HOLogic.tupled_lambda (HOLogic.mk_tuple fun_args)
panny@54791
   558
    |> K |> nth_map (the (#pred (nth ctr_specs ctr_no)));
blanchet@54440
   559
panny@54857
   560
fun build_corec_arg_no_call sel_eqns sel =
panny@54857
   561
  find_first (equal sel o #sel) sel_eqns
panny@54857
   562
  |> try (fn SOME {fun_args, rhs_term, ...} => abs_tuple fun_args rhs_term)
panny@54857
   563
  |> the_default undef_const
panny@54548
   564
  |> K;
panny@54497
   565
panny@54872
   566
fun build_corec_args_direct_call lthy has_call sel_eqns sel =
panny@54497
   567
  let
panny@54548
   568
    val maybe_sel_eqn = find_first (equal sel o #sel) sel_eqns;
panny@54872
   569
    fun rewrite_q t = if has_call t then @{term False} else @{term True};
panny@54872
   570
    fun rewrite_g t = if has_call t then undef_const else t;
panny@54872
   571
    fun rewrite_h t = if has_call t then HOLogic.mk_tuple (snd (strip_comb t)) else undef_const;
panny@54872
   572
    fun massage _ NONE t = t
panny@54872
   573
      | massage f (SOME {fun_args, rhs_term, ...}) t =
panny@54872
   574
        massage_direct_corec_call lthy has_call f (range_type (fastype_of t)) rhs_term
panny@54872
   575
        |> abs_tuple fun_args;
panny@54497
   576
  in
panny@54872
   577
    (massage rewrite_q maybe_sel_eqn,
panny@54872
   578
     massage rewrite_g maybe_sel_eqn,
panny@54872
   579
     massage rewrite_h maybe_sel_eqn)
panny@54497
   580
  end;
panny@54497
   581
panny@54548
   582
fun build_corec_arg_indirect_call lthy has_call sel_eqns sel =
panny@54548
   583
  let
panny@54548
   584
    val maybe_sel_eqn = find_first (equal sel o #sel) sel_eqns;
panny@54872
   585
    fun rewrite bound_Ts U T (Abs (v, V, b)) = Abs (v, V, rewrite (V :: bound_Ts) U T b)
panny@54872
   586
      | rewrite bound_Ts U T (t as _ $ _) =
blanchet@54871
   587
        let val (u, vs) = strip_comb t in
blanchet@54871
   588
          if is_Free u andalso has_call u then
panny@54872
   589
            Inr_const U T $ mk_tuple1 bound_Ts vs
blanchet@54871
   590
          else if try (fst o dest_Const) u = SOME @{const_name prod_case} then
panny@54872
   591
            list_comb (map_types (K dummyT) u, map (rewrite bound_Ts U T) vs)
blanchet@54871
   592
          else
panny@54872
   593
            list_comb (rewrite bound_Ts U T u, map (rewrite bound_Ts U T) vs)
panny@54872
   594
        end
panny@54872
   595
      | rewrite _ U T t = if is_Free t andalso has_call t then Inr_const U T $ HOLogic.unit else t;
panny@54872
   596
    fun massage NONE t = t
panny@54872
   597
      | massage (SOME {fun_args, rhs_term, ...}) t =
panny@54872
   598
        massage_indirect_corec_call lthy has_call (rewrite []) []
panny@54872
   599
          (range_type (fastype_of t)) rhs_term
panny@54872
   600
        |> abs_tuple fun_args;
panny@54548
   601
  in
panny@54872
   602
    massage maybe_sel_eqn
panny@54548
   603
  end;
panny@54497
   604
panny@54497
   605
fun build_corec_args_sel lthy has_call all_sel_eqns ctr_spec =
panny@54478
   606
  let val sel_eqns = filter (equal (#ctr ctr_spec) o #ctr) all_sel_eqns in
panny@54478
   607
    if null sel_eqns then I else
panny@54478
   608
      let
panny@54478
   609
        val sel_call_list = #sels ctr_spec ~~ #calls ctr_spec;
panny@54478
   610
panny@54478
   611
        val no_calls' = map_filter (try (apsnd (fn No_Corec n => n))) sel_call_list;
panny@54478
   612
        val direct_calls' = map_filter (try (apsnd (fn Direct_Corec n => n))) sel_call_list;
panny@54478
   613
        val indirect_calls' = map_filter (try (apsnd (fn Indirect_Corec n => n))) sel_call_list;
panny@54478
   614
      in
panny@54497
   615
        I
panny@54872
   616
        #> fold (fn (sel, n) => nth_map n (build_corec_arg_no_call sel_eqns sel)) no_calls'
panny@54497
   617
        #> fold (fn (sel, (q, g, h)) =>
panny@54872
   618
          let val (fq, fg, fh) = build_corec_args_direct_call lthy has_call sel_eqns sel in
panny@54872
   619
            nth_map q fq o nth_map g fg o nth_map h fh end) direct_calls'
panny@54497
   620
        #> fold (fn (sel, n) => nth_map n
panny@54548
   621
          (build_corec_arg_indirect_call lthy has_call sel_eqns sel)) indirect_calls'
panny@54478
   622
      end
blanchet@54440
   623
  end;
blanchet@54440
   624
panny@54791
   625
fun co_build_defs lthy bs mxs has_call arg_Tss corec_specs disc_eqnss sel_eqnss =
panny@54791
   626
  let
panny@54791
   627
    val corec_specs' = take (length bs) corec_specs;
panny@54791
   628
    val corecs = map #corec corec_specs';
panny@54791
   629
    val ctr_specss = map #ctr_specs corec_specs';
panny@54497
   630
    val corec_args = hd corecs
panny@54497
   631
      |> fst o split_last o binder_types o fastype_of
panny@54497
   632
      |> map (Const o pair @{const_name undefined})
panny@54857
   633
      |> fold2 (fold o build_corec_arg_disc) ctr_specss disc_eqnss
panny@54497
   634
      |> fold2 (fold o build_corec_args_sel lthy has_call) sel_eqnss ctr_specss;
panny@54872
   635
    fun currys [] t = t
panny@54872
   636
      | currys Ts t = t $ mk_tuple1 (List.rev Ts) (map Bound (length Ts - 1 downto 0))
panny@54872
   637
          |> fold_rev (Term.abs o pair Name.uu) Ts;
panny@54538
   638
panny@54497
   639
val _ = tracing ("corecursor arguments:\n    \<cdot> " ^
panny@54548
   640
 space_implode "\n    \<cdot> " (map (Syntax.string_of_term lthy) corec_args));
blanchet@54440
   641
panny@54791
   642
    val exclss' =
panny@54857
   643
      disc_eqnss
panny@54791
   644
      |> map (map (fn {fun_args, ctr_no, prems, ...} => (fun_args, ctr_no, prems))
panny@54791
   645
        #> fst o (fn xs => fold_map (fn x => fn ys => ((x, ys), ys @ [x])) xs [])
panny@54791
   646
        #> maps (uncurry (map o pair)
panny@54791
   647
          #> map (fn ((fun_args, c, x), (_, c', y)) => ((c, c'), (x, mk_not (mk_conjs y)))
panny@54791
   648
            ||> apfst (map HOLogic.mk_Trueprop) o apsnd HOLogic.mk_Trueprop
panny@54791
   649
            ||> Logic.list_implies
panny@54791
   650
            ||> curry Logic.list_all (map dest_Free fun_args))))
blanchet@54440
   651
  in
blanchet@54440
   652
    map (list_comb o rpair corec_args) corecs
blanchet@54440
   653
    |> map2 (fn Ts => fn t => if length Ts = 0 then t $ HOLogic.unit else t) arg_Tss
blanchet@54440
   654
    |> map2 currys arg_Tss
blanchet@54440
   655
    |> Syntax.check_terms lthy
traytel@54489
   656
    |> map3 (fn b => fn mx => fn t => ((b, mx), ((Binding.map_name Thm.def_name b, []), t))) bs mxs
panny@54791
   657
    |> rpair exclss'
blanchet@54440
   658
  end;
blanchet@54440
   659
panny@54859
   660
fun mk_real_disc_eqns fun_binding arg_Ts {ctr_specs, ...} sel_eqns disc_eqns =
panny@54857
   661
  if length disc_eqns <> length ctr_specs - 1 then disc_eqns else
panny@54857
   662
    let
panny@54857
   663
      val n = 0 upto length ctr_specs
panny@54857
   664
        |> the o find_first (fn idx => not (exists (equal idx o #ctr_no) disc_eqns));
panny@54859
   665
      val fun_args = (try (#fun_args o hd) disc_eqns, try (#fun_args o hd) sel_eqns)
panny@54859
   666
        |> the_default (map (curry Free Name.uu) arg_Ts) o merge_options;
panny@54857
   667
      val extra_disc_eqn = {
panny@54857
   668
        fun_name = Binding.name_of fun_binding,
panny@54857
   669
        fun_T = arg_Ts ---> body_type (fastype_of (#ctr (hd ctr_specs))),
panny@54859
   670
        fun_args = fun_args,
panny@54857
   671
        ctr = #ctr (nth ctr_specs n),
panny@54857
   672
        ctr_no = n,
panny@54857
   673
        disc = #disc (nth ctr_specs n),
panny@54857
   674
        prems = maps (invert_prems o #prems) disc_eqns,
panny@54857
   675
        user_eqn = undef_const};
panny@54857
   676
    in
panny@54857
   677
      chop n disc_eqns ||> cons extra_disc_eqn |> (op @)
panny@54857
   678
    end;
panny@54857
   679
blanchet@54440
   680
fun add_primcorec sequential fixes specs lthy =
blanchet@54440
   681
  let
traytel@54489
   682
    val (bs, mxs) = map_split (apfst fst) fixes;
blanchet@54440
   683
    val (arg_Ts, res_Ts) = map (strip_type o snd o fst #>> HOLogic.mk_tupleT) fixes |> split_list;
blanchet@54440
   684
blanchet@54440
   685
    (* copied from primrec_new *)
blanchet@54440
   686
    fun get_indices t = map (fst #>> Binding.name_of #> Free) fixes
blanchet@54440
   687
      |> map_index (fn (i, v) => if exists_subterm (equal v) t then SOME i else NONE)
blanchet@54440
   688
      |> map_filter I;
blanchet@54440
   689
blanchet@54440
   690
    val callssss = []; (* FIXME *)
blanchet@54440
   691
panny@54791
   692
    val ((nontriv, corec_specs', _, coinduct_thm, strong_co_induct_thm, coinduct_thmss,
blanchet@54440
   693
          strong_coinduct_thmss), lthy') =
blanchet@54440
   694
      corec_specs_of bs arg_Ts res_Ts get_indices callssss lthy;
blanchet@54440
   695
blanchet@54440
   696
    val fun_names = map Binding.name_of bs;
panny@54791
   697
    val corec_specs = take (length fun_names) corec_specs'; (*###*)
blanchet@54440
   698
blanchet@54440
   699
    val (eqns_data, _) =
panny@54791
   700
      fold_map (co_dissect_eqn sequential fun_names corec_specs) (map snd specs) []
blanchet@54440
   701
      |>> flat;
blanchet@54440
   702
panny@54857
   703
    val disc_eqnss' = map_filter (try (fn Disc x => x)) eqns_data
panny@54791
   704
      |> partition_eq ((op =) o pairself #fun_name)
panny@54857
   705
      |> fst o finds (fn (x, ({fun_name, ...} :: _)) => x = fun_name) fun_names
panny@54791
   706
      |> map (sort ((op <) o pairself #ctr_no |> make_ord) o flat o snd);
panny@54857
   707
    val _ = disc_eqnss' |> map (fn x =>
panny@54857
   708
      let val d = duplicates ((op =) o pairself #ctr_no) x in null d orelse
panny@54857
   709
        primrec_error_eqns "excess discriminator equations in definition"
panny@54857
   710
          (maps (fn t => filter (equal (#ctr_no t) o #ctr_no) x) d |> map #user_eqn) end);
panny@54791
   711
panny@54791
   712
    val sel_eqnss = map_filter (try (fn Sel x => x)) eqns_data
panny@54791
   713
      |> partition_eq ((op =) o pairself #fun_name)
panny@54857
   714
      |> fst o finds (fn (x, ({fun_name, ...} :: _)) => x = fun_name) fun_names
panny@54791
   715
      |> map (flat o snd);
panny@54791
   716
panny@54497
   717
    val has_call = exists_subterm (map (fst #>> Binding.name_of #> Free) fixes |> member (op =));
panny@54497
   718
    val arg_Tss = map (binder_types o snd o fst) fixes;
panny@54859
   719
    val disc_eqnss = map5 mk_real_disc_eqns bs arg_Tss corec_specs sel_eqnss disc_eqnss';
panny@54791
   720
    val (defs, exclss') =
panny@54791
   721
      co_build_defs lthy' bs mxs has_call arg_Tss corec_specs disc_eqnss sel_eqnss;
panny@54791
   722
panny@54791
   723
    (* try to prove (automatically generated) tautologies by ourselves *)
panny@54791
   724
    val exclss'' = exclss'
panny@54791
   725
      |> map (map (apsnd
blanchet@54836
   726
        (`(try (fn t => Goal.prove lthy [] [] t (mk_primcorec_assumption_tac lthy |> K))))));
panny@54791
   727
    val taut_thmss = map (map (apsnd (the o fst)) o filter (is_some o fst o snd)) exclss'';
panny@54791
   728
    val (obligation_idxss, obligationss) = exclss''
panny@54791
   729
      |> map (map (apsnd (rpair [] o snd)) o filter (is_none o fst o snd))
panny@54791
   730
      |> split_list o map split_list;
panny@54791
   731
panny@54791
   732
    fun prove thmss' def_thms' lthy =
panny@54791
   733
      let
panny@54791
   734
        val def_thms = map (snd o snd) def_thms';
panny@54791
   735
panny@54791
   736
        val exclss' = map (op ~~) (obligation_idxss ~~ thmss');
panny@54791
   737
        fun mk_exclsss excls n =
panny@54791
   738
          (excls, map (fn k => replicate k [TrueI] @ replicate (n - k) []) (0 upto n - 1))
panny@54791
   739
          |-> fold (fn ((c, c'), thm) => nth_map c (nth_map c' (K [thm])));
panny@54791
   740
        val exclssss = (exclss' ~~ taut_thmss |> map (op @), fun_names ~~ corec_specs)
panny@54791
   741
          |-> map2 (fn excls => fn (_, {ctr_specs, ...}) => mk_exclsss excls (length ctr_specs));
panny@54791
   742
panny@54791
   743
        fun prove_disc {ctr_specs, ...} exclsss
panny@54857
   744
            {fun_name, fun_T, fun_args, ctr_no, prems, user_eqn, ...} =
panny@54859
   745
          if Term.aconv_untyped (#disc (nth ctr_specs ctr_no), @{term "\<lambda>x. x = x"}) then [] else
panny@54857
   746
            let
panny@54859
   747
              val {disc_corec, ...} = nth ctr_specs ctr_no;
panny@54857
   748
              val k = 1 + ctr_no;
panny@54857
   749
              val m = length prems;
panny@54857
   750
              val t =
panny@54857
   751
                list_comb (Free (fun_name, fun_T), map Bound (length fun_args - 1 downto 0))
panny@54857
   752
                |> curry betapply (#disc (nth ctr_specs ctr_no)) (*###*)
panny@54857
   753
                |> HOLogic.mk_Trueprop
panny@54857
   754
                |> curry Logic.list_implies (map HOLogic.mk_Trueprop prems)
panny@54857
   755
                |> curry Logic.list_all (map dest_Free fun_args);
panny@54857
   756
            in
panny@54857
   757
              mk_primcorec_disc_tac lthy def_thms disc_corec k m exclsss
panny@54857
   758
              |> K |> Goal.prove lthy [] [] t
panny@54857
   759
              |> pair (#disc (nth ctr_specs ctr_no))
panny@54857
   760
              |> single
panny@54857
   761
            end;
panny@54857
   762
panny@54857
   763
        fun prove_sel {ctr_specs, nested_maps, nested_map_idents, nested_map_comps, ...}
panny@54857
   764
            disc_eqns exclsss {fun_name, fun_T, fun_args, ctr, sel, rhs_term, ...} =
panny@54791
   765
          let
panny@54857
   766
            val (SOME ctr_spec) = find_first (equal ctr o #ctr) ctr_specs;
panny@54857
   767
            val ctr_no = find_index (equal ctr o #ctr) ctr_specs;
panny@54857
   768
            val prems = the_default (maps (invert_prems o #prems) disc_eqns)
panny@54857
   769
                (find_first (equal ctr_no o #ctr_no) disc_eqns |> Option.map #prems);
panny@54857
   770
            val sel_corec = find_index (equal sel) (#sels ctr_spec)
panny@54857
   771
              |> nth (#sel_corecs ctr_spec);
panny@54791
   772
            val k = 1 + ctr_no;
panny@54791
   773
            val m = length prems;
panny@54791
   774
            val t =
panny@54857
   775
              list_comb (Free (fun_name, fun_T), map Bound (length fun_args - 1 downto 0))
panny@54857
   776
              |> curry betapply sel
panny@54857
   777
              |> rpair (abstract (List.rev fun_args) rhs_term)
panny@54857
   778
              |> HOLogic.mk_Trueprop o HOLogic.mk_eq
panny@54791
   779
              |> curry Logic.list_implies (map HOLogic.mk_Trueprop prems)
panny@54857
   780
              |> curry Logic.list_all (map dest_Free fun_args);
panny@54791
   781
          in
blanchet@54829
   782
            mk_primcorec_ctr_or_sel_tac lthy def_thms sel_corec k m exclsss
panny@54791
   783
              nested_maps nested_map_idents nested_map_comps
panny@54791
   784
            |> K |> Goal.prove lthy [] [] t
panny@54857
   785
            |> pair sel
panny@54791
   786
          end;
panny@54791
   787
panny@54857
   788
        fun prove_ctr (_, disc_thms) (_, sel_thms') disc_eqns sel_eqns
panny@54857
   789
            {ctr, disc, sels, collapse, ...} =
panny@54857
   790
          if not (exists (equal ctr o #ctr) disc_eqns)
panny@54859
   791
              andalso not (exists (equal ctr o #ctr) sel_eqns)
panny@54859
   792
andalso (warning ("no eqns for ctr " ^ Syntax.string_of_term lthy ctr); true)
panny@54859
   793
            orelse (* don't try to prove theorems when some sel_eqns are missing *)
panny@54857
   794
              filter (equal ctr o #ctr) sel_eqns
panny@54857
   795
              |> fst o finds ((op =) o apsnd #sel) sels
panny@54857
   796
              |> exists (null o snd)
panny@54857
   797
andalso (warning ("sel_eqn(s) missing for ctr " ^ Syntax.string_of_term lthy ctr); true)
panny@54857
   798
          then [] else
panny@54857
   799
            let
panny@54857
   800
val _ = tracing ("ctr = " ^ Syntax.string_of_term lthy ctr);
panny@54872
   801
val _ = tracing (the_default "no disc_eqn" (Option.map (curry (op ^) "disc = " o Syntax.string_of_term lthy o #disc) (find_first (equal ctr o #ctr) disc_eqns)));
panny@54859
   802
              val (fun_name, fun_T, fun_args, prems) =
panny@54859
   803
                (find_first (equal ctr o #ctr) disc_eqns, find_first (equal ctr o #ctr) sel_eqns)
panny@54859
   804
                |>> Option.map (fn x => (#fun_name x, #fun_T x, #fun_args x, #prems x))
panny@54859
   805
                ||> Option.map (fn x => (#fun_name x, #fun_T x, #fun_args x, []))
panny@54859
   806
                |> the o merge_options;
panny@54857
   807
              val m = length prems;
panny@54857
   808
              val t = sel_eqns
panny@54857
   809
                |> fst o finds ((op =) o apsnd #sel) sels
panny@54857
   810
                |> map (snd #> (fn [x] => (List.rev (#fun_args x), #rhs_term x)) #-> abstract)
panny@54857
   811
                |> curry list_comb ctr
panny@54857
   812
                |> curry HOLogic.mk_eq (list_comb (Free (fun_name, fun_T),
panny@54857
   813
                  map Bound (length fun_args - 1 downto 0)))
panny@54857
   814
                |> HOLogic.mk_Trueprop
panny@54857
   815
                |> curry Logic.list_implies (map HOLogic.mk_Trueprop prems)
panny@54857
   816
                |> curry Logic.list_all (map dest_Free fun_args);
panny@54859
   817
              val maybe_disc_thm = AList.lookup (op =) disc_thms disc;
panny@54857
   818
              val sel_thms = map snd (filter (member (op =) sels o fst) sel_thms');
panny@54857
   819
val _ = tracing ("t = " ^ Syntax.string_of_term lthy t);
panny@54857
   820
val _ = tracing ("m = " ^ @{make_string} m);
panny@54857
   821
val _ = tracing ("collapse = " ^ @{make_string} collapse);
panny@54859
   822
val _ = tracing ("maybe_disc_thm = " ^ @{make_string} maybe_disc_thm);
panny@54857
   823
val _ = tracing ("sel_thms = " ^ @{make_string} sel_thms);
panny@54857
   824
            in
panny@54859
   825
              mk_primcorec_ctr_of_dtr_tac lthy m collapse maybe_disc_thm sel_thms
panny@54857
   826
              |> K |> Goal.prove lthy [] [] t
panny@54857
   827
              |> single
panny@54857
   828
          end;
panny@54857
   829
blanchet@54880
   830
        (* TODO: please reorganize so that the list looks like elsewhere in the BNF code.
blanchet@54880
   831
           This is important because we continually add new theorems, change attributes, etc., and
blanchet@54880
   832
           need to have a clear overview (and keep the documentation in sync). Also, it's confusing
blanchet@54880
   833
           that some variables called '_thmss' are actually pairs. *)
panny@54857
   834
        val (disc_notes, disc_thmss) =
panny@54857
   835
          fun_names ~~ map3 (maps oo prove_disc) corec_specs exclssss disc_eqnss
panny@54857
   836
          |> `(map (fn (fun_name, thms) =>
panny@54857
   837
            ((Binding.qualify true fun_name (@{binding disc}), simp_attrs), [(map snd thms, [])])));
panny@54857
   838
        val (sel_notes, sel_thmss) =
panny@54857
   839
          fun_names ~~ map4 (map ooo prove_sel) corec_specs disc_eqnss exclssss sel_eqnss
panny@54857
   840
          |> `(map (fn (fun_name, thms) =>
panny@54857
   841
            ((Binding.qualify true fun_name (@{binding sel}), simp_attrs), [(map snd thms, [])])));
panny@54857
   842
        val ctr_notes =
panny@54857
   843
          fun_names ~~ map5 (maps oooo prove_ctr) disc_thmss sel_thmss
panny@54857
   844
            disc_eqnss sel_eqnss (map #ctr_specs corec_specs)
panny@54791
   845
          |> map (fn (fun_name, thms) =>
traytel@54873
   846
            ((Binding.qualify true fun_name (@{binding ctr}), []), [(thms, [])]));
panny@54791
   847
      in
panny@54857
   848
        lthy |> snd o Local_Theory.notes
panny@54857
   849
          (filter (not o null o fst o the_single o snd) (disc_notes @ sel_notes @ ctr_notes))
panny@54791
   850
      end;
blanchet@54440
   851
  in
blanchet@54440
   852
    lthy'
panny@54791
   853
    |> Proof.theorem NONE (curry (op #->) (fold_map Local_Theory.define defs) o prove) obligationss
blanchet@54440
   854
    |> Proof.refine (Method.primitive_text I)
blanchet@54440
   855
    |> Seq.hd
blanchet@54440
   856
  end
blanchet@54440
   857
blanchet@54440
   858
fun add_primcorec_cmd seq (raw_fixes, raw_specs) lthy =
blanchet@54440
   859
  let
blanchet@54440
   860
    val (fixes, specs) = fst (Specification.read_spec raw_fixes raw_specs lthy);
blanchet@54440
   861
  in
blanchet@54440
   862
    add_primcorec seq fixes specs lthy
blanchet@54440
   863
    handle ERROR str => primrec_error str
blanchet@54440
   864
  end
blanchet@54440
   865
  handle Primrec_Error (str, eqns) =>
blanchet@54440
   866
    if null eqns
blanchet@54440
   867
    then error ("primcorec error:\n  " ^ str)
blanchet@54440
   868
    else error ("primcorec error:\n  " ^ str ^ "\nin\n  " ^
blanchet@54440
   869
      space_implode "\n  " (map (quote o Syntax.string_of_term lthy) eqns))
blanchet@54440
   870
blanchet@54440
   871
end;