TFL/post.sml
author paulson
Tue, 27 May 1997 13:22:30 +0200
changeset 3353 9112a2efb9a3
parent 3331 c81c7f8ad333
child 3391 5e45dd3b64e9
permissions -rw-r--r--
Removal of module Mask and datatype binding with its constructor |->
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3302
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
     1
(*  Title:      TFL/post
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
     2
    ID:         $Id$
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
     3
    Author:     Konrad Slind, Cambridge University Computer Laboratory
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
     4
    Copyright   1997  University of Cambridge
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
     5
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
     6
Postprocessing of TFL definitions
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
     7
*)
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
     8
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
     9
(*-------------------------------------------------------------------------
3302
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
    10
Three postprocessors are applied to the definition:
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    11
    - a wellfoundedness prover (WF_TAC)
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    12
    - a simplifier (tries to eliminate the language of termination expressions)
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    13
    - a termination prover
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    14
*-------------------------------------------------------------------------*)
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    15
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    16
signature TFL = 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    17
  sig
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    18
   structure Prim : TFL_sig
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    19
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    20
   val tgoalw : theory -> thm list -> thm list -> thm list
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    21
   val tgoal: theory -> thm list -> thm list
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    22
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    23
   val WF_TAC : thm list -> tactic
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    24
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    25
   val simplifier : thm -> thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    26
   val std_postprocessor : theory 
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    27
                           -> {induction:thm, rules:thm, TCs:term list list} 
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    28
                           -> {induction:thm, rules:thm, nested_tcs:thm list}
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    29
3331
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
    30
   val define_i : theory -> string -> term -> term 
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
    31
                  -> theory * (thm * Prim.pattern list)
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
    32
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
    33
   val define   : theory -> string -> string -> string list 
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
    34
                  -> theory * Prim.pattern list
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    35
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    36
   val simplify_defn : theory * (string * Prim.pattern list)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    37
                        -> {rules:thm list, induct:thm, tcs:term list}
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    38
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    39
  (*-------------------------------------------------------------------------
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    40
       val function : theory -> term -> {theory:theory, eq_ind : thm}
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    41
       val lazyR_def: theory -> term -> {theory:theory, eqns : thm}
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    42
   *-------------------------------------------------------------------------*)
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    43
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    44
   val tflcongs : theory -> thm list
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    45
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    46
  end;
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    47
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    48
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    49
structure Tfl: TFL =
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    50
struct
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    51
 structure Prim = Prim
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    52
 structure S = Prim.USyntax
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    53
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    54
(*---------------------------------------------------------------------------
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    55
 * Extract termination goals so that they can be put it into a goalstack, or 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    56
 * have a tactic directly applied to them.
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    57
 *--------------------------------------------------------------------------*)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    58
fun termination_goals rules = 
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    59
    map (Logic.freeze_vars o HOLogic.dest_Trueprop)
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    60
      (foldr (fn (th,A) => union_term (prems_of th, A)) (rules, []));
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    61
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    62
 (*---------------------------------------------------------------------------
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    63
  * Finds the termination conditions in (highly massaged) definition and 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    64
  * puts them into a goalstack.
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    65
  *--------------------------------------------------------------------------*)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    66
 fun tgoalw thy defs rules = 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    67
    let val L = termination_goals rules
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    68
        open USyntax
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    69
        val g = cterm_of (sign_of thy) (HOLogic.mk_Trueprop(list_mk_conj L))
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    70
    in goalw_cterm defs g
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    71
    end;
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    72
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    73
 fun tgoal thy = tgoalw thy [];
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    74
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    75
 (*---------------------------------------------------------------------------
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    76
  * Simple wellfoundedness prover.
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    77
  *--------------------------------------------------------------------------*)
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    78
 fun WF_TAC thms = REPEAT(FIRST1(map rtac thms))
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    79
 val WFtac = WF_TAC[wf_measure, wf_inv_image, wf_lex_prod, wf_less_than, 
3331
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
    80
                    wf_trancl];
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    81
3331
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
    82
 val terminator = simp_tac(!simpset addsimps [less_Suc_eq]) 1
3208
8336393de482 Subst now moved to directory HOL
paulson
parents: 3191
diff changeset
    83
                  THEN TRY(best_tac
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    84
                           (!claset addSDs [not0_implies_Suc]
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
    85
                                    addss (!simpset)) 1);
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    86
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    87
 val simpls = [less_eq RS eq_reflection,
3302
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
    88
               lex_prod_def, measure_def, inv_image_def];
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    89
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    90
 (*---------------------------------------------------------------------------
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    91
  * Does some standard things with the termination conditions of a definition:
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    92
  * attempts to prove wellfoundedness of the given relation; simplifies the
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    93
  * non-proven termination conditions; and finally attempts to prove the 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    94
  * simplified termination conditions.
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
    95
  *--------------------------------------------------------------------------*)
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    96
 val std_postprocessor = Prim.postprocess{WFtac = WFtac,
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    97
                                    terminator = terminator, 
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    98
                                    simplifier = Prim.Rules.simpl_conv simpls};
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    99
3208
8336393de482 Subst now moved to directory HOL
paulson
parents: 3191
diff changeset
   100
 val simplifier = rewrite_rule (simpls @ #simps(rep_ss (!simpset)) @ 
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   101
                                [pred_list_def]);
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   102
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   103
 fun tflcongs thy = Prim.Context.read() @ (#case_congs(Thry.extract_info thy));
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   104
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   105
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   106
val concl = #2 o Prim.Rules.dest_thm;
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   107
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   108
(*---------------------------------------------------------------------------
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   109
 * Defining a function with an associated termination relation. 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   110
 *---------------------------------------------------------------------------*)
3331
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
   111
fun define_i thy fid R eqs = 
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
   112
  let val dummy = require_thy thy "WF_Rel" "recursive function definitions"
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   113
      val {functional,pats} = Prim.mk_functional thy eqs
3331
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
   114
      val (thm,thry) = Prim.wfrec_definition0 thy fid R functional
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   115
  in (thry,(thm,pats))
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   116
  end;
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   117
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   118
(*lcp's version: takes strings; doesn't return "thm" 
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   119
        (whose signature is a draft and therefore useless) *)
3331
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
   120
fun define thy fid R eqs = 
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   121
  let fun read thy = readtm (sign_of thy) (TVar(("DUMMY",0),[])) 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   122
      val (thy',(_,pats)) =
3331
c81c7f8ad333 Now checks the name of the function being defined
paulson
parents: 3302
diff changeset
   123
             define_i thy fid (read thy R) 
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   124
                      (fold_bal (app Ind_Syntax.conj) (map (read thy) eqs))
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   125
  in  (thy',pats)  end
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   126
  handle Utils.ERR {mesg,...} => error mesg;
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   127
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   128
(*---------------------------------------------------------------------------
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   129
 * Postprocess a definition made by "define". This is a separate stage of 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   130
 * processing from the definition stage.
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   131
 *---------------------------------------------------------------------------*)
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   132
local 
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   133
structure R = Prim.Rules
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   134
structure U = Utils
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   135
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   136
(* The rest of these local definitions are for the tricky nested case *)
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   137
val solved = not o U.can S.dest_eq o #2 o S.strip_forall o concl
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   138
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   139
fun id_thm th = 
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   140
   let val {lhs,rhs} = S.dest_eq(#2(S.strip_forall(#2 (R.dest_thm th))))
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   141
   in S.aconv lhs rhs
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   142
   end handle _ => false
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   143
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   144
fun prover s = prove_goal HOL.thy s (fn _ => [fast_tac HOL_cs 1]);
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   145
val P_imp_P_iff_True = prover "P --> (P= True)" RS mp;
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   146
val P_imp_P_eq_True = P_imp_P_iff_True RS eq_reflection;
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   147
fun mk_meta_eq r = case concl_of r of
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   148
     Const("==",_)$_$_ => r
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   149
  |   _$(Const("op =",_)$_$_) => r RS eq_reflection
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   150
  |   _ => r RS P_imp_P_eq_True
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   151
fun rewrite L = rewrite_rule (map mk_meta_eq (filter(not o id_thm) L))
3271
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   152
fun reducer thl = rewrite (map standard thl @ #simps(rep_ss (!simpset)))
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   153
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   154
fun join_assums th = 
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   155
  let val {sign,...} = rep_thm th
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   156
      val tych = cterm_of sign
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   157
      val {lhs,rhs} = S.dest_eq(#2 (S.strip_forall (concl th)))
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   158
      val cntxtl = (#1 o S.strip_imp) lhs  (* cntxtl should = cntxtr *)
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   159
      val cntxtr = (#1 o S.strip_imp) rhs  (* but union is solider *)
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   160
      val cntxt = gen_union (op aconv) (cntxtl, cntxtr)
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   161
  in 
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   162
    R.GEN_ALL 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   163
      (R.DISCH_ALL 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   164
         (rewrite (map (R.ASSUME o tych) cntxt) (R.SPEC_ALL th)))
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   165
  end
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   166
  val gen_all = S.gen_all
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   167
in
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   168
(*---------------------------------------------------------------------------
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   169
 * The "reducer" argument is 
3271
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   170
 *  (fn thl => rewrite (map standard thl @ #simps(rep_ss (!simpset)))); 
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   171
 *---------------------------------------------------------------------------*)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   172
fun proof_stage theory reducer {f, R, rules, full_pats_TCs, TCs} =
3271
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   173
  let val dummy = prs "Proving induction theorem..  "
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   174
      val ind = Prim.mk_induction theory f R full_pats_TCs
3271
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   175
      val dummy = writeln "Proved induction theorem."
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   176
      val pp = std_postprocessor theory
3271
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   177
      val dummy = prs "Postprocessing..  "
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   178
      val {rules,induction,nested_tcs} = pp{rules=rules,induction=ind,TCs=TCs}
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   179
  in
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   180
  case nested_tcs
3271
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   181
  of [] => (writeln "Postprocessing done.";
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   182
            {induction=induction, rules=rules,tcs=[]})
3271
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   183
  | L  => let val dummy = prs "Simplifying nested TCs..  "
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   184
              val (solved,simplified,stubborn) =
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   185
               U.itlist (fn th => fn (So,Si,St) =>
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   186
                     if (id_thm th) then (So, Si, th::St) else
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   187
                     if (solved th) then (th::So, Si, St) 
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   188
                     else (So, th::Si, St)) nested_tcs ([],[],[])
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   189
              val simplified' = map join_assums simplified
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   190
              val induction' = reducer (solved@simplified') induction
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   191
              val rules' = reducer (solved@simplified') rules
3271
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   192
              val dummy = writeln "Postprocessing done."
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   193
          in
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   194
          {induction = induction',
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   195
               rules = rules',
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   196
                 tcs = map (gen_all o S.rhs o #2 o S.strip_forall o concl)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   197
                           (simplified@stubborn)}
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   198
          end
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   199
  end handle (e as Utils.ERR _) => Utils.Raise e
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   200
          |   e                 => print_exn e;
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   201
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   202
3302
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
   203
(*lcp: curry the predicate of the induction rule*)
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
   204
fun curry_rule rl = Prod_Syntax.split_rule_var
3271
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   205
                        (head_of (HOLogic.dest_Trueprop (concl_of rl)), 
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   206
			 rl);
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   207
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   208
(*lcp: put a theorem into Isabelle form, using meta-level connectives*)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   209
val meta_outer = 
3302
404fe31fd8d2 New headers and other minor changes
paulson
parents: 3271
diff changeset
   210
    curry_rule o standard o 
3271
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   211
    rule_by_tactic (REPEAT_FIRST (resolve_tac [allI, impI, conjI]
b873969b05d3 Basis library input/output primitives; currying the induction rule;
paulson
parents: 3245
diff changeset
   212
				  ORELSE' etac conjE));
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   213
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   214
(*Strip off the outer !P*)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   215
val spec'= read_instantiate [("x","P::?'b=>bool")] spec;
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   216
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   217
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   218
fun simplify_defn (thy,(id,pats)) =
3208
8336393de482 Subst now moved to directory HOL
paulson
parents: 3191
diff changeset
   219
   let val dummy = deny (id  mem  map ! (stamps_of_thy thy))
8336393de482 Subst now moved to directory HOL
paulson
parents: 3191
diff changeset
   220
                        ("Recursive definition " ^ id ^ 
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   221
                         " would clash with the theory of the same name!")
3208
8336393de482 Subst now moved to directory HOL
paulson
parents: 3191
diff changeset
   222
       val def = freezeT(get_def thy id  RS  meta_eq_to_obj_eq)
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   223
       val {theory,rules,TCs,full_pats_TCs,patterns} = 
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   224
                Prim.post_definition (thy,(def,pats))
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   225
       val {lhs=f,rhs} = S.dest_eq(concl def)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   226
       val (_,[R,_]) = S.strip_comb rhs
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   227
       val {induction, rules, tcs} = 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   228
             proof_stage theory reducer
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   229
               {f = f, R = R, rules = rules,
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   230
                full_pats_TCs = full_pats_TCs,
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   231
                TCs = TCs}
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   232
       val rules' = map (standard o normalize_thm [RSmp]) (R.CONJUNCTS rules)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   233
   in  {induct = meta_outer
3245
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   234
                  (normalize_thm [RSspec,RSmp] (induction RS spec')), 
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   235
        rules = rules', 
241838c01caf Removal of redundant code (unused or already present in Isabelle.
paulson
parents: 3208
diff changeset
   236
        tcs = (termination_goals rules') @ tcs}
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   237
   end
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   238
  handle Utils.ERR {mesg,...} => error mesg
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   239
end;
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   240
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   241
(*---------------------------------------------------------------------------
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   242
 *
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   243
 *     Definitions with synthesized termination relation temporarily
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   244
 *     deleted -- it's not clear how to integrate this facility with
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   245
 *     the Isabelle theory file scheme, which restricts
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   246
 *     inference at theory-construction time.
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   247
 *
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   248
3208
8336393de482 Subst now moved to directory HOL
paulson
parents: 3191
diff changeset
   249
local structure R = Prim.Rules
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   250
in
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   251
fun function theory eqs = 
3208
8336393de482 Subst now moved to directory HOL
paulson
parents: 3191
diff changeset
   252
 let val dummy = prs "Making definition..   "
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   253
     val {rules,R,theory,full_pats_TCs,...} = Prim.lazyR_def theory eqs
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   254
     val f = func_of_cond_eqn (concl(R.CONJUNCT1 rules handle _ => rules))
3208
8336393de482 Subst now moved to directory HOL
paulson
parents: 3191
diff changeset
   255
     val dummy = prs "Definition made.\n"
8336393de482 Subst now moved to directory HOL
paulson
parents: 3191
diff changeset
   256
     val dummy = prs "Proving induction theorem..  "
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   257
     val induction = Prim.mk_induction theory f R full_pats_TCs
3208
8336393de482 Subst now moved to directory HOL
paulson
parents: 3191
diff changeset
   258
     val dummy = prs "Induction theorem proved.\n"
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   259
 in {theory = theory, 
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   260
     eq_ind = standard (induction RS (rules RS conjI))}
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   261
 end
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   262
 handle (e as Utils.ERR _) => Utils.Raise e
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   263
      |     e              => print_exn e
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   264
end;
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   265
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   266
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   267
fun lazyR_def theory eqs = 
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   268
   let val {rules,theory, ...} = Prim.lazyR_def theory eqs
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   269
   in {eqns=rules, theory=theory}
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   270
   end
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   271
   handle (e as Utils.ERR _) => Utils.Raise e
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   272
        |     e              => print_exn e;
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   273
 *
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   274
 *
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   275
 *---------------------------------------------------------------------------*)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   276
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   277
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   278
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   279
3191
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   280
(*---------------------------------------------------------------------------
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   281
 * Install the basic context notions. Others (for nat and list and prod) 
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   282
 * have already been added in thry.sml
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   283
 *---------------------------------------------------------------------------*)
14bd6e5985f1 TFL now integrated with HOL (more work needed)
paulson
parents: 2467
diff changeset
   284
val () = Prim.Context.write[Thms.LET_CONG, Thms.COND_CONG];
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   285
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
   286
end;