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