src/Pure/thm.ML
author wenzelm
Thu, 03 Feb 1994 13:53:08 +0100
changeset 250 9b5a069285ce
parent 242 8fe3e66abf0c
child 274 dc87495814d5
permissions -rw-r--r--
extend_theory: changed type of "abbrs" arg; added cterm_fun, read_ctyp (from drule.ML); ctyp_of, cterm_of, etc.: now use Sign.certify_...; assumption: now uses Envir.is_empty; bicompose_aux: fixed BUG (unifier with empty "asol" but non-empty "iTs" wasn't applied); fixed axioms_of;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
     1
(*  Title:      Pure/thm.ML
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
     4
    Copyright   1994  University of Cambridge
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
     5
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
     6
The abstract types "theory" and "thm".
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
     7
Also "cterm" / "ctyp" (certified terms / typs under a signature).
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
     9
TODO:
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    10
  NO REP_CTERM!!
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    12
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    13
signature THM =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    14
sig
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    15
  structure Envir : ENVIR
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    16
  structure Sequence : SEQUENCE
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    17
  structure Sign : SIGN
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    18
  type cterm
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    19
  type ctyp
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    20
  type meta_simpset
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    21
  type theory
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    22
  type thm
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    23
  exception THM of string * int * thm list
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    24
  exception THEORY of string * theory list
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    25
  exception SIMPLIFIER of string * thm
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    26
  (*Certified terms/types; previously in sign.ML*)
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    27
  val cterm_of: Sign.sg -> term -> cterm
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    28
  val ctyp_of: Sign.sg -> typ -> ctyp
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    29
  val read_ctyp: Sign.sg -> string -> ctyp
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    30
  val read_cterm: Sign.sg -> string * typ -> cterm
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    31
  val rep_cterm: cterm -> {T: typ, t: term, sign: Sign.sg, maxidx: int}
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    32
  val rep_ctyp: ctyp -> {T: typ, sign: Sign.sg}
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    33
  val term_of: cterm -> term
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    34
  val typ_of: ctyp -> typ
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    35
  val cterm_fun: (term -> term) -> (cterm -> cterm)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    36
  (*End of cterm/ctyp functions*)
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    37
  val abstract_rule: string -> cterm -> thm -> thm
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    38
  val add_congs: meta_simpset * thm list -> meta_simpset
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    39
  val add_prems: meta_simpset * thm list -> meta_simpset
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    40
  val add_simps: meta_simpset * thm list -> meta_simpset
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    41
  val assume: cterm -> thm
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    42
  val assumption: int -> thm -> thm Sequence.seq
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    43
  val axioms_of: theory -> (string * thm) list
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    44
  val beta_conversion: cterm -> thm
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    45
  val bicompose: bool -> bool * thm * int -> int -> thm -> thm Sequence.seq
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    46
  val biresolution: bool -> (bool*thm)list -> int -> thm -> thm Sequence.seq
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    47
  val combination: thm -> thm -> thm
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    48
  val concl_of: thm -> term
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    49
  val cprop_of: thm -> cterm
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
    50
  val del_simps: meta_simpset * thm list -> meta_simpset
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    51
  val dest_cimplies: cterm -> cterm*cterm
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    52
  val dest_state: thm * int -> (term*term)list * term list * term * term
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    53
  val empty_mss: meta_simpset
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    54
  val eq_assumption: int -> thm -> thm
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    55
  val equal_intr: thm -> thm -> thm
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    56
  val equal_elim: thm -> thm -> thm
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    57
  val extend_theory: theory -> string
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    58
        -> (class * class list) list * sort
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    59
           * (string list * int)list
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    60
           * (string * string list * string) list
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    61
           * (string list * (sort list * class))list
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    62
           * (string list * string)list * Sign.Syntax.sext option
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    63
        -> (string*string)list -> theory
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    64
  val extensional: thm -> thm
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    65
  val flexflex_rule: thm -> thm Sequence.seq
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    66
  val flexpair_def: thm
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    67
  val forall_elim: cterm -> thm -> thm
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    68
  val forall_intr: cterm -> thm -> thm
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    69
  val freezeT: thm -> thm
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    70
  val get_axiom: theory -> string -> thm
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    71
  val implies_elim: thm -> thm -> thm
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    72
  val implies_intr: cterm -> thm -> thm
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    73
  val implies_intr_hyps: thm -> thm
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    74
  val instantiate: (indexname*ctyp)list * (cterm*cterm)list
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    75
                   -> thm -> thm
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    76
  val lift_rule: (thm * int) -> thm -> thm
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    77
  val merge_theories: theory * theory -> theory
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    78
  val mk_rews_of_mss: meta_simpset -> thm -> thm list
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    79
  val mss_of: thm list -> meta_simpset
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    80
  val nprems_of: thm -> int
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    81
  val parents_of: theory -> theory list
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    82
  val prems_of: thm -> term list
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    83
  val prems_of_mss: meta_simpset -> thm list
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    84
  val pure_thy: theory
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    85
  val read_def_cterm :
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    86
         Sign.sg * (indexname -> typ option) * (indexname -> sort option) ->
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    87
         string * typ -> cterm * (indexname * typ) list
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    88
   val reflexive: cterm -> thm
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    89
  val rename_params_rule: string list * int -> thm -> thm
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    90
  val rep_thm: thm -> {prop: term, hyps: term list, maxidx: int, sign: Sign.sg}
214
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
    91
  val rewrite_cterm:
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
    92
         bool*bool -> meta_simpset -> (meta_simpset -> thm -> thm option)
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
    93
           -> cterm -> thm
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    94
  val set_mk_rews: meta_simpset * (thm -> thm list) -> meta_simpset
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    95
  val sign_of: theory -> Sign.sg
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    96
  val syn_of: theory -> Sign.Syntax.syntax
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    97
  val stamps_of_thm: thm -> string ref list
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    98
  val stamps_of_thy: theory -> string ref list
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    99
  val symmetric: thm -> thm
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   100
  val tpairs_of: thm -> (term*term)list
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   101
  val trace_simp: bool ref
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   102
  val transitive: thm -> thm -> thm
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   103
  val trivial: cterm -> thm
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   104
  val varifyT: thm -> thm
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   105
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   106
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   107
functor ThmFun (structure Logic: LOGIC and Unify: UNIFY and Pattern: PATTERN
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   108
  and Net:NET sharing type Pattern.type_sig = Unify.Sign.Type.type_sig)(*: THM *) (* FIXME debug *) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   109
struct
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   110
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   111
structure Sequence = Unify.Sequence;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   112
structure Envir = Unify.Envir;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   113
structure Sign = Unify.Sign;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   114
structure Type = Sign.Type;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   115
structure Syntax = Sign.Syntax;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   116
structure Symtab = Sign.Symtab;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   117
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   118
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   119
(** certified types **)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   120
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   121
(*certified typs under a signature*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   122
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   123
datatype ctyp = Ctyp of {sign: Sign.sg, T: typ};
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   124
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   125
fun rep_ctyp (Ctyp args) = args;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   126
fun typ_of (Ctyp {T, ...}) = T;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   127
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   128
fun ctyp_of sign T =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   129
  Ctyp {sign = sign, T = Sign.certify_typ sign T};
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   130
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   131
fun read_ctyp sign s =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   132
  Ctyp {sign = sign, T = Sign.read_typ (sign, K None) s};
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   133
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   134
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   135
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   136
(** certified terms **)
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   137
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   138
(*certified terms under a signature, with checked typ and maxidx of Vars*)
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   139
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   140
datatype cterm = Cterm of {sign: Sign.sg, t: term, T: typ, maxidx: int};
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   141
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   142
fun rep_cterm (Cterm args) = args;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   143
fun term_of (Cterm {t, ...}) = t;
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   144
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   145
(*create a cterm by checking a "raw" term with respect to a signature*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   146
fun cterm_of sign tm =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   147
  let val (t, T, maxidx) = Sign.certify_term sign tm
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   148
  in Cterm {sign = sign, t = t, T = T, maxidx = maxidx}
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   149
  end handle TYPE (msg, _, _)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   150
    => raise TERM ("Term not in signature\n" ^ msg, [tm]);
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   151
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   152
fun cterm_fun f (Cterm {sign, t, ...}) = cterm_of sign (f t);
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   153
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   154
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   155
(*dest_implies for cterms. Note T=prop below*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   156
fun dest_cimplies (Cterm{sign, T, maxidx, t=Const("==>", _) $ A $ B}) =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   157
       (Cterm{sign=sign, T=T, maxidx=maxidx, t=A},
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   158
        Cterm{sign=sign, T=T, maxidx=maxidx, t=B})
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   159
  | dest_cimplies ct = raise TERM ("dest_cimplies", [term_of ct]);
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   160
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   161
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   162
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   163
(** read cterms **)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   164
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   165
(*read term, infer types, certify term*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   166
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   167
fun read_def_cterm (sign, types, sorts) (a, T) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   168
  let
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   169
    val {tsig, const_tab, syn, ...} = Sign.rep_sg sign;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   170
    val showtyp = Sign.string_of_typ sign;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   171
    val showterm = Sign.string_of_term sign;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   172
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   173
    fun termerr [] = ""
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   174
      | termerr [t] = "\nInvolving this term:\n" ^ showterm t
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   175
      | termerr ts = "\nInvolving these terms:\n" ^ cat_lines (map showterm ts);
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   176
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   177
    val T' = Sign.certify_typ sign T
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   178
      handle TYPE (msg, _, _) => error msg;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   179
    val t = Syntax.read syn T' a;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   180
    val (t', tye) = Type.infer_types (tsig, const_tab, types, sorts, T', t)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   181
      handle TYPE (msg, Ts, ts) => error ("Type checking error: " ^ msg ^ "\n"
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   182
        ^ cat_lines (map showtyp Ts) ^ termerr ts);
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   183
    val ct = cterm_of sign t' handle TERM (msg, _) => error msg;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   184
  in (ct, tye) end;
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   185
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   186
fun read_cterm sign = #1 o (read_def_cterm (sign, K None, K None));
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   187
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   188
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   189
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   190
(**** META-THEOREMS ****)
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   191
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   192
datatype thm = Thm of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   193
  {sign: Sign.sg, maxidx: int, hyps: term list, prop: term};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   194
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   195
fun rep_thm (Thm args) = args;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   196
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   197
(*Errors involving theorems*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   198
exception THM of string * int * thm list;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   199
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   200
(*maps object-rule to tpairs *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   201
fun tpairs_of (Thm{prop,...}) = #1 (Logic.strip_flexpairs prop);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   202
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   203
(*maps object-rule to premises *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   204
fun prems_of (Thm{prop,...}) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   205
    Logic.strip_imp_prems (Logic.skip_flexpairs prop);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   206
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   207
(*counts premises in a rule*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   208
fun nprems_of (Thm{prop,...}) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   209
    Logic.count_prems (Logic.skip_flexpairs prop, 0);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   210
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   211
(*maps object-rule to conclusion *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   212
fun concl_of (Thm{prop,...}) = Logic.strip_imp_concl prop;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   213
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   214
(*The statement of any Thm is a Cterm*)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   215
fun cprop_of (Thm{sign,maxidx,hyps,prop}) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   216
        Cterm{sign=sign, maxidx=maxidx, T=propT, t=prop};
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   217
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   218
(*Stamps associated with a signature*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   219
val stamps_of_thm = #stamps o Sign.rep_sg o #sign o rep_thm;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   220
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   221
(*Theories.  There is one pure theory.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   222
  A theory can be extended.  Two theories can be merged.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   223
datatype theory =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   224
    Pure of {sign: Sign.sg}
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   225
  | Extend of {sign: Sign.sg,  axioms: thm Symtab.table,  thy: theory}
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   226
  | Merge of {sign: Sign.sg,  thy1: theory,  thy2: theory};
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   227
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   228
(*Errors involving theories*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   229
exception THEORY of string * theory list;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   230
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   231
fun sign_of (Pure {sign}) = sign
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   232
  | sign_of (Extend {sign,...}) = sign
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   233
  | sign_of (Merge {sign,...}) = sign;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   234
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   235
val syn_of = #syn o Sign.rep_sg o sign_of;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   236
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   237
(*return the axioms of a theory and its ancestors*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   238
fun axioms_of (Pure _) = []
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   239
  | axioms_of (Extend {axioms, thy, ...}) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   240
      axioms_of thy @ Symtab.alist_of axioms
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   241
  | axioms_of (Merge {thy1, thy2, ...}) = axioms_of thy1 @ axioms_of thy2;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   242
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   243
(*return the immediate ancestors -- also distinguishes the kinds of theories*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   244
fun parents_of (Pure _) = []
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   245
  | parents_of (Extend{thy,...}) = [thy]
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   246
  | parents_of (Merge{thy1,thy2,...}) = [thy1,thy2];
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   247
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   248
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   249
(*Merge theories of two theorems.  Raise exception if incompatible.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   250
  Prefers (via Sign.merge) the signature of th1.  *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   251
fun merge_theories(th1,th2) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   252
  let val Thm{sign=sign1,...} = th1 and Thm{sign=sign2,...} = th2
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   253
  in  Sign.merge (sign1,sign2)  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   254
  handle TERM _ => raise THM("incompatible signatures", 0, [th1,th2]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   255
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   256
(*Stamps associated with a theory*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   257
val stamps_of_thy = #stamps o Sign.rep_sg o sign_of;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   258
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   259
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   260
(**** Primitive rules ****)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   261
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   262
(* discharge all assumptions t from ts *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   263
val disch = gen_rem (op aconv);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   264
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   265
(*The assumption rule A|-A in a theory  *)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   266
fun assume ct : thm =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   267
  let val {sign, t=prop, T, maxidx} = rep_cterm ct
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   268
  in  if T<>propT then
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   269
        raise THM("assume: assumptions must have type prop", 0, [])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   270
      else if maxidx <> ~1 then
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   271
        raise THM("assume: assumptions may not contain scheme variables",
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   272
                  maxidx, [])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   273
      else Thm{sign = sign, maxidx = ~1, hyps = [prop], prop = prop}
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   274
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   275
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   276
(* Implication introduction
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   277
              A |- B
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   278
              -------
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   279
              A ==> B    *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   280
fun implies_intr cA (thB as Thm{sign,maxidx,hyps,prop}) : thm =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   281
  let val {sign=signA, t=A, T, maxidx=maxidxA} = rep_cterm cA
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   282
  in  if T<>propT then
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   283
        raise THM("implies_intr: assumptions must have type prop", 0, [thB])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   284
      else Thm{sign= Sign.merge (sign,signA),  maxidx= max[maxidxA, maxidx],
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   285
             hyps= disch(hyps,A),  prop= implies$A$prop}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   286
      handle TERM _ =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   287
        raise THM("implies_intr: incompatible signatures", 0, [thB])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   288
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   289
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   290
(* Implication elimination
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   291
        A ==> B       A
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   292
        ---------------
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   293
                B      *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   294
fun implies_elim thAB thA : thm =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   295
    let val Thm{maxidx=maxA, hyps=hypsA, prop=propA,...} = thA
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   296
        and Thm{sign, maxidx, hyps, prop,...} = thAB;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   297
        fun err(a) = raise THM("implies_elim: "^a, 0, [thAB,thA])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   298
    in  case prop of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   299
            imp$A$B =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   300
                if imp=implies andalso  A aconv propA
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   301
                then  Thm{sign= merge_theories(thAB,thA),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   302
                          maxidx= max[maxA,maxidx],
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   303
                          hyps= hypsA union hyps,  (*dups suppressed*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   304
                          prop= B}
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   305
                else err("major premise")
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   306
          | _ => err("major premise")
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   307
    end;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   308
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   309
(* Forall introduction.  The Free or Var x must not be free in the hypotheses.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   310
     A
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   311
   ------
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   312
   !!x.A       *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   313
fun forall_intr cx (th as Thm{sign,maxidx,hyps,prop}) =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   314
  let val x = term_of cx;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   315
      fun result(a,T) = Thm{sign= sign, maxidx= maxidx, hyps= hyps,
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   316
                            prop= all(T) $ Abs(a, T, abstract_over (x,prop))}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   317
  in  case x of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   318
        Free(a,T) =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   319
          if exists (apl(x, Logic.occs)) hyps
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   320
          then  raise THM("forall_intr: variable free in assumptions", 0, [th])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   321
          else  result(a,T)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   322
      | Var((a,_),T) => result(a,T)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   323
      | _ => raise THM("forall_intr: not a variable", 0, [th])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   324
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   325
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   326
(* Forall elimination
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   327
              !!x.A
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   328
             --------
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   329
              A[t/x]     *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   330
fun forall_elim ct (th as Thm{sign,maxidx,hyps,prop}) : thm =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   331
  let val {sign=signt, t, T, maxidx=maxt} = rep_cterm ct
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   332
  in  case prop of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   333
          Const("all",Type("fun",[Type("fun",[qary,_]),_])) $ A =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   334
            if T<>qary then
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   335
                raise THM("forall_elim: type mismatch", 0, [th])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   336
            else Thm{sign= Sign.merge(sign,signt),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   337
                     maxidx= max[maxidx, maxt],
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   338
                     hyps= hyps,  prop= betapply(A,t)}
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   339
        | _ => raise THM("forall_elim: not quantified", 0, [th])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   340
  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   341
  handle TERM _ =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   342
         raise THM("forall_elim: incompatible signatures", 0, [th]);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   343
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   344
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   345
(*** Equality ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   346
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   347
(*Definition of the relation =?= *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   348
val flexpair_def =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   349
  Thm{sign= Sign.pure, hyps= [], maxidx= 0,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   350
      prop= term_of
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   351
              (read_cterm Sign.pure
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   352
                 ("(?t =?= ?u) == (?t == ?u::?'a::{})", propT))};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   353
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   354
(*The reflexivity rule: maps  t   to the theorem   t==t   *)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   355
fun reflexive ct =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   356
  let val {sign, t, T, maxidx} = rep_cterm ct
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   357
  in  Thm{sign= sign, hyps= [], maxidx= maxidx, prop= Logic.mk_equals(t,t)}
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   358
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   359
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   360
(*The symmetry rule
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   361
    t==u
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   362
    ----
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   363
    u==t         *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   364
fun symmetric (th as Thm{sign,hyps,prop,maxidx}) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   365
  case prop of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   366
      (eq as Const("==",_)) $ t $ u =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   367
          Thm{sign=sign, hyps=hyps, maxidx=maxidx, prop= eq$u$t}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   368
    | _ => raise THM("symmetric", 0, [th]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   369
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   370
(*The transitive rule
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   371
    t1==u    u==t2
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   372
    ------------
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   373
        t1==t2      *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   374
fun transitive th1 th2 =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   375
  let val Thm{maxidx=max1, hyps=hyps1, prop=prop1,...} = th1
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   376
      and Thm{maxidx=max2, hyps=hyps2, prop=prop2,...} = th2;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   377
      fun err(msg) = raise THM("transitive: "^msg, 0, [th1,th2])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   378
  in case (prop1,prop2) of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   379
       ((eq as Const("==",_)) $ t1 $ u, Const("==",_) $ u' $ t2) =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   380
          if not (u aconv u') then err"middle term"  else
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   381
              Thm{sign= merge_theories(th1,th2), hyps= hyps1 union hyps2,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   382
                  maxidx= max[max1,max2], prop= eq$t1$t2}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   383
     | _ =>  err"premises"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   384
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   385
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   386
(*Beta-conversion: maps (%(x)t)(u) to the theorem  (%(x)t)(u) == t[u/x]   *)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   387
fun beta_conversion ct =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   388
  let val {sign, t, T, maxidx} = rep_cterm ct
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   389
  in  case t of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   390
          Abs(_,_,bodt) $ u =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   391
            Thm{sign= sign,  hyps= [],
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   392
                maxidx= maxidx_of_term t,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   393
                prop= Logic.mk_equals(t, subst_bounds([u],bodt))}
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   394
        | _ =>  raise THM("beta_conversion: not a redex", 0, [])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   395
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   396
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   397
(*The extensionality rule   (proviso: x not free in f, g, or hypotheses)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   398
    f(x) == g(x)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   399
    ------------
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   400
       f == g    *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   401
fun extensional (th as Thm{sign,maxidx,hyps,prop}) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   402
  case prop of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   403
    (Const("==",_)) $ (f$x) $ (g$y) =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   404
      let fun err(msg) = raise THM("extensional: "^msg, 0, [th])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   405
      in (if x<>y then err"different variables" else
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   406
          case y of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   407
                Free _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   408
                  if exists (apl(y, Logic.occs)) (f::g::hyps)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   409
                  then err"variable free in hyps or functions"    else  ()
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   410
              | Var _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   411
                  if Logic.occs(y,f)  orelse  Logic.occs(y,g)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   412
                  then err"variable free in functions"   else  ()
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   413
              | _ => err"not a variable");
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   414
          Thm{sign=sign, hyps=hyps, maxidx=maxidx,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   415
              prop= Logic.mk_equals(f,g)}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   416
      end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   417
 | _ =>  raise THM("extensional: premise", 0, [th]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   418
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   419
(*The abstraction rule.  The Free or Var x must not be free in the hypotheses.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   420
  The bound variable will be named "a" (since x will be something like x320)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   421
          t == u
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   422
    ----------------
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   423
      %(x)t == %(x)u     *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   424
fun abstract_rule a cx (th as Thm{sign,maxidx,hyps,prop}) =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   425
  let val x = term_of cx;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   426
      val (t,u) = Logic.dest_equals prop
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   427
            handle TERM _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   428
                raise THM("abstract_rule: premise not an equality", 0, [th])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   429
      fun result T =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   430
            Thm{sign= sign, maxidx= maxidx, hyps= hyps,
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   431
                prop= Logic.mk_equals(Abs(a, T, abstract_over (x,t)),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   432
                                      Abs(a, T, abstract_over (x,u)))}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   433
  in  case x of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   434
        Free(_,T) =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   435
         if exists (apl(x, Logic.occs)) hyps
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   436
         then raise THM("abstract_rule: variable free in assumptions", 0, [th])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   437
         else result T
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   438
      | Var(_,T) => result T
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   439
      | _ => raise THM("abstract_rule: not a variable", 0, [th])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   440
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   441
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   442
(*The combination rule
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   443
    f==g    t==u
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   444
    ------------
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   445
     f(t)==g(u)      *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   446
fun combination th1 th2 =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   447
  let val Thm{maxidx=max1, hyps=hyps1, prop=prop1,...} = th1
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   448
      and Thm{maxidx=max2, hyps=hyps2, prop=prop2,...} = th2
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   449
  in  case (prop1,prop2)  of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   450
       (Const("==",_) $ f $ g, Const("==",_) $ t $ u) =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   451
              Thm{sign= merge_theories(th1,th2), hyps= hyps1 union hyps2,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   452
                  maxidx= max[max1,max2], prop= Logic.mk_equals(f$t, g$u)}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   453
     | _ =>  raise THM("combination: premises", 0, [th1,th2])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   454
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   455
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   456
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   457
(*The equal propositions rule
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   458
    A==B    A
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   459
    ---------
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   460
        B          *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   461
fun equal_elim th1 th2 =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   462
  let val Thm{maxidx=max1, hyps=hyps1, prop=prop1,...} = th1
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   463
      and Thm{maxidx=max2, hyps=hyps2, prop=prop2,...} = th2;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   464
      fun err(msg) = raise THM("equal_elim: "^msg, 0, [th1,th2])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   465
  in  case prop1  of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   466
       Const("==",_) $ A $ B =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   467
          if not (prop2 aconv A) then err"not equal"  else
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   468
              Thm{sign= merge_theories(th1,th2), hyps= hyps1 union hyps2,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   469
                  maxidx= max[max1,max2], prop= B}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   470
     | _ =>  err"major premise"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   471
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   472
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   473
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   474
(* Equality introduction
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   475
    A==>B    B==>A
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   476
    -------------
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   477
         A==B            *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   478
fun equal_intr th1 th2 =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   479
let val Thm{maxidx=max1, hyps=hyps1, prop=prop1,...} = th1
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   480
    and Thm{maxidx=max2, hyps=hyps2, prop=prop2,...} = th2;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   481
    fun err(msg) = raise THM("equal_intr: "^msg, 0, [th1,th2])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   482
in case (prop1,prop2) of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   483
     (Const("==>",_) $ A $ B, Const("==>",_) $ B' $ A')  =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   484
        if A aconv A' andalso B aconv B'
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   485
        then Thm{sign= merge_theories(th1,th2), hyps= hyps1 union hyps2,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   486
                 maxidx= max[max1,max2], prop= Logic.mk_equals(A,B)}
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   487
        else err"not equal"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   488
   | _ =>  err"premises"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   489
end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   490
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   491
(**** Derived rules ****)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   492
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   493
(*Discharge all hypotheses (need not verify cterms)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   494
  Repeated hypotheses are discharged only once;  fold cannot do this*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   495
fun implies_intr_hyps (Thm{sign, maxidx, hyps=A::As, prop}) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   496
      implies_intr_hyps
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   497
            (Thm{sign=sign,  maxidx=maxidx,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   498
                 hyps= disch(As,A),  prop= implies$A$prop})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   499
  | implies_intr_hyps th = th;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   500
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   501
(*Smash" unifies the list of term pairs leaving no flex-flex pairs.
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   502
  Instantiates the theorem and deletes trivial tpairs.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   503
  Resulting sequence may contain multiple elements if the tpairs are
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   504
    not all flex-flex. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   505
fun flexflex_rule (Thm{sign,maxidx,hyps,prop}) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   506
  let fun newthm env =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   507
          let val (tpairs,horn) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   508
                        Logic.strip_flexpairs (Envir.norm_term env prop)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   509
                (*Remove trivial tpairs, of the form t=t*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   510
              val distpairs = filter (not o op aconv) tpairs
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   511
              val newprop = Logic.list_flexpairs(distpairs, horn)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   512
          in  Thm{sign= sign, hyps= hyps,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   513
                  maxidx= maxidx_of_term newprop, prop= newprop}
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   514
          end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   515
      val (tpairs,_) = Logic.strip_flexpairs prop
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   516
  in Sequence.maps newthm
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   517
            (Unify.smash_unifiers(sign, Envir.empty maxidx, tpairs))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   518
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   519
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   520
(*Instantiation of Vars
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   521
                      A
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   522
             --------------------
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   523
              A[t1/v1,....,tn/vn]     *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   524
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   525
(*Check that all the terms are Vars and are distinct*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   526
fun instl_ok ts = forall is_Var ts andalso null(findrep ts);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   527
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   528
(*For instantiate: process pair of cterms, merge theories*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   529
fun add_ctpair ((ct,cu), (sign,tpairs)) =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   530
  let val {sign=signt, t=t, T= T, ...} = rep_cterm ct
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   531
      and {sign=signu, t=u, T= U, ...} = rep_cterm cu
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   532
  in  if T=U  then (Sign.merge(sign, Sign.merge(signt, signu)), (t,u)::tpairs)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   533
      else raise TYPE("add_ctpair", [T,U], [t,u])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   534
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   535
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   536
fun add_ctyp ((v,ctyp), (sign',vTs)) =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   537
  let val {T,sign} = rep_ctyp ctyp
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   538
  in (Sign.merge(sign,sign'), (v,T)::vTs) end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   539
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   540
(*Left-to-right replacements: ctpairs = [...,(vi,ti),...].
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   541
  Instantiates distinct Vars by terms of same type.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   542
  Normalizes the new theorem! *)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   543
fun instantiate (vcTs,ctpairs)  (th as Thm{sign,maxidx,hyps,prop}) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   544
  let val (newsign,tpairs) = foldr add_ctpair (ctpairs, (sign,[]));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   545
      val (newsign,vTs) = foldr add_ctyp (vcTs, (newsign,[]));
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   546
      val newprop =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   547
            Envir.norm_term (Envir.empty 0)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   548
              (subst_atomic tpairs
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   549
               (Type.inst_term_tvars(#tsig(Sign.rep_sg newsign),vTs) prop))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   550
      val newth = Thm{sign= newsign, hyps= hyps,
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   551
                      maxidx= maxidx_of_term newprop, prop= newprop}
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   552
  in  if not(instl_ok(map #1 tpairs))
193
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   553
      then raise THM("instantiate: variables not distinct", 0, [th])
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   554
      else if not(null(findrep(map #1 vTs)))
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   555
      then raise THM("instantiate: type variables not distinct", 0, [th])
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   556
      else (*Check types of Vars for agreement*)
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   557
      case findrep (map (#1 o dest_Var) (term_vars newprop)) of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   558
          ix::_ => raise THM("instantiate: conflicting types for variable " ^
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   559
                             Syntax.string_of_vname ix ^ "\n", 0, [newth])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   560
        | [] =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   561
             case findrep (map #1 (term_tvars newprop)) of
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   562
             ix::_ => raise THM
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   563
                    ("instantiate: conflicting sorts for type variable " ^
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   564
                     Syntax.string_of_vname ix ^ "\n", 0, [newth])
193
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   565
        | [] => newth
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   566
  end
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   567
  handle TERM _ =>
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   568
           raise THM("instantiate: incompatible signatures",0,[th])
193
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   569
       | TYPE _ => raise THM("instantiate: type conflict", 0, [th]);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   570
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   571
(*The trivial implication A==>A, justified by assume and forall rules.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   572
  A can contain Vars, not so for assume!   *)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   573
fun trivial ct : thm =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   574
  let val {sign, t=A, T, maxidx} = rep_cterm ct
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   575
  in  if T<>propT then
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   576
            raise THM("trivial: the term must have type prop", 0, [])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   577
      else Thm{sign= sign, maxidx= maxidx, hyps= [], prop= implies$A$A}
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   578
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   579
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   580
(* Replace all TFrees not in the hyps by new TVars *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   581
fun varifyT(Thm{sign,maxidx,hyps,prop}) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   582
  let val tfrees = foldr add_term_tfree_names (hyps,[])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   583
  in Thm{sign=sign, maxidx=max[0,maxidx], hyps=hyps,
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   584
         prop= Type.varify(prop,tfrees)}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   585
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   586
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   587
(* Replace all TVars by new TFrees *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   588
fun freezeT(Thm{sign,maxidx,hyps,prop}) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   589
  let val prop' = Type.freeze (K true) prop
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   590
  in Thm{sign=sign, maxidx=maxidx_of_term prop', hyps=hyps, prop=prop'} end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   591
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   592
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   593
(*** Inference rules for tactics ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   594
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   595
(*Destruct proof state into constraints, other goals, goal(i), rest *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   596
fun dest_state (state as Thm{prop,...}, i) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   597
  let val (tpairs,horn) = Logic.strip_flexpairs prop
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   598
  in  case  Logic.strip_prems(i, [], horn) of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   599
          (B::rBs, C) => (tpairs, rev rBs, B, C)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   600
        | _ => raise THM("dest_state", i, [state])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   601
  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   602
  handle TERM _ => raise THM("dest_state", i, [state]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   603
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   604
(*Increment variables and parameters of rule as required for
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   605
  resolution with goal i of state. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   606
fun lift_rule (state, i) orule =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   607
  let val Thm{prop=sprop,maxidx=smax,...} = state;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   608
      val (Bi::_, _) = Logic.strip_prems(i, [], Logic.skip_flexpairs sprop)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   609
        handle TERM _ => raise THM("lift_rule", i, [orule,state]);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   610
      val (lift_abs,lift_all) = Logic.lift_fns(Bi,smax+1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   611
      val (Thm{sign,maxidx,hyps,prop}) = orule
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   612
      val (tpairs,As,B) = Logic.strip_horn prop
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   613
  in  Thm{hyps=hyps, sign= merge_theories(state,orule),
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   614
          maxidx= maxidx+smax+1,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   615
          prop= Logic.rule_of(map (pairself lift_abs) tpairs,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   616
                              map lift_all As,    lift_all B)}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   617
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   618
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   619
(*Solve subgoal Bi of proof state B1...Bn/C by assumption. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   620
fun assumption i state =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   621
  let val Thm{sign,maxidx,hyps,prop} = state;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   622
      val (tpairs, Bs, Bi, C) = dest_state(state,i)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   623
      fun newth (env as Envir.Envir{maxidx, ...}, tpairs) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   624
          Thm{sign=sign, hyps=hyps, maxidx=maxidx, prop=
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   625
            if Envir.is_empty env then (*avoid wasted normalizations*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   626
              Logic.rule_of (tpairs, Bs, C)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   627
            else (*normalize the new rule fully*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   628
              Envir.norm_term env (Logic.rule_of (tpairs, Bs, C))};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   629
      fun addprfs [] = Sequence.null
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   630
        | addprfs ((t,u)::apairs) = Sequence.seqof (fn()=> Sequence.pull
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   631
             (Sequence.mapp newth
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   632
                (Unify.unifiers(sign,Envir.empty maxidx, (t,u)::tpairs))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   633
                (addprfs apairs)))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   634
  in  addprfs (Logic.assum_pairs Bi)  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   635
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   636
(*Solve subgoal Bi of proof state B1...Bn/C by assumption.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   637
  Checks if Bi's conclusion is alpha-convertible to one of its assumptions*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   638
fun eq_assumption i state =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   639
  let val Thm{sign,maxidx,hyps,prop} = state;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   640
      val (tpairs, Bs, Bi, C) = dest_state(state,i)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   641
  in  if exists (op aconv) (Logic.assum_pairs Bi)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   642
      then Thm{sign=sign, hyps=hyps, maxidx=maxidx,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   643
               prop=Logic.rule_of(tpairs, Bs, C)}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   644
      else  raise THM("eq_assumption", 0, [state])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   645
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   646
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   647
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   648
(** User renaming of parameters in a subgoal **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   649
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   650
(*Calls error rather than raising an exception because it is intended
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   651
  for top-level use -- exception handling would not make sense here.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   652
  The names in cs, if distinct, are used for the innermost parameters;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   653
   preceding parameters may be renamed to make all params distinct.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   654
fun rename_params_rule (cs, i) state =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   655
  let val Thm{sign,maxidx,hyps,prop} = state
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   656
      val (tpairs, Bs, Bi, C) = dest_state(state,i)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   657
      val iparams = map #1 (Logic.strip_params Bi)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   658
      val short = length iparams - length cs
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   659
      val newnames =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   660
            if short<0 then error"More names than abstractions!"
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   661
            else variantlist(take (short,iparams), cs) @ cs
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   662
      val freenames = map (#1 o dest_Free) (term_frees prop)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   663
      val newBi = Logic.list_rename_params (newnames, Bi)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   664
  in
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   665
  case findrep cs of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   666
     c::_ => error ("Bound variables not distinct: " ^ c)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   667
   | [] => (case cs inter freenames of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   668
       a::_ => error ("Bound/Free variable clash: " ^ a)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   669
     | [] => Thm{sign=sign, hyps=hyps, maxidx=maxidx, prop=
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   670
                    Logic.rule_of(tpairs, Bs@[newBi], C)})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   671
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   672
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   673
(*** Preservation of bound variable names ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   674
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   675
(*Scan a pair of terms; while they are similar,
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   676
  accumulate corresponding bound vars in "al"*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   677
fun match_bvs(Abs(x,_,s),Abs(y,_,t), al) = match_bvs(s,t,(x,y)::al)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   678
  | match_bvs(f$s, g$t, al) = match_bvs(f,g,match_bvs(s,t,al))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   679
  | match_bvs(_,_,al) = al;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   680
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   681
(* strip abstractions created by parameters *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   682
fun match_bvars((s,t),al) = match_bvs(strip_abs_body s, strip_abs_body t, al);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   683
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   684
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   685
(* strip_apply f A(,B) strips off all assumptions/parameters from A
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   686
   introduced by lifting over B, and applies f to remaining part of A*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   687
fun strip_apply f =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   688
  let fun strip(Const("==>",_)$ A1 $ B1,
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   689
                Const("==>",_)$ _  $ B2) = implies $ A1 $ strip(B1,B2)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   690
        | strip((c as Const("all",_)) $ Abs(a,T,t1),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   691
                      Const("all",_)  $ Abs(_,_,t2)) = c$Abs(a,T,strip(t1,t2))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   692
        | strip(A,_) = f A
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   693
  in strip end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   694
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   695
(*Use the alist to rename all bound variables and some unknowns in a term
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   696
  dpairs = current disagreement pairs;  tpairs = permanent ones (flexflex);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   697
  Preserves unknowns in tpairs and on lhs of dpairs. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   698
fun rename_bvs([],_,_,_) = I
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   699
  | rename_bvs(al,dpairs,tpairs,B) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   700
    let val vars = foldr add_term_vars
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   701
                        (map fst dpairs @ map fst tpairs @ map snd tpairs, [])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   702
        (*unknowns appearing elsewhere be preserved!*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   703
        val vids = map (#1 o #1 o dest_Var) vars;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   704
        fun rename(t as Var((x,i),T)) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   705
                (case assoc(al,x) of
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   706
                   Some(y) => if x mem vids orelse y mem vids then t
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   707
                              else Var((y,i),T)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   708
                 | None=> t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   709
          | rename(Abs(x,T,t)) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   710
              Abs(case assoc(al,x) of Some(y) => y | None => x,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   711
                  T, rename t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   712
          | rename(f$t) = rename f $ rename t
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   713
          | rename(t) = t;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   714
        fun strip_ren Ai = strip_apply rename (Ai,B)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   715
    in strip_ren end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   716
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   717
(*Function to rename bounds/unknowns in the argument, lifted over B*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   718
fun rename_bvars(dpairs, tpairs, B) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   719
        rename_bvs(foldr match_bvars (dpairs,[]), dpairs, tpairs, B);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   720
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   721
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   722
(*** RESOLUTION ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   723
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   724
(*strip off pairs of assumptions/parameters in parallel -- they are
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   725
  identical because of lifting*)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   726
fun strip_assums2 (Const("==>", _) $ _ $ B1,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   727
                   Const("==>", _) $ _ $ B2) = strip_assums2 (B1,B2)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   728
  | strip_assums2 (Const("all",_)$Abs(a,T,t1),
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   729
                   Const("all",_)$Abs(_,_,t2)) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   730
      let val (B1,B2) = strip_assums2 (t1,t2)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   731
      in  (Abs(a,T,B1), Abs(a,T,B2))  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   732
  | strip_assums2 BB = BB;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   733
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   734
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   735
(*Composition of object rule r=(A1...Am/B) with proof state s=(B1...Bn/C)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   736
  Unifies B with Bi, replacing subgoal i    (1 <= i <= n)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   737
  If match then forbid instantiations in proof state
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   738
  If lifted then shorten the dpair using strip_assums2.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   739
  If eres_flg then simultaneously proves A1 by assumption.
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   740
  nsubgoal is the number of new subgoals (written m above).
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   741
  Curried so that resolution calls dest_state only once.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   742
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   743
local open Sequence; exception Bicompose
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   744
in
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   745
fun bicompose_aux match (state, (stpairs, Bs, Bi, C), lifted)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   746
                        (eres_flg, orule, nsubgoal) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   747
 let val Thm{maxidx=smax, hyps=shyps, ...} = state
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   748
     and Thm{maxidx=rmax, hyps=rhyps, prop=rprop,...} = orule;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   749
     val sign = merge_theories(state,orule);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   750
     (** Add new theorem with prop = '[| Bs; As |] ==> C' to thq **)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   751
     fun addth As ((env as Envir.Envir {maxidx, ...}, tpairs), thq) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   752
       let val normt = Envir.norm_term env;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   753
           (*perform minimal copying here by examining env*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   754
           val normp =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   755
             if Envir.is_empty env then (tpairs, Bs @ As, C)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   756
             else
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   757
             let val ntps = map (pairself normt) tpairs
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   758
             in if the (Envir.minidx env) > smax then (*no assignments in state*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   759
                  (ntps, Bs @ map normt As, C)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   760
                else if match then raise Bicompose
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   761
                else (*normalize the new rule fully*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   762
                  (ntps, map normt (Bs @ As), normt C)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   763
             end
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   764
           val th = Thm{sign=sign, hyps=rhyps union shyps, maxidx=maxidx,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   765
                        prop= Logic.rule_of normp}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   766
        in  cons(th, thq)  end  handle Bicompose => thq
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   767
     val (rtpairs,rhorn) = Logic.strip_flexpairs(rprop);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   768
     val (rAs,B) = Logic.strip_prems(nsubgoal, [], rhorn)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   769
       handle TERM _ => raise THM("bicompose: rule", 0, [orule,state]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   770
     (*Modify assumptions, deleting n-th if n>0 for e-resolution*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   771
     fun newAs(As0, n, dpairs, tpairs) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   772
       let val As1 = if !Logic.auto_rename orelse not lifted then As0
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   773
                     else map (rename_bvars(dpairs,tpairs,B)) As0
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   774
       in (map (Logic.flatten_params n) As1)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   775
          handle TERM _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   776
          raise THM("bicompose: 1st premise", 0, [orule])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   777
       end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   778
     val env = Envir.empty(max[rmax,smax]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   779
     val BBi = if lifted then strip_assums2(B,Bi) else (B,Bi);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   780
     val dpairs = BBi :: (rtpairs@stpairs);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   781
     (*elim-resolution: try each assumption in turn.  Initially n=1*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   782
     fun tryasms (_, _, []) = null
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   783
       | tryasms (As, n, (t,u)::apairs) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   784
          (case pull(Unify.unifiers(sign, env, (t,u)::dpairs))  of
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   785
               None                   => tryasms (As, n+1, apairs)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   786
             | cell as Some((_,tpairs),_) =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   787
                   its_right (addth (newAs(As, n, [BBi,(u,t)], tpairs)))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   788
                       (seqof (fn()=> cell),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   789
                        seqof (fn()=> pull (tryasms (As, n+1, apairs)))));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   790
     fun eres [] = raise THM("bicompose: no premises", 0, [orule,state])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   791
       | eres (A1::As) = tryasms (As, 1, Logic.assum_pairs A1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   792
     (*ordinary resolution*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   793
     fun res(None) = null
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   794
       | res(cell as Some((_,tpairs),_)) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   795
             its_right (addth(newAs(rev rAs, 0, [BBi], tpairs)))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   796
                       (seqof (fn()=> cell), null)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   797
 in  if eres_flg then eres(rev rAs)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   798
     else res(pull(Unify.unifiers(sign, env, dpairs)))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   799
 end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   800
end;  (*open Sequence*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   801
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   802
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   803
fun bicompose match arg i state =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   804
    bicompose_aux match (state, dest_state(state,i), false) arg;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   805
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   806
(*Quick test whether rule is resolvable with the subgoal with hyps Hs
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   807
  and conclusion B.  If eres_flg then checks 1st premise of rule also*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   808
fun could_bires (Hs, B, eres_flg, rule) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   809
    let fun could_reshyp (A1::_) = exists (apl(A1,could_unify)) Hs
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   810
          | could_reshyp [] = false;  (*no premise -- illegal*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   811
    in  could_unify(concl_of rule, B) andalso
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   812
        (not eres_flg  orelse  could_reshyp (prems_of rule))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   813
    end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   814
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   815
(*Bi-resolution of a state with a list of (flag,rule) pairs.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   816
  Puts the rule above:  rule/state.  Renames vars in the rules. *)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   817
fun biresolution match brules i state =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   818
    let val lift = lift_rule(state, i);
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   819
        val (stpairs, Bs, Bi, C) = dest_state(state,i)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   820
        val B = Logic.strip_assums_concl Bi;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   821
        val Hs = Logic.strip_assums_hyp Bi;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   822
        val comp = bicompose_aux match (state, (stpairs, Bs, Bi, C), true);
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   823
        fun res [] = Sequence.null
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   824
          | res ((eres_flg, rule)::brules) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   825
              if could_bires (Hs, B, eres_flg, rule)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   826
              then Sequence.seqof (*delay processing remainder til needed*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   827
                  (fn()=> Some(comp (eres_flg, lift rule, nprems_of rule),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   828
                               res brules))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   829
              else res brules
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   830
    in  Sequence.flats (res brules)  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   831
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   832
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   833
(**** THEORIES ****)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   834
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   835
val pure_thy = Pure{sign = Sign.pure};
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   836
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   837
(*Look up the named axiom in the theory*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   838
fun get_axiom thy axname =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   839
    let fun get (Pure _) = raise Match
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   840
          | get (Extend{axioms,thy,...}) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   841
             (case Symtab.lookup(axioms,axname) of
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   842
                  Some th => th
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   843
                | None => get thy)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   844
         | get (Merge{thy1,thy2,...}) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   845
                get thy1  handle Match => get thy2
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   846
    in  get thy
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   847
        handle Match => raise THEORY("get_axiom: No axiom "^axname, [thy])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   848
    end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   849
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   850
(*Converts Frees to Vars: axioms can be written without question marks*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   851
fun prepare_axiom sign sP =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   852
    Logic.varify (term_of (read_cterm sign (sP,propT)));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   853
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   854
(*Read an axiom for a new theory*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   855
fun read_ax sign (a, sP) : string*thm =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   856
  let val prop = prepare_axiom sign sP
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   857
  in  (a, Thm{sign=sign, hyps=[], maxidx= maxidx_of_term prop, prop= prop})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   858
  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   859
  handle ERROR =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   860
        error("extend_theory: The error above occurred in axiom " ^ a);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   861
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   862
fun mk_axioms sign axpairs =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   863
        Symtab.st_of_alist(map (read_ax sign) axpairs, Symtab.null)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   864
        handle Symtab.DUPLICATE(a) => error("Two axioms named " ^ a);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   865
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   866
(*Extension of a theory with given classes, types, constants and syntax.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   867
  Reads the axioms from strings: axpairs have the form (axname, axiom). *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   868
fun extend_theory thy thyname ext axpairs =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   869
  let val sign = Sign.extend (sign_of thy) thyname ext;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   870
      val axioms= mk_axioms sign axpairs
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   871
  in  Extend{sign=sign, axioms= axioms, thy = thy}  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   872
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   873
(*The union of two theories*)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   874
fun merge_theories (thy1, thy2) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   875
  Merge {sign = Sign.merge (sign_of thy1, sign_of thy2),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   876
         thy1 = thy1, thy2 = thy2} handle TERM (msg, _) => error msg;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   877
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   878
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   879
(*** Meta simp sets ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   880
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   881
type rrule = {thm:thm, lhs:term};
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   882
datatype meta_simpset =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   883
  Mss of {net:rrule Net.net, congs:(string * rrule)list, primes:string,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   884
          prems: thm list, mk_rews: thm -> thm list};
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   885
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   886
(*A "mss" contains data needed during conversion:
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   887
  net: discrimination net of rewrite rules
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   888
  congs: association list of congruence rules
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   889
  primes: offset for generating unique new names
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   890
          for rewriting under lambda abstractions
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   891
  mk_rews: used when local assumptions are added
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   892
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   893
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   894
val empty_mss = Mss{net= Net.empty, congs= [], primes="", prems= [],
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   895
                    mk_rews = K[]};
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   896
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   897
exception SIMPLIFIER of string * thm;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   898
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   899
fun prtm a sign t = (writeln a; writeln(Sign.string_of_term sign t));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   900
209
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
   901
val trace_simp = ref false;
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
   902
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   903
fun trace_term a sign t = if !trace_simp then prtm a sign t else ();
209
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
   904
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
   905
fun trace_thm a (Thm{sign,prop,...}) = trace_term a sign prop;
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
   906
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   907
(*simple test for looping rewrite*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   908
fun loops sign prems (lhs,rhs) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   909
  null(prems) andalso
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   910
  Pattern.eta_matches (#tsig(Sign.rep_sg sign)) (lhs,rhs);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   911
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   912
fun mk_rrule (thm as Thm{hyps,sign,prop,maxidx,...}) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   913
  let val prems = Logic.strip_imp_prems prop
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   914
      val concl = Pattern.eta_contract (Logic.strip_imp_concl prop)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   915
      val (lhs,rhs) = Logic.dest_equals concl handle TERM _ =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   916
                      raise SIMPLIFIER("Rewrite rule not a meta-equality",thm)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   917
  in if loops sign prems (lhs,rhs)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   918
     then (prtm "Warning: ignoring looping rewrite rule" sign prop; None)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   919
     else Some{thm=thm,lhs=lhs}
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   920
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   921
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   922
local
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   923
 fun eq({thm=Thm{prop=p1,...},...}:rrule,
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   924
        {thm=Thm{prop=p2,...},...}:rrule) = p1 aconv p2
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   925
in
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   926
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   927
fun add_simp(mss as Mss{net,congs,primes,prems,mk_rews},
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   928
             thm as Thm{sign,prop,...}) =
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   929
  case mk_rrule thm of
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   930
    None => mss
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   931
  | Some(rrule as {lhs,...}) =>
209
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
   932
      (trace_thm "Adding rewrite rule:" thm;
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
   933
       Mss{net= (Net.insert_term((lhs,rrule),net,eq)
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
   934
                 handle Net.INSERT =>
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   935
                  (prtm "Warning: ignoring duplicate rewrite rule" sign prop;
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   936
                   net)),
209
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
   937
           congs=congs, primes=primes, prems=prems,mk_rews=mk_rews});
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   938
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   939
fun del_simp(mss as Mss{net,congs,primes,prems,mk_rews},
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   940
             thm as Thm{sign,prop,...}) =
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   941
  case mk_rrule thm of
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   942
    None => mss
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   943
  | Some(rrule as {lhs,...}) =>
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   944
      Mss{net= (Net.delete_term((lhs,rrule),net,eq)
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   945
                handle Net.INSERT =>
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   946
                 (prtm "Warning: rewrite rule not in simpset" sign prop;
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   947
                  net)),
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   948
             congs=congs, primes=primes, prems=prems,mk_rews=mk_rews}
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   949
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   950
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   951
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   952
val add_simps = foldl add_simp;
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
   953
val del_simps = foldl del_simp;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   954
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   955
fun mss_of thms = add_simps(empty_mss,thms);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   956
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   957
fun add_cong(Mss{net,congs,primes,prems,mk_rews},thm) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   958
  let val (lhs,_) = Logic.dest_equals(concl_of thm) handle TERM _ =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   959
                    raise SIMPLIFIER("Congruence not a meta-equality",thm)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   960
      val lhs = Pattern.eta_contract lhs
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   961
      val (a,_) = dest_Const (head_of lhs) handle TERM _ =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   962
                  raise SIMPLIFIER("Congruence must start with a constant",thm)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   963
  in Mss{net=net, congs=(a,{lhs=lhs,thm=thm})::congs, primes=primes,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   964
         prems=prems, mk_rews=mk_rews}
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   965
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   966
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   967
val (op add_congs) = foldl add_cong;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   968
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   969
fun add_prems(Mss{net,congs,primes,prems,mk_rews},thms) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   970
  Mss{net=net, congs=congs, primes=primes, prems=thms@prems, mk_rews=mk_rews};
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   971
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   972
fun prems_of_mss(Mss{prems,...}) = prems;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   973
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   974
fun set_mk_rews(Mss{net,congs,primes,prems,...},mk_rews) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   975
  Mss{net=net, congs=congs, primes=primes, prems=prems, mk_rews=mk_rews};
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   976
fun mk_rews_of_mss(Mss{mk_rews,...}) = mk_rews;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   977
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   978
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   979
(*** Meta-level rewriting
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   980
     uses conversions, omitting proofs for efficiency.  See
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   981
        L C Paulson, A higher-order implementation of rewriting,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   982
        Science of Computer Programming 3 (1983), pages 119-149. ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   983
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   984
type prover = meta_simpset -> thm -> thm option;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   985
type termrec = (Sign.sg * term list) * term;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   986
type conv = meta_simpset -> termrec -> termrec;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   987
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
   988
fun check_conv(thm as Thm{hyps,prop,...}, prop0) =
112
009ae5c85ae9 Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents: 87
diff changeset
   989
  let fun err() = (trace_thm "Proved wrong thm (Check subgoaler?)" thm; None)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   990
      val (lhs0,_) = Logic.dest_equals(Logic.strip_imp_concl prop0)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   991
  in case prop of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   992
       Const("==",_) $ lhs $ rhs =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   993
         if (lhs = lhs0) orelse
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   994
            (lhs aconv (Envir.norm_term (Envir.empty 0) lhs0))
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
   995
         then (trace_thm "SUCCEEDED" thm; Some(hyps,rhs))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   996
         else err()
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   997
     | _ => err()
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   998
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   999
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1000
(*Conversion to apply the meta simpset to a term*)
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1001
fun rewritec (prover,signt) (mss as Mss{net,...}) (hypst,t) =
225
76f60e6400e8 optimized net for matching of abstractions to speed up simplifier
nipkow
parents: 222
diff changeset
  1002
  let val t = Pattern.eta_contract t;
76f60e6400e8 optimized net for matching of abstractions to speed up simplifier
nipkow
parents: 222
diff changeset
  1003
      fun rew {thm as Thm{sign,hyps,maxidx,prop,...}, lhs} =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1004
        let val unit = if Sign.subsig(sign,signt) then ()
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1005
                  else (writeln"Warning: rewrite rule from different theory";
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1006
                        raise Pattern.MATCH)
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1007
            val insts = Pattern.match (#tsig(Sign.rep_sg signt)) (lhs,t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1008
            val prop' = subst_vars insts prop;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1009
            val hyps' = hyps union hypst;
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1010
            val thm' = Thm{sign=signt, hyps=hyps', prop=prop', maxidx=maxidx}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1011
        in if nprems_of thm' = 0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1012
           then let val (_,rhs) = Logic.dest_equals prop'
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1013
                in trace_thm "Rewriting:" thm'; Some(hyps',rhs) end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1014
           else (trace_thm "Trying to rewrite:" thm';
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1015
                 case prover mss thm' of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1016
                   None       => (trace_thm "FAILED" thm'; None)
112
009ae5c85ae9 Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents: 87
diff changeset
  1017
                 | Some(thm2) => check_conv(thm2,prop'))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1018
        end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1019
225
76f60e6400e8 optimized net for matching of abstractions to speed up simplifier
nipkow
parents: 222
diff changeset
  1020
      fun rews [] = None
76f60e6400e8 optimized net for matching of abstractions to speed up simplifier
nipkow
parents: 222
diff changeset
  1021
        | rews (rrule::rrules) =
76f60e6400e8 optimized net for matching of abstractions to speed up simplifier
nipkow
parents: 222
diff changeset
  1022
            let val opt = rew rrule handle Pattern.MATCH => None
76f60e6400e8 optimized net for matching of abstractions to speed up simplifier
nipkow
parents: 222
diff changeset
  1023
            in case opt of None => rews rrules | some => some end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1024
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1025
  in case t of
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1026
       Abs(_,_,body) $ u => Some(hypst,subst_bounds([u], body))
225
76f60e6400e8 optimized net for matching of abstractions to speed up simplifier
nipkow
parents: 222
diff changeset
  1027
     | _                 => rews(Net.match_term net t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1028
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1029
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1030
(*Conversion to apply a congruence rule to a term*)
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1031
fun congc (prover,signt) {thm=cong,lhs=lhs} (hypst,t) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1032
  let val Thm{sign,hyps,maxidx,prop,...} = cong
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1033
      val unit = if Sign.subsig(sign,signt) then ()
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1034
                 else error("Congruence rule from different theory")
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1035
      val tsig = #tsig(Sign.rep_sg signt)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1036
      val insts = Pattern.match tsig (lhs,t) handle Pattern.MATCH =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1037
                  error("Congruence rule did not match")
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1038
      val prop' = subst_vars insts prop;
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1039
      val thm' = Thm{sign=signt, hyps=hyps union hypst,
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1040
                     prop=prop', maxidx=maxidx}
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1041
      val unit = trace_thm "Applying congruence rule" thm';
112
009ae5c85ae9 Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents: 87
diff changeset
  1042
      fun err() = error("Failed congruence proof!")
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1043
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1044
  in case prover thm' of
112
009ae5c85ae9 Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents: 87
diff changeset
  1045
       None => err()
009ae5c85ae9 Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents: 87
diff changeset
  1046
     | Some(thm2) => (case check_conv(thm2,prop') of
009ae5c85ae9 Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents: 87
diff changeset
  1047
                        None => err() | Some(x) => x)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1048
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1049
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1050
214
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
  1051
fun bottomc ((simprem,useprem),prover,sign) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1052
  let fun botc mss trec = let val trec1 = subc mss trec
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1053
                          in case rewritec (prover,sign) mss trec1 of
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1054
                               None => trec1
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1055
                             | Some(trec2) => botc mss trec2
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1056
                          end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1057
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1058
      and subc (mss as Mss{net,congs,primes,prems,mk_rews})
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1059
               (trec as (hyps,t)) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1060
        (case t of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1061
            Abs(a,T,t) =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1062
              let val v = Free(".subc." ^ primes,T)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1063
                  val mss' = Mss{net=net, congs=congs, primes=primes^"'",
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1064
                                 prems=prems,mk_rews=mk_rews}
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1065
                  val (hyps',t') = botc mss' (hyps,subst_bounds([v],t))
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1066
              in  (hyps', Abs(a, T, abstract_over(v,t')))  end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1067
          | t$u => (case t of
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1068
              Const("==>",_)$s  => impc(hyps,s,u,mss)
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1069
            | Abs(_,_,body)     => subc mss (hyps,subst_bounds([u], body))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1070
            | _                 =>
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1071
                let fun appc() = let val (hyps1,t1) = botc mss (hyps,t)
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1072
                                     val (hyps2,u1) = botc mss (hyps1,u)
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1073
                                 in (hyps2,t1$u1) end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1074
                    val (h,ts) = strip_comb t
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1075
                in case h of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1076
                     Const(a,_) =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1077
                       (case assoc(congs,a) of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1078
                          None => appc()
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1079
                        | Some(cong) => congc (prover mss,sign) cong trec)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1080
                   | _ => appc()
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1081
                end)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1082
          | _ => trec)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1083
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1084
      and impc(hyps,s,u,mss as Mss{mk_rews,...}) =
214
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
  1085
        let val (hyps1,s') = if simprem then botc mss (hyps,s) else (hyps,s)
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
  1086
            val mss' =
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
  1087
              if not useprem orelse maxidx_of_term s' <> ~1 then mss
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1088
              else let val thm = Thm{sign=sign,hyps=[s'],prop=s',maxidx= ~1}
214
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
  1089
                   in add_simps(add_prems(mss,[thm]), mk_rews thm) end
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1090
            val (hyps2,u') = botc mss' (hyps1,u)
134
595fda4879b6 Fixed bug in rewriter (fun impc) discovered by Marcus Moore.
nipkow
parents: 112
diff changeset
  1091
            val hyps2' = if s' mem hyps1 then hyps2 else hyps2\s'
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1092
        in (hyps2', Logic.mk_implies(s',u')) end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1093
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1094
  in botc end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1095
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1096
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1097
(*** Meta-rewriting: rewrites t to u and returns the theorem t==u ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1098
(* Parameters:
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1099
   mode = (simplify A, use A in simplifying B) when simplifying A ==> B
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1100
   mss: contains equality theorems of the form [|p1,...|] ==> t==u
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1101
   prover: how to solve premises in conditional rewrites and congruences
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1102
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1103
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1104
(*** FIXME: check that #primes(mss) does not "occur" in ct alread ***)
214
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
  1105
fun rewrite_cterm mode mss prover ct =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
  1106
  let val {sign, t, T, maxidx} = rep_cterm ct;
214
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
  1107
      val (hyps,u) = bottomc (mode,prover,sign) mss ([],t);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1108
      val prop = Logic.mk_equals(t,u)
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1109
  in  Thm{sign= sign, hyps= hyps, maxidx= maxidx_of_term prop, prop= prop}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1110
  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1111
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1112
end;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1113