src/HOL/Tools/TFL/tfl.ML
author wenzelm
Thu, 15 Oct 2009 23:28:10 +0200
changeset 32952 aeb1e44fbc19
parent 32740 9dd0a2f83429
child 33035 15eab423e573
child 33038 8f9594c31de4
permissions -rw-r--r--
replaced String.concat by implode; replaced String.concatWith by space_implode; replaced (Seq.flat o Seq.map) by Seq.maps; replaced List.mapPartial by map_filter; replaced List.concat by flat; replaced (flat o map) by maps, which produces less garbage;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/Tools/TFL/tfl.ML
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
     2
    Author:     Konrad Slind, Cambridge University Computer Laboratory
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
     3
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
     4
First part of main module.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
     5
*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
     6
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
     7
signature PRIM =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
     8
sig
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32432
diff changeset
     9
  val trace: bool Unsynchronized.ref
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    10
  val trace_thms: string -> thm list -> unit
32432
64f30bdd3ba1 modernized messages -- eliminated ctyp/cterm operations;
wenzelm
parents: 32091
diff changeset
    11
  val trace_cterm: string -> cterm -> unit
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    12
  type pattern
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    13
  val mk_functional: theory -> term list -> {functional: term, pats: pattern list}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    14
  val wfrec_definition0: theory -> string -> term -> term -> theory * thm
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    15
  val post_definition: thm list -> theory * (thm * pattern list) ->
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    16
   {rules: thm,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    17
    rows: int list,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    18
    TCs: term list list,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    19
    full_pats_TCs: (term * term list) list}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    20
  val wfrec_eqns: theory -> xstring -> thm list -> term list ->
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    21
   {WFR: term,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    22
    SV: term list,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    23
    proto_def: term,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    24
    extracta: (thm * term list) list,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    25
    pats: pattern list}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    26
  val lazyR_def: theory -> xstring -> thm list -> term list ->
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    27
   {theory: theory,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    28
    rules: thm,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    29
    R: term,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    30
    SV: term list,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    31
    full_pats_TCs: (term * term list) list,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    32
    patterns : pattern list}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    33
  val mk_induction: theory ->
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    34
    {fconst: term, R: term, SV: term list, pat_TCs_list: (term * term list) list} -> thm
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    35
  val postprocess: bool -> {wf_tac: tactic, terminator: tactic, simplifier: cterm -> thm}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    36
    -> theory -> {rules: thm, induction: thm, TCs: term list list}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    37
    -> {rules: thm, induction: thm, nested_tcs: thm list}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    38
end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    39
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    40
structure Prim: PRIM =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    41
struct
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    42
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32432
diff changeset
    43
val trace = Unsynchronized.ref false;
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    44
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    45
structure R = Rules;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    46
structure S = USyntax;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    47
structure U = Utils;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    48
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    49
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    50
fun TFL_ERR func mesg = U.ERR {module = "Tfl", func = func, mesg = mesg};
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    51
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    52
val concl = #2 o R.dest_thm;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    53
val hyp = #1 o R.dest_thm;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    54
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    55
val list_mk_type = U.end_itlist (curry (op -->));
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    56
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    57
fun enumerate xs = ListPair.zip(xs, 0 upto (length xs - 1));
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    58
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    59
fun front_last [] = raise TFL_ERR "front_last" "empty list"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    60
  | front_last [x] = ([],x)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    61
  | front_last (h::t) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    62
     let val (pref,x) = front_last t
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    63
     in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    64
        (h::pref,x)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    65
     end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    66
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    67
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    68
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    69
 * The next function is common to pattern-match translation and
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    70
 * proof of completeness of cases for the induction theorem.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    71
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    72
 * The curried function "gvvariant" returns a function to generate distinct
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    73
 * variables that are guaranteed not to be in names.  The names of
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    74
 * the variables go u, v, ..., z, aa, ..., az, ...  The returned
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    75
 * function contains embedded refs!
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    76
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    77
fun gvvariant names =
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32432
diff changeset
    78
  let val slist = Unsynchronized.ref names
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32432
diff changeset
    79
      val vname = Unsynchronized.ref "u"
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    80
      fun new() =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    81
         if !vname mem_string (!slist)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    82
         then (vname := Symbol.bump_string (!vname);  new())
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    83
         else (slist := !vname :: !slist;  !vname)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    84
  in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    85
  fn ty => Free(new(), ty)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    86
  end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    87
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    88
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    89
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    90
 * Used in induction theorem production. This is the simple case of
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    91
 * partitioning up pattern rows by the leading constructor.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    92
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    93
fun ipartition gv (constructors,rows) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    94
  let fun pfail s = raise TFL_ERR "partition.part" s
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    95
      fun part {constrs = [],   rows = [],   A} = rev A
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    96
        | part {constrs = [],   rows = _::_, A} = pfail"extra cases in defn"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    97
        | part {constrs = _::_, rows = [],   A} = pfail"cases missing in defn"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    98
        | part {constrs = c::crst, rows,     A} =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
    99
          let val (c, T) = dest_Const c
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   100
              val L = binder_types T
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   101
              val (in_group, not_in_group) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   102
               fold_rev (fn (row as (p::rst, rhs)) =>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   103
                         fn (in_group,not_in_group) =>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   104
                  let val (pc,args) = S.strip_comb p
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   105
                  in if (#1(dest_Const pc) = c)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   106
                     then ((args@rst, rhs)::in_group, not_in_group)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   107
                     else (in_group, row::not_in_group)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   108
                  end)      rows ([],[])
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   109
              val col_types = U.take type_of (length L, #1(hd in_group))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   110
          in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   111
          part{constrs = crst, rows = not_in_group,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   112
               A = {constructor = c,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   113
                    new_formals = map gv col_types,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   114
                    group = in_group}::A}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   115
          end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   116
  in part{constrs = constructors, rows = rows, A = []}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   117
  end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   118
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   119
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   120
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   121
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   122
 * Each pattern carries with it a tag (i,b) where
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   123
 * i is the clause it came from and
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   124
 * b=true indicates that clause was given by the user
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   125
 * (or is an instantiation of a user supplied pattern)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   126
 * b=false --> i = ~1
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   127
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   128
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   129
type pattern = term * (int * bool)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   130
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   131
fun pattern_map f (tm,x) = (f tm, x);
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   132
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   133
fun pattern_subst theta = pattern_map (subst_free theta);
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   134
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   135
val pat_of = fst;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   136
fun row_of_pat x = fst (snd x);
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   137
fun given x = snd (snd x);
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   138
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   139
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   140
 * Produce an instance of a constructor, plus genvars for its arguments.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   141
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   142
fun fresh_constr ty_match colty gv c =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   143
  let val (_,Ty) = dest_Const c
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   144
      val L = binder_types Ty
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   145
      and ty = body_type Ty
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   146
      val ty_theta = ty_match ty colty
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   147
      val c' = S.inst ty_theta c
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   148
      val gvars = map (S.inst ty_theta o gv) L
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   149
  in (c', gvars)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   150
  end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   151
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   152
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   153
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   154
 * Goes through a list of rows and picks out the ones beginning with a
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   155
 * pattern with constructor = name.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   156
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   157
fun mk_group name rows =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   158
  fold_rev (fn (row as ((prfx, p::rst), rhs)) =>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   159
            fn (in_group,not_in_group) =>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   160
               let val (pc,args) = S.strip_comb p
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   161
               in if ((#1 (Term.dest_Const pc) = name) handle TERM _ => false)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   162
                  then (((prfx,args@rst), rhs)::in_group, not_in_group)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   163
                  else (in_group, row::not_in_group) end)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   164
      rows ([],[]);
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   165
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   166
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   167
 * Partition the rows. Not efficient: we should use hashing.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   168
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   169
fun partition _ _ (_,_,_,[]) = raise TFL_ERR "partition" "no rows"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   170
  | partition gv ty_match
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   171
              (constructors, colty, res_ty, rows as (((prfx,_),_)::_)) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   172
let val fresh = fresh_constr ty_match colty gv
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   173
     fun part {constrs = [],      rows, A} = rev A
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   174
       | part {constrs = c::crst, rows, A} =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   175
         let val (c',gvars) = fresh c
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   176
             val (in_group, not_in_group) = mk_group (#1 (dest_Const c')) rows
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   177
             val in_group' =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   178
                 if (null in_group)  (* Constructor not given *)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   179
                 then [((prfx, #2(fresh c)), (S.ARB res_ty, (~1,false)))]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   180
                 else in_group
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   181
         in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   182
         part{constrs = crst,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   183
              rows = not_in_group,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   184
              A = {constructor = c',
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   185
                   new_formals = gvars,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   186
                   group = in_group'}::A}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   187
         end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   188
in part{constrs=constructors, rows=rows, A=[]}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   189
end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   190
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   191
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   192
 * Misc. routines used in mk_case
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   193
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   194
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   195
fun mk_pat (c,l) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   196
  let val L = length (binder_types (type_of c))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   197
      fun build (prfx,tag,plist) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   198
          let val args   = Library.take (L,plist)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   199
              and plist' = Library.drop(L,plist)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   200
          in (prfx,tag,list_comb(c,args)::plist') end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   201
  in map build l end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   202
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   203
fun v_to_prfx (prfx, v::pats) = (v::prfx,pats)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   204
  | v_to_prfx _ = raise TFL_ERR "mk_case" "v_to_prfx";
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   205
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   206
fun v_to_pats (v::prfx,tag, pats) = (prfx, tag, v::pats)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   207
  | v_to_pats _ = raise TFL_ERR "mk_case" "v_to_pats";
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   208
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   209
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   210
(*----------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   211
 * Translation of pattern terms into nested case expressions.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   212
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   213
 * This performs the translation and also builds the full set of patterns.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   214
 * Thus it supports the construction of induction theorems even when an
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   215
 * incomplete set of patterns is given.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   216
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   217
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   218
fun mk_case ty_info ty_match usednames range_ty =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   219
 let
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   220
 fun mk_case_fail s = raise TFL_ERR "mk_case" s
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   221
 val fresh_var = gvvariant usednames
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   222
 val divide = partition fresh_var ty_match
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   223
 fun expand constructors ty ((_,[]), _) = mk_case_fail"expand_var_row"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   224
   | expand constructors ty (row as ((prfx, p::rst), rhs)) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   225
       if (is_Free p)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   226
       then let val fresh = fresh_constr ty_match ty fresh_var
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   227
                fun expnd (c,gvs) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   228
                  let val capp = list_comb(c,gvs)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   229
                  in ((prfx, capp::rst), pattern_subst[(p,capp)] rhs)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   230
                  end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   231
            in map expnd (map fresh constructors)  end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   232
       else [row]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   233
 fun mk{rows=[],...} = mk_case_fail"no rows"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   234
   | mk{path=[], rows = ((prfx, []), (tm,tag))::_} =  (* Done *)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   235
        ([(prfx,tag,[])], tm)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   236
   | mk{path=[], rows = _::_} = mk_case_fail"blunder"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   237
   | mk{path as u::rstp, rows as ((prfx, []), rhs)::rst} =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   238
        mk{path = path,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   239
           rows = ((prfx, [fresh_var(type_of u)]), rhs)::rst}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   240
   | mk{path = u::rstp, rows as ((_, p::_), _)::_} =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   241
     let val (pat_rectangle,rights) = ListPair.unzip rows
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   242
         val col0 = map(hd o #2) pat_rectangle
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   243
     in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   244
     if (forall is_Free col0)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   245
     then let val rights' = map (fn(v,e) => pattern_subst[(v,u)] e)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   246
                                (ListPair.zip (col0, rights))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   247
              val pat_rectangle' = map v_to_prfx pat_rectangle
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   248
              val (pref_patl,tm) = mk{path = rstp,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   249
                                      rows = ListPair.zip (pat_rectangle',
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   250
                                                           rights')}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   251
          in (map v_to_pats pref_patl, tm)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   252
          end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   253
     else
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   254
     let val pty as Type (ty_name,_) = type_of p
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   255
     in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   256
     case (ty_info ty_name)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   257
     of NONE => mk_case_fail("Not a known datatype: "^ty_name)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   258
      | SOME{case_const,constructors} =>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   259
        let
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   260
            val case_const_name = #1(dest_Const case_const)
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 32740
diff changeset
   261
            val nrows = maps (expand constructors pty) rows
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   262
            val subproblems = divide(constructors, pty, range_ty, nrows)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   263
            val groups      = map #group subproblems
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   264
            and new_formals = map #new_formals subproblems
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   265
            and constructors' = map #constructor subproblems
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   266
            val news = map (fn (nf,rows) => {path = nf@rstp, rows=rows})
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   267
                           (ListPair.zip (new_formals, groups))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   268
            val rec_calls = map mk news
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   269
            val (pat_rect,dtrees) = ListPair.unzip rec_calls
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   270
            val case_functions = map S.list_mk_abs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   271
                                  (ListPair.zip (new_formals, dtrees))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   272
            val types = map type_of (case_functions@[u]) @ [range_ty]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   273
            val case_const' = Const(case_const_name, list_mk_type types)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   274
            val tree = list_comb(case_const', case_functions@[u])
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 32740
diff changeset
   275
            val pat_rect1 = flat (ListPair.map mk_pat (constructors', pat_rect))
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   276
        in (pat_rect1,tree)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   277
        end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   278
     end end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   279
 in mk
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   280
 end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   281
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   282
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   283
(* Repeated variable occurrences in a pattern are not allowed. *)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   284
fun FV_multiset tm =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   285
   case (S.dest_term tm)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   286
     of S.VAR{Name = c, Ty = T} => [Free(c, T)]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   287
      | S.CONST _ => []
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   288
      | S.COMB{Rator, Rand} => FV_multiset Rator @ FV_multiset Rand
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   289
      | S.LAMB _ => raise TFL_ERR "FV_multiset" "lambda";
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   290
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   291
fun no_repeat_vars thy pat =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   292
 let fun check [] = true
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   293
       | check (v::rst) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   294
         if member (op aconv) rst v then
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   295
            raise TFL_ERR "no_repeat_vars"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   296
                          (quote (#1 (dest_Free v)) ^
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   297
                          " occurs repeatedly in the pattern " ^
32432
64f30bdd3ba1 modernized messages -- eliminated ctyp/cterm operations;
wenzelm
parents: 32091
diff changeset
   298
                          quote (Syntax.string_of_term_global thy pat))
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   299
         else check rst
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   300
 in check (FV_multiset pat)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   301
 end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   302
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   303
fun dest_atom (Free p) = p
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   304
  | dest_atom (Const p) = p
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   305
  | dest_atom  _ = raise TFL_ERR "dest_atom" "function name not an identifier";
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   306
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   307
fun same_name (p,q) = #1(dest_atom p) = #1(dest_atom q);
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   308
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   309
local fun mk_functional_err s = raise TFL_ERR "mk_functional" s
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   310
      fun single [_$_] =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   311
              mk_functional_err "recdef does not allow currying"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   312
        | single [f] = f
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   313
        | single fs  =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   314
              (*multiple function names?*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   315
              if length (distinct same_name fs) < length fs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   316
              then mk_functional_err
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   317
                   "The function being declared appears with multiple types"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   318
              else mk_functional_err
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   319
                   (Int.toString (length fs) ^
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   320
                    " distinct function names being declared")
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   321
in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   322
fun mk_functional thy clauses =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   323
 let val (L,R) = ListPair.unzip (map HOLogic.dest_eq clauses
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   324
                   handle TERM _ => raise TFL_ERR "mk_functional"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   325
                        "recursion equations must use the = relation")
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   326
     val (funcs,pats) = ListPair.unzip (map (fn (t$u) =>(t,u)) L)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   327
     val atom = single (distinct (op aconv) funcs)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   328
     val (fname,ftype) = dest_atom atom
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   329
     val dummy = map (no_repeat_vars thy) pats
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   330
     val rows = ListPair.zip (map (fn x => ([]:term list,[x])) pats,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   331
                              map (fn (t,i) => (t,(i,true))) (enumerate R))
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29579
diff changeset
   332
     val names = List.foldr OldTerm.add_term_names [] R
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   333
     val atype = type_of(hd pats)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   334
     and aname = Name.variant names "a"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   335
     val a = Free(aname,atype)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   336
     val ty_info = Thry.match_info thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   337
     val ty_match = Thry.match_type thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   338
     val range_ty = type_of (hd R)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   339
     val (patts, case_tm) = mk_case ty_info ty_match (aname::names) range_ty
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   340
                                    {path=[a], rows=rows}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   341
     val patts1 = map (fn (_,tag,[pat]) => (pat,tag)) patts
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   342
          handle Match => mk_functional_err "error in pattern-match translation"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   343
     val patts2 = Library.sort (Library.int_ord o Library.pairself row_of_pat) patts1
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   344
     val finals = map row_of_pat patts2
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   345
     val originals = map (row_of_pat o #2) rows
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   346
     val dummy = case (originals\\finals)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   347
             of [] => ()
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   348
          | L => mk_functional_err
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   349
 ("The following clauses are redundant (covered by preceding clauses): " ^
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   350
                   commas (map (fn i => Int.toString (i + 1)) L))
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   351
 in {functional = Abs(Long_Name.base_name fname, ftype,
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   352
                      abstract_over (atom,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   353
                                     absfree(aname,atype, case_tm))),
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   354
     pats = patts2}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   355
end end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   356
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   357
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   358
(*----------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   359
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   360
 *                    PRINCIPLES OF DEFINITION
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   361
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   362
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   363
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   364
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   365
(*For Isabelle, the lhs of a definition must be a constant.*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   366
fun mk_const_def sign (c, Ty, rhs) =
24493
d4380e9b287b replaced ProofContext.infer_types by general Syntax.check_terms;
wenzelm
parents: 23150
diff changeset
   367
  singleton (Syntax.check_terms (ProofContext.init sign))
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   368
    (Sign.intern_term sign (Const("==",dummyT) $ Const(c,Ty) $ rhs));
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   369
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   370
(*Make all TVars available for instantiation by adding a ? to the front*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   371
fun poly_tvars (Type(a,Ts)) = Type(a, map (poly_tvars) Ts)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   372
  | poly_tvars (TFree (a,sort)) = TVar (("?" ^ a, 0), sort)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   373
  | poly_tvars (TVar ((a,i),sort)) = TVar (("?" ^ a, i+1), sort);
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   374
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   375
local val f_eq_wfrec_R_M =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   376
           #ant(S.dest_imp(#2(S.strip_forall (concl Thms.WFREC_COROLLARY))))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   377
      val {lhs=f, rhs} = S.dest_eq f_eq_wfrec_R_M
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   378
      val (fname,_) = dest_Free f
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   379
      val (wfrec,_) = S.strip_comb rhs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   380
in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   381
fun wfrec_definition0 thy fid R (functional as Abs(x, Ty, _)) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   382
 let val def_name = if x<>fid then
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   383
                        raise TFL_ERR "wfrec_definition0"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   384
                                      ("Expected a definition of " ^
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   385
                                             quote fid ^ " but found one of " ^
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   386
                                      quote x)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   387
                    else x ^ "_def"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   388
     val wfrec_R_M =  map_types poly_tvars
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   389
                          (wfrec $ map_types poly_tvars R)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   390
                      $ functional
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   391
     val def_term = mk_const_def thy (x, Ty, wfrec_R_M)
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29270
diff changeset
   392
     val ([def], thy') = PureThy.add_defs false [Thm.no_attributes (Binding.name def_name, def_term)] thy
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   393
 in (thy', def) end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   394
end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   395
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   396
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   397
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   398
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   399
 * This structure keeps track of congruence rules that aren't derived
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   400
 * from a datatype definition.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   401
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   402
fun extraction_thms thy =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   403
 let val {case_rewrites,case_congs} = Thry.extract_info thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   404
 in (case_rewrites, case_congs)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   405
 end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   406
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   407
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   408
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   409
 * Pair patterns with termination conditions. The full list of patterns for
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   410
 * a definition is merged with the TCs arising from the user-given clauses.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   411
 * There can be fewer clauses than the full list, if the user omitted some
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   412
 * cases. This routine is used to prepare input for mk_induction.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   413
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   414
fun merge full_pats TCs =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   415
let fun insert (p,TCs) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   416
      let fun insrt ((x as (h,[]))::rst) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   417
                 if (p aconv h) then (p,TCs)::rst else x::insrt rst
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   418
            | insrt (x::rst) = x::insrt rst
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   419
            | insrt[] = raise TFL_ERR "merge.insert" "pattern not found"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   420
      in insrt end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   421
    fun pass ([],ptcl_final) = ptcl_final
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   422
      | pass (ptcs::tcl, ptcl) = pass(tcl, insert ptcs ptcl)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   423
in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   424
  pass (TCs, map (fn p => (p,[])) full_pats)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   425
end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   426
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   427
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   428
fun givens pats = map pat_of (List.filter given pats);
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   429
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   430
fun post_definition meta_tflCongs (theory, (def, pats)) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   431
 let val tych = Thry.typecheck theory
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   432
     val f = #lhs(S.dest_eq(concl def))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   433
     val corollary = R.MATCH_MP Thms.WFREC_COROLLARY def
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   434
     val pats' = List.filter given pats
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   435
     val given_pats = map pat_of pats'
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   436
     val rows = map row_of_pat pats'
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   437
     val WFR = #ant(S.dest_imp(concl corollary))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   438
     val R = #Rand(S.dest_comb WFR)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   439
     val corollary' = R.UNDISCH corollary  (* put WF R on assums *)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   440
     val corollaries = map (fn pat => R.SPEC (tych pat) corollary')
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   441
                           given_pats
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   442
     val (case_rewrites,context_congs) = extraction_thms theory
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   443
     (*case_ss causes minimal simplification: bodies of case expressions are
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   444
       not simplified. Otherwise large examples (Red-Black trees) are too
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   445
       slow.*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   446
     val case_ss = Simplifier.theory_context theory
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   447
       (HOL_basic_ss addcongs
31784
bd3486c57ba3 tuned interfaces of datatype module
haftmann
parents: 31723
diff changeset
   448
         (map (#weak_case_cong o snd) o Symtab.dest o Datatype.get_all) theory addsimps case_rewrites)
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   449
     val corollaries' = map (Simplifier.simplify case_ss) corollaries
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   450
     val extract = R.CONTEXT_REWRITE_RULE
26177
6b127c056e83 removed legacy ML bindings;
wenzelm
parents: 24493
diff changeset
   451
                     (f, [R], @{thm cut_apply}, meta_tflCongs@context_congs)
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   452
     val (rules, TCs) = ListPair.unzip (map extract corollaries')
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   453
     val rules0 = map (rewrite_rule [Thms.CUT_DEF]) rules
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   454
     val mk_cond_rule = R.FILTER_DISCH_ALL(not o curry (op aconv) WFR)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   455
     val rules1 = R.LIST_CONJ(map mk_cond_rule rules0)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   456
 in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   457
 {rules = rules1,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   458
  rows = rows,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   459
  full_pats_TCs = merge (map pat_of pats) (ListPair.zip (given_pats, TCs)),
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   460
  TCs = TCs}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   461
 end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   462
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   463
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   464
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   465
 * Perform the extraction without making the definition. Definition and
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   466
 * extraction commute for the non-nested case.  (Deferred recdefs)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   467
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   468
 * The purpose of wfrec_eqns is merely to instantiate the recursion theorem
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   469
 * and extract termination conditions: no definition is made.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   470
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   471
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   472
fun wfrec_eqns thy fid tflCongs eqns =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   473
 let val {lhs,rhs} = S.dest_eq (hd eqns)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   474
     val (f,args) = S.strip_comb lhs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   475
     val (fname,fty) = dest_atom f
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   476
     val (SV,a) = front_last args    (* SV = schematic variables *)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   477
     val g = list_comb(f,SV)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   478
     val h = Free(fname,type_of g)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   479
     val eqns1 = map (subst_free[(g,h)]) eqns
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   480
     val {functional as Abs(x, Ty, _),  pats} = mk_functional thy eqns1
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   481
     val given_pats = givens pats
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   482
     (* val f = Free(x,Ty) *)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   483
     val Type("fun", [f_dty, f_rty]) = Ty
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   484
     val dummy = if x<>fid then
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   485
                        raise TFL_ERR "wfrec_eqns"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   486
                                      ("Expected a definition of " ^
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   487
                                      quote fid ^ " but found one of " ^
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   488
                                      quote x)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   489
                 else ()
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   490
     val (case_rewrites,context_congs) = extraction_thms thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   491
     val tych = Thry.typecheck thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   492
     val WFREC_THM0 = R.ISPEC (tych functional) Thms.WFREC_COROLLARY
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   493
     val Const("All",_) $ Abs(Rname,Rtype,_) = concl WFREC_THM0
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29579
diff changeset
   494
     val R = Free (Name.variant (List.foldr OldTerm.add_term_names [] eqns) Rname,
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   495
                   Rtype)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   496
     val WFREC_THM = R.ISPECL [tych R, tych g] WFREC_THM0
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   497
     val ([proto_def, WFR],_) = S.strip_imp(concl WFREC_THM)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   498
     val dummy =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   499
           if !trace then
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   500
               writeln ("ORIGINAL PROTO_DEF: " ^
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26928
diff changeset
   501
                          Syntax.string_of_term_global thy proto_def)
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   502
           else ()
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   503
     val R1 = S.rand WFR
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   504
     val corollary' = R.UNDISCH(R.UNDISCH WFREC_THM)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   505
     val corollaries = map (fn pat => R.SPEC (tych pat) corollary') given_pats
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   506
     val corollaries' = map (rewrite_rule case_rewrites) corollaries
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   507
     fun extract X = R.CONTEXT_REWRITE_RULE
26177
6b127c056e83 removed legacy ML bindings;
wenzelm
parents: 24493
diff changeset
   508
                       (f, R1::SV, @{thm cut_apply}, tflCongs@context_congs) X
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   509
 in {proto_def = proto_def,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   510
     SV=SV,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   511
     WFR=WFR,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   512
     pats=pats,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   513
     extracta = map extract corollaries'}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   514
 end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   515
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   516
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   517
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   518
 * Define the constant after extracting the termination conditions. The
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   519
 * wellfounded relation used in the definition is computed by using the
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   520
 * choice operator on the extracted conditions (plus the condition that
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   521
 * such a relation must be wellfounded).
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   522
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   523
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   524
fun lazyR_def thy fid tflCongs eqns =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   525
 let val {proto_def,WFR,pats,extracta,SV} =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   526
           wfrec_eqns thy fid tflCongs eqns
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   527
     val R1 = S.rand WFR
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   528
     val f = #lhs(S.dest_eq proto_def)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   529
     val (extractants,TCl) = ListPair.unzip extracta
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   530
     val dummy = if !trace
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31784
diff changeset
   531
                 then writeln (cat_lines ("Extractants =" ::
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31784
diff changeset
   532
                  map (Display.string_of_thm_global thy) extractants))
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   533
                 else ()
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29579
diff changeset
   534
     val TCs = List.foldr (gen_union (op aconv)) [] TCl
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   535
     val full_rqt = WFR::TCs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   536
     val R' = S.mk_select{Bvar=R1, Body=S.list_mk_conj full_rqt}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   537
     val R'abs = S.rand R'
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   538
     val proto_def' = subst_free[(R1,R')] proto_def
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   539
     val dummy = if !trace then writeln ("proto_def' = " ^
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26928
diff changeset
   540
                                         Syntax.string_of_term_global
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   541
                                         thy proto_def')
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   542
                           else ()
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   543
     val {lhs,rhs} = S.dest_eq proto_def'
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   544
     val (c,args) = S.strip_comb lhs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   545
     val (name,Ty) = dest_atom c
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   546
     val defn = mk_const_def thy (name, Ty, S.list_mk_abs (args,rhs))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   547
     val ([def0], theory) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   548
       thy
27691
ce171cbd4b93 PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents: 26939
diff changeset
   549
       |> PureThy.add_defs false
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29270
diff changeset
   550
            [Thm.no_attributes (Binding.name (fid ^ "_def"), defn)]
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   551
     val def = Thm.freezeT def0;
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31784
diff changeset
   552
     val dummy =
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31784
diff changeset
   553
       if !trace then writeln ("DEF = " ^ Display.string_of_thm_global theory def)
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31784
diff changeset
   554
       else ()
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   555
     (* val fconst = #lhs(S.dest_eq(concl def))  *)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   556
     val tych = Thry.typecheck theory
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   557
     val full_rqt_prop = map (Dcterm.mk_prop o tych) full_rqt
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   558
         (*lcp: a lot of object-logic inference to remove*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   559
     val baz = R.DISCH_ALL
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   560
                 (fold_rev R.DISCH full_rqt_prop
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   561
                  (R.LIST_CONJ extractants))
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31784
diff changeset
   562
     val dum = if !trace then writeln ("baz = " ^ Display.string_of_thm_global theory baz)
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   563
                           else ()
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   564
     val f_free = Free (fid, fastype_of f)  (*'cos f is a Const*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   565
     val SV' = map tych SV;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   566
     val SVrefls = map reflexive SV'
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   567
     val def0 = (fold (fn x => fn th => R.rbeta(combination th x))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   568
                   SVrefls def)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   569
                RS meta_eq_to_obj_eq
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   570
     val def' = R.MP (R.SPEC (tych R') (R.GEN (tych R1) baz)) def0
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   571
     val body_th = R.LIST_CONJ (map R.ASSUME full_rqt_prop)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   572
     val SELECT_AX = (*in this way we hope to avoid a STATIC dependence upon
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   573
                       theory Hilbert_Choice*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   574
         thm "Hilbert_Choice.tfl_some"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   575
         handle ERROR msg => cat_error msg
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   576
    "defer_recdef requires theory Main or at least Hilbert_Choice as parent"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   577
     val bar = R.MP (R.ISPECL[tych R'abs, tych R1] SELECT_AX) body_th
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   578
 in {theory = theory, R=R1, SV=SV,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   579
     rules = fold (U.C R.MP) (R.CONJUNCTS bar) def',
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   580
     full_pats_TCs = merge (map pat_of pats) (ListPair.zip (givens pats, TCl)),
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   581
     patterns = pats}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   582
 end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   583
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   584
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   585
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   586
(*----------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   587
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   588
 *                           INDUCTION THEOREM
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   589
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   590
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   591
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   592
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   593
(*------------------------  Miscellaneous function  --------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   594
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   595
 *           [x_1,...,x_n]     ?v_1...v_n. M[v_1,...,v_n]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   596
 *     -----------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   597
 *     ( M[x_1,...,x_n], [(x_i,?v_1...v_n. M[v_1,...,v_n]),
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   598
 *                        ...
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   599
 *                        (x_j,?v_n. M[x_1,...,x_(n-1),v_n])] )
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   600
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   601
 * This function is totally ad hoc. Used in the production of the induction
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   602
 * theorem. The nchotomy theorem can have clauses that look like
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   603
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   604
 *     ?v1..vn. z = C vn..v1
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   605
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   606
 * in which the order of quantification is not the order of occurrence of the
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   607
 * quantified variables as arguments to C. Since we have no control over this
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   608
 * aspect of the nchotomy theorem, we make the correspondence explicit by
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   609
 * pairing the incoming new variable with the term it gets beta-reduced into.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   610
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   611
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   612
fun alpha_ex_unroll (xlist, tm) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   613
  let val (qvars,body) = S.strip_exists tm
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   614
      val vlist = #2(S.strip_comb (S.rhs body))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   615
      val plist = ListPair.zip (vlist, xlist)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   616
      val args = map (the o AList.lookup (op aconv) plist) qvars
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   617
                   handle Option => sys_error
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   618
                       "TFL fault [alpha_ex_unroll]: no correspondence"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   619
      fun build ex      []   = []
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   620
        | build (_$rex) (v::rst) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   621
           let val ex1 = Term.betapply(rex, v)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   622
           in  ex1 :: build ex1 rst
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   623
           end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   624
     val (nex::exl) = rev (tm::build tm args)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   625
  in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   626
  (nex, ListPair.zip (args, rev exl))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   627
  end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   628
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   629
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   630
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   631
(*----------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   632
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   633
 *             PROVING COMPLETENESS OF PATTERNS
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   634
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   635
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   636
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   637
fun mk_case ty_info usednames thy =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   638
 let
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   639
 val divide = ipartition (gvvariant usednames)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   640
 val tych = Thry.typecheck thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   641
 fun tych_binding(x,y) = (tych x, tych y)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   642
 fun fail s = raise TFL_ERR "mk_case" s
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   643
 fun mk{rows=[],...} = fail"no rows"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   644
   | mk{path=[], rows = [([], (thm, bindings))]} =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   645
                         R.IT_EXISTS (map tych_binding bindings) thm
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   646
   | mk{path = u::rstp, rows as (p::_, _)::_} =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   647
     let val (pat_rectangle,rights) = ListPair.unzip rows
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   648
         val col0 = map hd pat_rectangle
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   649
         val pat_rectangle' = map tl pat_rectangle
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   650
     in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   651
     if (forall is_Free col0) (* column 0 is all variables *)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   652
     then let val rights' = map (fn ((thm,theta),v) => (thm,theta@[(u,v)]))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   653
                                (ListPair.zip (rights, col0))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   654
          in mk{path = rstp, rows = ListPair.zip (pat_rectangle', rights')}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   655
          end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   656
     else                     (* column 0 is all constructors *)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   657
     let val Type (ty_name,_) = type_of p
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   658
     in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   659
     case (ty_info ty_name)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   660
     of NONE => fail("Not a known datatype: "^ty_name)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   661
      | SOME{constructors,nchotomy} =>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   662
        let val thm' = R.ISPEC (tych u) nchotomy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   663
            val disjuncts = S.strip_disj (concl thm')
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   664
            val subproblems = divide(constructors, rows)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   665
            val groups      = map #group subproblems
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   666
            and new_formals = map #new_formals subproblems
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   667
            val existentials = ListPair.map alpha_ex_unroll
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   668
                                   (new_formals, disjuncts)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   669
            val constraints = map #1 existentials
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   670
            val vexl = map #2 existentials
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   671
            fun expnd tm (pats,(th,b)) = (pats,(R.SUBS[R.ASSUME(tych tm)]th,b))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   672
            val news = map (fn (nf,rows,c) => {path = nf@rstp,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   673
                                               rows = map (expnd c) rows})
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   674
                           (U.zip3 new_formals groups constraints)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   675
            val recursive_thms = map mk news
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   676
            val build_exists = Library.foldr
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   677
                                (fn((x,t), th) =>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   678
                                 R.CHOOSE (tych x, R.ASSUME (tych t)) th)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   679
            val thms' = ListPair.map build_exists (vexl, recursive_thms)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   680
            val same_concls = R.EVEN_ORS thms'
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   681
        in R.DISJ_CASESL thm' same_concls
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   682
        end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   683
     end end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   684
 in mk
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   685
 end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   686
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   687
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   688
fun complete_cases thy =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   689
 let val tych = Thry.typecheck thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   690
     val ty_info = Thry.induct_info thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   691
 in fn pats =>
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29579
diff changeset
   692
 let val names = List.foldr OldTerm.add_term_names [] pats
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   693
     val T = type_of (hd pats)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   694
     val aname = Name.variant names "a"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   695
     val vname = Name.variant (aname::names) "v"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   696
     val a = Free (aname, T)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   697
     val v = Free (vname, T)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   698
     val a_eq_v = HOLogic.mk_eq(a,v)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   699
     val ex_th0 = R.EXISTS (tych (S.mk_exists{Bvar=v,Body=a_eq_v}), tych a)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   700
                           (R.REFL (tych a))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   701
     val th0 = R.ASSUME (tych a_eq_v)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   702
     val rows = map (fn x => ([x], (th0,[]))) pats
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   703
 in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   704
 R.GEN (tych a)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   705
       (R.RIGHT_ASSOC
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   706
          (R.CHOOSE(tych v, ex_th0)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   707
                (mk_case ty_info (vname::aname::names)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   708
                 thy {path=[v], rows=rows})))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   709
 end end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   710
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   711
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   712
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   713
 * Constructing induction hypotheses: one for each recursive call.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   714
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   715
 * Note. R will never occur as a variable in the ind_clause, because
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   716
 * to do so, it would have to be from a nested definition, and we don't
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   717
 * allow nested defns to have R variable.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   718
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   719
 * Note. When the context is empty, there can be no local variables.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   720
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   721
(*
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   722
local infix 5 ==>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   723
      fun (tm1 ==> tm2) = S.mk_imp{ant = tm1, conseq = tm2}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   724
in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   725
fun build_ih f P (pat,TCs) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   726
 let val globals = S.free_vars_lr pat
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   727
     fun nested tm = isSome (S.find_term (curry (op aconv) f) tm)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   728
     fun dest_TC tm =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   729
         let val (cntxt,R_y_pat) = S.strip_imp(#2(S.strip_forall tm))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   730
             val (R,y,_) = S.dest_relation R_y_pat
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   731
             val P_y = if (nested tm) then R_y_pat ==> P$y else P$y
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   732
         in case cntxt
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   733
              of [] => (P_y, (tm,[]))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   734
               | _  => let
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   735
                    val imp = S.list_mk_conj cntxt ==> P_y
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   736
                    val lvs = gen_rems (op aconv) (S.free_vars_lr imp, globals)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   737
                    val locals = #2(U.pluck (curry (op aconv) P) lvs) handle U.ERR _ => lvs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   738
                    in (S.list_mk_forall(locals,imp), (tm,locals)) end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   739
         end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   740
 in case TCs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   741
    of [] => (S.list_mk_forall(globals, P$pat), [])
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   742
     |  _ => let val (ihs, TCs_locals) = ListPair.unzip(map dest_TC TCs)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   743
                 val ind_clause = S.list_mk_conj ihs ==> P$pat
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   744
             in (S.list_mk_forall(globals,ind_clause), TCs_locals)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   745
             end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   746
 end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   747
end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   748
*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   749
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   750
local infix 5 ==>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   751
      fun (tm1 ==> tm2) = S.mk_imp{ant = tm1, conseq = tm2}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   752
in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   753
fun build_ih f (P,SV) (pat,TCs) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   754
 let val pat_vars = S.free_vars_lr pat
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   755
     val globals = pat_vars@SV
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   756
     fun nested tm = isSome (S.find_term (curry (op aconv) f) tm)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   757
     fun dest_TC tm =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   758
         let val (cntxt,R_y_pat) = S.strip_imp(#2(S.strip_forall tm))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   759
             val (R,y,_) = S.dest_relation R_y_pat
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   760
             val P_y = if (nested tm) then R_y_pat ==> P$y else P$y
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   761
         in case cntxt
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   762
              of [] => (P_y, (tm,[]))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   763
               | _  => let
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   764
                    val imp = S.list_mk_conj cntxt ==> P_y
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   765
                    val lvs = subtract (op aconv) globals (S.free_vars_lr imp)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   766
                    val locals = #2(U.pluck (curry (op aconv) P) lvs) handle U.ERR _ => lvs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   767
                    in (S.list_mk_forall(locals,imp), (tm,locals)) end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   768
         end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   769
 in case TCs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   770
    of [] => (S.list_mk_forall(pat_vars, P$pat), [])
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   771
     |  _ => let val (ihs, TCs_locals) = ListPair.unzip(map dest_TC TCs)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   772
                 val ind_clause = S.list_mk_conj ihs ==> P$pat
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   773
             in (S.list_mk_forall(pat_vars,ind_clause), TCs_locals)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   774
             end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   775
 end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   776
end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   777
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   778
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   779
 * This function makes good on the promise made in "build_ih".
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   780
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   781
 * Input  is tm = "(!y. R y pat ==> P y) ==> P pat",
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   782
 *           TCs = TC_1[pat] ... TC_n[pat]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   783
 *           thm = ih1 /\ ... /\ ih_n |- ih[pat]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   784
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   785
fun prove_case f thy (tm,TCs_locals,thm) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   786
 let val tych = Thry.typecheck thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   787
     val antc = tych(#ant(S.dest_imp tm))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   788
     val thm' = R.SPEC_ALL thm
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   789
     fun nested tm = isSome (S.find_term (curry (op aconv) f) tm)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   790
     fun get_cntxt TC = tych(#ant(S.dest_imp(#2(S.strip_forall(concl TC)))))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   791
     fun mk_ih ((TC,locals),th2,nested) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   792
         R.GENL (map tych locals)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   793
            (if nested then R.DISCH (get_cntxt TC) th2 handle U.ERR _ => th2
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   794
             else if S.is_imp (concl TC) then R.IMP_TRANS TC th2
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   795
             else R.MP th2 TC)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   796
 in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   797
 R.DISCH antc
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   798
 (if S.is_imp(concl thm') (* recursive calls in this clause *)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   799
  then let val th1 = R.ASSUME antc
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   800
           val TCs = map #1 TCs_locals
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   801
           val ylist = map (#2 o S.dest_relation o #2 o S.strip_imp o
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   802
                            #2 o S.strip_forall) TCs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   803
           val TClist = map (fn(TC,lvs) => (R.SPEC_ALL(R.ASSUME(tych TC)),lvs))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   804
                            TCs_locals
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   805
           val th2list = map (U.C R.SPEC th1 o tych) ylist
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   806
           val nlist = map nested TCs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   807
           val triples = U.zip3 TClist th2list nlist
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   808
           val Pylist = map mk_ih triples
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   809
       in R.MP thm' (R.LIST_CONJ Pylist) end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   810
  else thm')
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   811
 end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   812
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   813
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   814
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   815
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   816
 *         x = (v1,...,vn)  |- M[x]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   817
 *    ---------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   818
 *      ?v1 ... vn. x = (v1,...,vn) |- M[x]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   819
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   820
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   821
fun LEFT_ABS_VSTRUCT tych thm =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   822
  let fun CHOOSER v (tm,thm) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   823
        let val ex_tm = S.mk_exists{Bvar=v,Body=tm}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   824
        in (ex_tm, R.CHOOSE(tych v, R.ASSUME (tych ex_tm)) thm)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   825
        end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   826
      val [veq] = List.filter (can S.dest_eq) (#1 (R.dest_thm thm))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   827
      val {lhs,rhs} = S.dest_eq veq
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   828
      val L = S.free_vars_lr rhs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   829
  in  #2 (fold_rev CHOOSER L (veq,thm))  end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   830
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   831
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   832
(*----------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   833
 * Input : f, R,  and  [(pat1,TCs1),..., (patn,TCsn)]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   834
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   835
 * Instantiates WF_INDUCTION_THM, getting Sinduct and then tries to prove
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   836
 * recursion induction (Rinduct) by proving the antecedent of Sinduct from
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   837
 * the antecedent of Rinduct.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   838
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   839
fun mk_induction thy {fconst, R, SV, pat_TCs_list} =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   840
let val tych = Thry.typecheck thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   841
    val Sinduction = R.UNDISCH (R.ISPEC (tych R) Thms.WF_INDUCTION_THM)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   842
    val (pats,TCsl) = ListPair.unzip pat_TCs_list
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   843
    val case_thm = complete_cases thy pats
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   844
    val domain = (type_of o hd) pats
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29579
diff changeset
   845
    val Pname = Name.variant (List.foldr (Library.foldr OldTerm.add_term_names)
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   846
                              [] (pats::TCsl)) "P"
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   847
    val P = Free(Pname, domain --> HOLogic.boolT)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   848
    val Sinduct = R.SPEC (tych P) Sinduction
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   849
    val Sinduct_assumf = S.rand ((#ant o S.dest_imp o concl) Sinduct)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   850
    val Rassums_TCl' = map (build_ih fconst (P,SV)) pat_TCs_list
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   851
    val (Rassums,TCl') = ListPair.unzip Rassums_TCl'
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   852
    val Rinduct_assum = R.ASSUME (tych (S.list_mk_conj Rassums))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   853
    val cases = map (fn pat => Term.betapply (Sinduct_assumf, pat)) pats
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   854
    val tasks = U.zip3 cases TCl' (R.CONJUNCTS Rinduct_assum)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   855
    val proved_cases = map (prove_case fconst thy) tasks
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29579
diff changeset
   856
    val v = Free (Name.variant (List.foldr OldTerm.add_term_names [] (map concl proved_cases))
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   857
                    "v",
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   858
                  domain)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   859
    val vtyped = tych v
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   860
    val substs = map (R.SYM o R.ASSUME o tych o (curry HOLogic.mk_eq v)) pats
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   861
    val proved_cases1 = ListPair.map (fn (th,th') => R.SUBS[th]th')
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   862
                          (substs, proved_cases)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   863
    val abs_cases = map (LEFT_ABS_VSTRUCT tych) proved_cases1
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   864
    val dant = R.GEN vtyped (R.DISJ_CASESL (R.ISPEC vtyped case_thm) abs_cases)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   865
    val dc = R.MP Sinduct dant
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   866
    val Parg_ty = type_of(#Bvar(S.dest_forall(concl dc)))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   867
    val vars = map (gvvariant[Pname]) (S.strip_prod_type Parg_ty)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   868
    val dc' = fold_rev (R.GEN o tych) vars
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   869
                       (R.SPEC (tych(S.mk_vstruct Parg_ty vars)) dc)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   870
in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   871
   R.GEN (tych P) (R.DISCH (tych(concl Rinduct_assum)) dc')
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   872
end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   873
handle U.ERR _ => raise TFL_ERR "mk_induction" "failed derivation";
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   874
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   875
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   876
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   877
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   878
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   879
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   880
 *                        POST PROCESSING
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   881
 *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   882
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   883
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   884
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   885
fun simplify_induction thy hth ind =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   886
  let val tych = Thry.typecheck thy
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   887
      val (asl,_) = R.dest_thm ind
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   888
      val (_,tc_eq_tc') = R.dest_thm hth
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   889
      val tc = S.lhs tc_eq_tc'
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   890
      fun loop [] = ind
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   891
        | loop (asm::rst) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   892
          if (can (Thry.match_term thy asm) tc)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   893
          then R.UNDISCH
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   894
                 (R.MATCH_MP
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   895
                     (R.MATCH_MP Thms.simp_thm (R.DISCH (tych asm) ind))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   896
                     hth)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   897
         else loop rst
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   898
  in loop asl
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   899
end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   900
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   901
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   902
(*---------------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   903
 * The termination condition is an antecedent to the rule, and an
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   904
 * assumption to the theorem.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   905
 *---------------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   906
fun elim_tc tcthm (rule,induction) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   907
   (R.MP rule tcthm, R.PROVE_HYP tcthm induction)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   908
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   909
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   910
fun trace_thms s L =
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31784
diff changeset
   911
  if !trace then writeln (cat_lines (s :: map Display.string_of_thm_without_context L))
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   912
  else ();
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   913
32432
64f30bdd3ba1 modernized messages -- eliminated ctyp/cterm operations;
wenzelm
parents: 32091
diff changeset
   914
fun trace_cterm s ct =
64f30bdd3ba1 modernized messages -- eliminated ctyp/cterm operations;
wenzelm
parents: 32091
diff changeset
   915
  if !trace then
64f30bdd3ba1 modernized messages -- eliminated ctyp/cterm operations;
wenzelm
parents: 32091
diff changeset
   916
    writeln (cat_lines [s, Syntax.string_of_term_global (Thm.theory_of_cterm ct) (Thm.term_of ct)])
64f30bdd3ba1 modernized messages -- eliminated ctyp/cterm operations;
wenzelm
parents: 32091
diff changeset
   917
  else ();
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   918
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   919
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   920
fun postprocess strict {wf_tac, terminator, simplifier} theory {rules,induction,TCs} =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   921
let val tych = Thry.typecheck theory
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   922
    val prove = R.prove strict;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   923
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   924
   (*---------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   925
    * Attempt to eliminate WF condition. It's the only assumption of rules
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   926
    *---------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   927
   val (rules1,induction1)  =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   928
       let val thm = prove(tych(HOLogic.mk_Trueprop
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   929
                                  (hd(#1(R.dest_thm rules)))),
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   930
                             wf_tac)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   931
       in (R.PROVE_HYP thm rules,  R.PROVE_HYP thm induction)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   932
       end handle U.ERR _ => (rules,induction);
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   933
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   934
   (*----------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   935
    * The termination condition (tc) is simplified to |- tc = tc' (there
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   936
    * might not be a change!) and then 3 attempts are made:
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   937
    *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   938
    *   1. if |- tc = T, then eliminate it with eqT; otherwise,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   939
    *   2. apply the terminator to tc'. If |- tc' = T then eliminate; else
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   940
    *   3. replace tc by tc' in both the rules and the induction theorem.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   941
    *---------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   942
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   943
   fun simplify_tc tc (r,ind) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   944
       let val tc1 = tych tc
32432
64f30bdd3ba1 modernized messages -- eliminated ctyp/cterm operations;
wenzelm
parents: 32091
diff changeset
   945
           val _ = trace_cterm "TC before simplification: " tc1
23150
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   946
           val tc_eq = simplifier tc1
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   947
           val _ = trace_thms "result: " [tc_eq]
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   948
       in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   949
       elim_tc (R.MATCH_MP Thms.eqT tc_eq) (r,ind)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   950
       handle U.ERR _ =>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   951
        (elim_tc (R.MATCH_MP(R.MATCH_MP Thms.rev_eq_mp tc_eq)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   952
                  (prove(tych(HOLogic.mk_Trueprop(S.rhs(concl tc_eq))),
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   953
                           terminator)))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   954
                 (r,ind)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   955
         handle U.ERR _ =>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   956
          (R.UNDISCH(R.MATCH_MP (R.MATCH_MP Thms.simp_thm r) tc_eq),
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   957
           simplify_induction theory tc_eq ind))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   958
       end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   959
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   960
   (*----------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   961
    * Nested termination conditions are harder to get at, since they are
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   962
    * left embedded in the body of the function (and in induction
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   963
    * theorem hypotheses). Our "solution" is to simplify them, and try to
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   964
    * prove termination, but leave the application of the resulting theorem
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   965
    * to a higher level. So things go much as in "simplify_tc": the
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   966
    * termination condition (tc) is simplified to |- tc = tc' (there might
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   967
    * not be a change) and then 2 attempts are made:
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   968
    *
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   969
    *   1. if |- tc = T, then return |- tc; otherwise,
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   970
    *   2. apply the terminator to tc'. If |- tc' = T then return |- tc; else
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   971
    *   3. return |- tc = tc'
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   972
    *---------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   973
   fun simplify_nested_tc tc =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   974
      let val tc_eq = simplifier (tych (#2 (S.strip_forall tc)))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   975
      in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   976
      R.GEN_ALL
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   977
       (R.MATCH_MP Thms.eqT tc_eq
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   978
        handle U.ERR _ =>
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   979
          (R.MATCH_MP(R.MATCH_MP Thms.rev_eq_mp tc_eq)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   980
                      (prove(tych(HOLogic.mk_Trueprop (S.rhs(concl tc_eq))),
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   981
                               terminator))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   982
            handle U.ERR _ => tc_eq))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   983
      end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   984
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   985
   (*-------------------------------------------------------------------
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   986
    * Attempt to simplify the termination conditions in each rule and
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   987
    * in the induction theorem.
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   988
    *-------------------------------------------------------------------*)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   989
   fun strip_imp tm = if S.is_neg tm then ([],tm) else S.strip_imp tm
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   990
   fun loop ([],extras,R,ind) = (rev R, ind, extras)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   991
     | loop ((r,ftcs)::rst, nthms, R, ind) =
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   992
        let val tcs = #1(strip_imp (concl r))
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   993
            val extra_tcs = subtract (op aconv) tcs ftcs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   994
            val extra_tc_thms = map simplify_nested_tc extra_tcs
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   995
            val (r1,ind1) = fold simplify_tc tcs (r,ind)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   996
            val r2 = R.FILTER_DISCH_ALL(not o S.is_WFR) r1
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   997
        in loop(rst, nthms@extra_tc_thms, r2::R, ind1)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   998
        end
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
   999
   val rules_tcs = ListPair.zip (R.CONJUNCTS rules1, TCs)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
  1000
   val (rules2,ind2,extras) = loop(rules_tcs,[],[],induction1)
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
  1001
in
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
  1002
  {induction = ind2, rules = R.LIST_CONJ rules2, nested_tcs = extras}
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
  1003
end;
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
  1004
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
  1005
073a65f0bc40 moved TFL files to canonical place;
wenzelm
parents:
diff changeset
  1006
end;