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