src/Pure/thm.ML
author paulson
Thu, 21 Mar 1996 13:02:26 +0100
changeset 1601 0ef6ea27ab15
parent 1597 54ece585bf62
child 1634 9b9cdef70669
permissions -rw-r--r--
Changes required by removal of the theory argument of Theorem
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
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
     6
The core of Isabelle's Meta Logic: certified types and terms, meta
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
     7
theorems, meta rules (including resolution and simplification).
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     9
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
    10
signature THM =
1503
7dba648ee25c Elimination of fully-functorial style.
paulson
parents: 1495
diff changeset
    11
  sig
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    12
  (*certified types*)
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
    13
  type ctyp
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    14
  val rep_ctyp          : ctyp -> {sign: Sign.sg, T: typ}
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    15
  val typ_of            : ctyp -> typ
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    16
  val ctyp_of           : Sign.sg -> typ -> ctyp
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    17
  val read_ctyp         : Sign.sg -> string -> ctyp
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    18
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    19
  (*certified terms*)
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    20
  type cterm
1493
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
    21
  exception CTERM of string
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
    22
  val rep_cterm         : cterm -> {sign: Sign.sg, t: term, T: typ,
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
    23
                                    maxidx: int}
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    24
  val term_of           : cterm -> term
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    25
  val cterm_of          : Sign.sg -> term -> cterm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    26
  val read_cterm        : Sign.sg -> string * typ -> cterm
1394
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
    27
  val read_cterms       : Sign.sg -> string list * typ list -> cterm list
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    28
  val cterm_fun         : (term -> term) -> (cterm -> cterm)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    29
  val dest_cimplies     : cterm -> cterm * cterm
1493
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
    30
  val dest_comb         : cterm -> cterm * cterm
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
    31
  val dest_abs          : cterm -> cterm * cterm
1516
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
    32
  val capply            : cterm -> cterm -> cterm
1517
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
    33
  val cabs              : cterm -> cterm -> cterm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    34
  val read_def_cterm    :
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    35
    Sign.sg * (indexname -> typ option) * (indexname -> sort option) ->
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    36
    string list -> bool -> string * typ -> cterm * (indexname * typ) list
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    37
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    38
  (*theories*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    39
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    40
  (*proof terms [must duplicate declaration as a specification]*)
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
    41
  datatype deriv_kind = MinDeriv | ThmDeriv | FullDeriv;
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
    42
  val keep_derivs	: deriv_kind ref
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    43
  datatype rule = 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    44
      MinProof				
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
    45
    | Oracle of theory * Sign.sg * exn
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    46
    | Axiom		of theory * string
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
    47
    | Theorem		of string	
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    48
    | Assume		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    49
    | Implies_intr	of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    50
    | Implies_intr_shyps
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    51
    | Implies_intr_hyps
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    52
    | Implies_elim 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    53
    | Forall_intr	of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    54
    | Forall_elim	of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    55
    | Reflexive		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    56
    | Symmetric 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    57
    | Transitive
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    58
    | Beta_conversion	of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    59
    | Extensional
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    60
    | Abstract_rule	of string * cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    61
    | Combination
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    62
    | Equal_intr
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    63
    | Equal_elim
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    64
    | Trivial		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    65
    | Lift_rule		of cterm * int 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    66
    | Assumption	of int * Envir.env option
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    67
    | Instantiate	of (indexname * ctyp) list * (cterm * cterm) list
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    68
    | Bicompose		of bool * bool * int * int * Envir.env
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    69
    | Flexflex_rule	of Envir.env		
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    70
    | Class_triv	of theory * class	
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    71
    | VarifyT
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    72
    | FreezeT
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    73
    | RewriteC		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    74
    | CongC		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    75
    | Rewrite_cterm	of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    76
    | Rename_params_rule of string list * int;
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    77
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
    78
  type deriv   (* = rule mtree *)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    79
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    80
  (*meta theorems*)
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    81
  type thm
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    82
  exception THM of string * int * thm list
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    83
  val rep_thm           : thm -> {sign: Sign.sg, der: deriv, maxidx: int,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    84
				  shyps: sort list, hyps: term list, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    85
				  prop: term}
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    86
  val crep_thm          : thm -> {sign: Sign.sg, der: deriv, maxidx: int,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    87
				  shyps: sort list, hyps: cterm list, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    88
				  prop: cterm}
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    89
  val stamps_of_thm     : thm -> string ref list
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    90
  val tpairs_of         : thm -> (term * term) list
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    91
  val prems_of          : thm -> term list
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    92
  val nprems_of         : thm -> int
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    93
  val concl_of          : thm -> term
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    94
  val cprop_of          : thm -> cterm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    95
  val extra_shyps       : thm -> sort list
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    96
  val force_strip_shyps : bool ref      (* FIXME tmp *)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    97
  val strip_shyps       : thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    98
  val implies_intr_shyps: thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    99
  val get_axiom         : theory -> string -> thm
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   100
  val name_thm          : string * thm -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   101
  val axioms_of         : theory -> (string * thm) list
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   102
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   103
  (*meta rules*)
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   104
  val assume            : cterm -> thm
1416
f59857e32972 Commented the datatype declaration of thm.
paulson
parents: 1394
diff changeset
   105
  val compress          : thm -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   106
  val implies_intr      : cterm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   107
  val implies_elim      : thm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   108
  val forall_intr       : cterm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   109
  val forall_elim       : cterm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   110
  val flexpair_def      : thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   111
  val reflexive         : cterm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   112
  val symmetric         : thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   113
  val transitive        : thm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   114
  val beta_conversion   : cterm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   115
  val extensional       : thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   116
  val abstract_rule     : string -> cterm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   117
  val combination       : thm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   118
  val equal_intr        : thm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   119
  val equal_elim        : thm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   120
  val implies_intr_hyps : thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   121
  val flexflex_rule     : thm -> thm Sequence.seq
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   122
  val instantiate       :
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   123
    (indexname * ctyp) list * (cterm * cterm) list -> thm -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   124
  val trivial           : cterm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   125
  val class_triv        : theory -> class -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   126
  val varifyT           : thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   127
  val freezeT           : thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   128
  val dest_state        : thm * int ->
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   129
    (term * term) list * term list * term * term
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   130
  val lift_rule         : (thm * int) -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   131
  val assumption        : int -> thm -> thm Sequence.seq
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   132
  val eq_assumption     : int -> thm -> thm
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   133
  val rename_params_rule: string list * int -> thm -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   134
  val bicompose         : bool -> bool * thm * int ->
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   135
    int -> thm -> thm Sequence.seq
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   136
  val biresolution      : bool -> (bool * thm) list ->
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   137
    int -> thm -> thm Sequence.seq
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   138
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   139
  (*meta simplification*)
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   140
  type meta_simpset
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   141
  exception SIMPLIFIER of string * thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   142
  val empty_mss         : meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   143
  val add_simps         : meta_simpset * thm list -> meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   144
  val del_simps         : meta_simpset * thm list -> meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   145
  val mss_of            : thm list -> meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   146
  val add_congs         : meta_simpset * thm list -> meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   147
  val add_prems         : meta_simpset * thm list -> meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   148
  val prems_of_mss      : meta_simpset -> thm list
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   149
  val set_mk_rews       : meta_simpset * (thm -> thm list) -> meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   150
  val mk_rews_of_mss    : meta_simpset -> thm -> thm list
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   151
  val trace_simp        : bool ref
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   152
  val rewrite_cterm     : bool * bool -> meta_simpset ->
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   153
                          (meta_simpset -> thm -> thm option) -> cterm -> thm
1539
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
   154
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
   155
  val invoke_oracle	: theory * Sign.sg * exn -> thm
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   156
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   157
1503
7dba648ee25c Elimination of fully-functorial style.
paulson
parents: 1495
diff changeset
   158
structure Thm : THM =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   159
struct
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   160
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   161
(*** Certified terms and types ***)
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   162
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   163
(** certified types **)
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
(*certified typs under a signature*)
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
datatype ctyp = Ctyp of {sign: Sign.sg, T: typ};
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   168
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   169
fun rep_ctyp (Ctyp args) = args;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   170
fun typ_of (Ctyp {T, ...}) = T;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   171
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   172
fun ctyp_of sign T =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   173
  Ctyp {sign = sign, T = Sign.certify_typ sign T};
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   174
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   175
fun read_ctyp sign s =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   176
  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
   177
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   178
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   179
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   180
(** certified terms **)
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   181
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   182
(*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
   183
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   184
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
   185
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   186
fun rep_cterm (Cterm args) = args;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   187
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
   188
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   189
(*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
   190
fun cterm_of sign tm =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   191
  let val (t, T, maxidx) = Sign.certify_term sign tm
1394
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   192
  in  Cterm {sign = sign, t = t, T = T, maxidx = maxidx}
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   193
  end;
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   194
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   195
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
   196
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   197
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   198
(*dest_implies for cterms. Note T=prop below*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   199
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
   200
       (Cterm{sign=sign, T=T, maxidx=maxidx, t=A},
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   201
        Cterm{sign=sign, T=T, maxidx=maxidx, t=B})
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   202
  | 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
   203
1493
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   204
exception CTERM of string;
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   205
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   206
(*Destruct application in cterms*)
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   207
fun dest_comb (Cterm{sign, T, maxidx, t = A $ B}) =
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   208
      let val typeA = fastype_of A;
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   209
          val typeB =
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   210
            case typeA of Type("fun",[S,T]) => S
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   211
                        | _ => error "Function type expected in dest_comb";
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   212
      in
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   213
      (Cterm {sign=sign, maxidx=maxidx, t=A, T=typeA},
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   214
       Cterm {sign=sign, maxidx=maxidx, t=B, T=typeB})
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   215
      end
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   216
  | dest_comb _ = raise CTERM "dest_comb";
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   217
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   218
(*Destruct abstraction in cterms*)
1516
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   219
fun dest_abs (Cterm {sign, T as Type("fun",[_,S]), maxidx, t=Abs(x,ty,M)}) = 
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   220
      let val (y,N) = variant_abs (x,ty,M)
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   221
      in (Cterm {sign = sign, T = ty, maxidx = 0, t = Free(y,ty)},
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   222
          Cterm {sign = sign, T = S, maxidx = maxidx, t = N})
1493
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   223
      end
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   224
  | dest_abs _ = raise CTERM "dest_abs";
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   225
1516
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   226
(*Form cterm out of a function and an argument*)
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   227
fun capply (Cterm {t=f, sign=sign1, T=Type("fun",[dty,rty]), maxidx=maxidx1})
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   228
           (Cterm {t=x, sign=sign2, T, maxidx=maxidx2}) =
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   229
      if T = dty then Cterm{t=f$x, sign=Sign.merge(sign1,sign2), T=rty,
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   230
                            maxidx=max[maxidx1, maxidx2]}
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   231
      else raise CTERM "capply: types don't agree"
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   232
  | capply _ _ = raise CTERM "capply: first arg is not a function"
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   233
1517
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
   234
fun cabs (Cterm {t=Free(a,ty), sign=sign1, T=T1, maxidx=maxidx1})
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
   235
         (Cterm {t=t2, sign=sign2, T=T2, maxidx=maxidx2}) =
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
   236
      Cterm {t=absfree(a,ty,t2), sign=Sign.merge(sign1,sign2),
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
   237
             T = ty --> T2, maxidx=max[maxidx1, maxidx2]}
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
   238
  | cabs _ _ = raise CTERM "cabs: first arg is not a free variable";
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   239
574
810da101bad2 read_def_cterm: minor changes;
wenzelm
parents: 564
diff changeset
   240
(** read cterms **)   (*exception ERROR*)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   241
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   242
(*read term, infer types, certify term*)
949
83c588d6fee9 Changed treatment of during type inference internally generated type
nipkow
parents: 922
diff changeset
   243
fun read_def_cterm (sign, types, sorts) used freeze (a, T) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   244
  let
574
810da101bad2 read_def_cterm: minor changes;
wenzelm
parents: 564
diff changeset
   245
    val T' = Sign.certify_typ sign T
810da101bad2 read_def_cterm: minor changes;
wenzelm
parents: 564
diff changeset
   246
      handle TYPE (msg, _, _) => error msg;
623
ca9f5dbab880 added print_msg;
clasohm
parents: 622
diff changeset
   247
    val ts = Syntax.read (#syn (Sign.rep_sg sign)) T' a;
949
83c588d6fee9 Changed treatment of during type inference internally generated type
nipkow
parents: 922
diff changeset
   248
    val (_, t', tye) =
959
35c2e5e114c4 removed print_msg parameter of infer_types
clasohm
parents: 949
diff changeset
   249
          Sign.infer_types sign types sorts used freeze (ts, T');
574
810da101bad2 read_def_cterm: minor changes;
wenzelm
parents: 564
diff changeset
   250
    val ct = cterm_of sign t'
1394
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   251
      handle TYPE arg => error (Sign.exn_type_msg sign arg)
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   252
	   | TERM (msg, _) => error msg;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   253
  in (ct, tye) end;
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   254
949
83c588d6fee9 Changed treatment of during type inference internally generated type
nipkow
parents: 922
diff changeset
   255
fun read_cterm sign = #1 o read_def_cterm (sign, K None, K None) [] true;
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   256
1394
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   257
(*read a list of terms, matching them against a list of expected types.
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   258
  NO disambiguation of alternative parses via type-checking -- it is just
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   259
  not practical.*)
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   260
fun read_cterms sign (bs, Ts) =
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   261
  let
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   262
    val {tsig, syn, ...} = Sign.rep_sg sign
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   263
    fun read (b,T) =
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   264
	case Syntax.read syn T b of
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   265
	    [t] => t
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   266
	  | _   => error("Error or ambiguity in parsing of " ^ b)
1394
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   267
    val (us,_) = Type.infer_types(tsig, Sign.const_type sign, 
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   268
				  K None, K None, 
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   269
				  [], true, 
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   270
				  map (Sign.certify_typ sign) Ts, 
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   271
				  map read (bs~~Ts))
1394
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   272
  in  map (cterm_of sign) us  end
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   273
  handle TYPE arg => error (Sign.exn_type_msg sign arg)
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   274
       | TERM (msg, _) => error msg;
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   275
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   276
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   277
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   278
(*** Derivations ***)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   279
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   280
(*Names of rules in derivations.  Includes logically trivial rules, if 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   281
  executed in ML.*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   282
datatype rule = 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   283
    MinProof				(*for building minimal proof terms*)
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   284
  | Oracle   	        of theory * Sign.sg * exn	(*oracles*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   285
(*Axioms/theorems*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   286
  | Axiom		of theory * string
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   287
  | Theorem		of string
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   288
(*primitive inferences and compound versions of them*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   289
  | Assume		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   290
  | Implies_intr	of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   291
  | Implies_intr_shyps
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   292
  | Implies_intr_hyps
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   293
  | Implies_elim 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   294
  | Forall_intr		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   295
  | Forall_elim		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   296
  | Reflexive		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   297
  | Symmetric 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   298
  | Transitive
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   299
  | Beta_conversion	of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   300
  | Extensional
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   301
  | Abstract_rule	of string * cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   302
  | Combination
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   303
  | Equal_intr
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   304
  | Equal_elim
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   305
(*derived rules for tactical proof*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   306
  | Trivial		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   307
	(*For lift_rule, the proof state is not a premise.
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   308
	  Use cterm instead of thm to avoid mutual recursion.*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   309
  | Lift_rule		of cterm * int 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   310
  | Assumption		of int * Envir.env option (*includes eq_assumption*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   311
  | Instantiate		of (indexname * ctyp) list * (cterm * cterm) list
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   312
  | Bicompose		of bool * bool * int * int * Envir.env
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   313
  | Flexflex_rule	of Envir.env		(*identifies unifier chosen*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   314
(*other derived rules*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   315
  | Class_triv		of theory * class	(*derived rule????*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   316
  | VarifyT
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   317
  | FreezeT
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   318
(*for the simplifier*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   319
  | RewriteC		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   320
  | CongC		of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   321
  | Rewrite_cterm	of cterm
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   322
(*Logical identities, recorded since they are part of the proof process*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   323
  | Rename_params_rule	of string list * int;
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   324
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   325
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   326
type deriv = rule mtree;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   327
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   328
datatype deriv_kind = MinDeriv | ThmDeriv | FullDeriv;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   329
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   330
val keep_derivs = ref MinDeriv;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   331
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   332
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   333
(*Build a minimal derivation.  Keep oracles; suppress atomic inferences;
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   334
  retain Theorems or their underlying links; keep anything else*)
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   335
fun squash_derivs [] = []
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   336
  | squash_derivs (der::ders) =
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   337
     (case der of
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   338
	  Join (Oracle _, _) => der :: squash_derivs ders
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   339
	| Join (Theorem _, [der']) => if !keep_derivs=ThmDeriv 
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   340
				      then der :: squash_derivs ders
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   341
				      else squash_derivs (der'::ders)
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   342
	| Join (Axiom _, _) => if !keep_derivs=ThmDeriv 
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   343
			       then der :: squash_derivs ders
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   344
			       else squash_derivs ders
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   345
	| Join (_, [])      => squash_derivs ders
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   346
	| _                 => der :: squash_derivs ders);
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   347
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   348
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   349
(*Ensure sharing of the most likely derivation, the empty one!*)
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   350
val min_infer = Join (MinProof, []);
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   351
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   352
(*Make a minimal inference*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   353
fun make_min_infer []    = min_infer
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   354
  | make_min_infer [der] = der
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   355
  | make_min_infer ders  = Join (MinProof, ders);
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   356
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   357
fun infer_derivs (rl, [])   = Join (rl, [])
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   358
  | infer_derivs (rl, ders) =
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   359
    if !keep_derivs=FullDeriv then Join (rl, ders)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   360
    else make_min_infer (squash_derivs ders);
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   361
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   362
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   363
(*** Meta theorems ***)
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   364
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   365
datatype thm = Thm of
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   366
  {sign: Sign.sg,		(*signature for hyps and prop*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   367
   der: deriv,			(*derivation*)
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   368
   maxidx: int,			(*maximum index of any Var or TVar*)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   369
   shyps: sort list,		(* FIXME comment *)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   370
   hyps: term list,		(*hypotheses*)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   371
   prop: term};			(*conclusion*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   372
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   373
fun rep_thm (Thm args) = args;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   374
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   375
(*Version of rep_thm returning cterms instead of terms*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   376
fun crep_thm (Thm {sign, der, maxidx, shyps, hyps, prop}) =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   377
  let fun ctermf max t = Cterm{sign=sign, t=t, T=propT, maxidx=max};
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   378
  in {sign=sign, der=der, maxidx=maxidx, shyps=shyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   379
      hyps = map (ctermf ~1) hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   380
      prop = ctermf maxidx prop}
1517
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
   381
  end;
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
   382
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   383
(*errors involving theorems*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   384
exception THM of string * int * thm list;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   385
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   386
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   387
val stamps_of_thm = #stamps o Sign.rep_sg o #sign o rep_thm;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   388
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   389
(*merge signatures of two theorems; raise exception if incompatible*)
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   390
fun merge_thm_sgs (th1, th2) =
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   391
  Sign.merge (pairself (#sign o rep_thm) (th1, th2))
574
810da101bad2 read_def_cterm: minor changes;
wenzelm
parents: 564
diff changeset
   392
    handle TERM (msg, _) => raise THM (msg, 0, [th1, th2]);
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   393
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   394
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   395
(*maps object-rule to tpairs*)
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   396
fun tpairs_of (Thm {prop, ...}) = #1 (Logic.strip_flexpairs prop);
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   397
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   398
(*maps object-rule to premises*)
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   399
fun prems_of (Thm {prop, ...}) =
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   400
  Logic.strip_imp_prems (Logic.skip_flexpairs prop);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   401
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   402
(*counts premises in a rule*)
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   403
fun nprems_of (Thm {prop, ...}) =
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   404
  Logic.count_prems (Logic.skip_flexpairs prop, 0);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   405
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   406
(*maps object-rule to conclusion*)
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   407
fun concl_of (Thm {prop, ...}) = Logic.strip_imp_concl prop;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   408
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   409
(*the statement of any thm is a cterm*)
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   410
fun cprop_of (Thm {sign, maxidx, prop, ...}) =
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   411
  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
   412
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   413
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   414
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   415
(** sort contexts of theorems **)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   416
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   417
(* basic utils *)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   418
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   419
(*accumulate sorts suppressing duplicates; these are coded low level
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   420
  to improve efficiency a bit*)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   421
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   422
fun add_typ_sorts (Type (_, Ts), Ss) = add_typs_sorts (Ts, Ss)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   423
  | add_typ_sorts (TFree (_, S), Ss) = S ins Ss
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   424
  | add_typ_sorts (TVar (_, S), Ss) = S ins Ss
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   425
and add_typs_sorts ([], Ss) = Ss
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   426
  | add_typs_sorts (T :: Ts, Ss) = add_typs_sorts (Ts, add_typ_sorts (T, Ss));
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   427
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   428
fun add_term_sorts (Const (_, T), Ss) = add_typ_sorts (T, Ss)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   429
  | add_term_sorts (Free (_, T), Ss) = add_typ_sorts (T, Ss)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   430
  | add_term_sorts (Var (_, T), Ss) = add_typ_sorts (T, Ss)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   431
  | add_term_sorts (Bound _, Ss) = Ss
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   432
  | add_term_sorts (Abs (_, T, t), Ss) = add_term_sorts (t, add_typ_sorts (T, Ss))
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   433
  | add_term_sorts (t $ u, Ss) = add_term_sorts (t, add_term_sorts (u, Ss));
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   434
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   435
fun add_terms_sorts ([], Ss) = Ss
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   436
  | add_terms_sorts (t :: ts, Ss) = add_terms_sorts (ts, add_term_sorts (t, Ss));
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   437
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   438
fun env_codT (Envir.Envir {iTs, ...}) = map snd iTs;
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   439
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   440
fun add_env_sorts (env, Ss) =
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   441
  add_terms_sorts (map snd (Envir.alist_of env),
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   442
    add_typs_sorts (env_codT env, Ss));
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   443
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   444
fun add_thm_sorts (Thm {hyps, prop, ...}, Ss) =
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   445
  add_terms_sorts (hyps, add_term_sorts (prop, Ss));
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   446
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   447
fun add_thms_shyps ([], Ss) = Ss
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   448
  | add_thms_shyps (Thm {shyps, ...} :: ths, Ss) =
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   449
      add_thms_shyps (ths, shyps union Ss);
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   450
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   451
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   452
(*get 'dangling' sort constraints of a thm*)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   453
fun extra_shyps (th as Thm {shyps, ...}) =
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   454
  shyps \\ add_thm_sorts (th, []);
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   455
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   456
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   457
(* fix_shyps *)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   458
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   459
(*preserve sort contexts of rule premises and substituted types*)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   460
fun fix_shyps thms Ts thm =
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   461
  let
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   462
    val Thm {sign, der, maxidx, hyps, prop, ...} = thm;
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   463
    val shyps =
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   464
      add_thm_sorts (thm, add_typs_sorts (Ts, add_thms_shyps (thms, [])));
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   465
  in
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   466
    Thm {sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   467
	 der = der,		(*No new derivation, as other rules call this*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   468
	 maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   469
	 shyps = shyps, hyps = hyps, prop = prop}
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   470
  end;
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   471
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   472
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   473
(* strip_shyps *)       (* FIXME improve? (e.g. only minimal extra sorts) *)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   474
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   475
val force_strip_shyps = ref true;  (* FIXME tmp *)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   476
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   477
(*remove extra sorts that are known to be syntactically non-empty*)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   478
fun strip_shyps thm =
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   479
  let
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   480
    val Thm {sign, der, maxidx, shyps, hyps, prop} = thm;
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   481
    val sorts = add_thm_sorts (thm, []);
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   482
    val maybe_empty = not o Sign.nonempty_sort sign sorts;
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   483
    val shyps' = filter (fn S => S mem sorts orelse maybe_empty S) shyps;
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   484
  in
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   485
    Thm {sign = sign, der = der, maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   486
	 shyps =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   487
	 (if eq_set (shyps',sorts) orelse not (!force_strip_shyps) then shyps'
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   488
	  else    (* FIXME tmp *)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   489
	      (writeln ("WARNING Removed sort hypotheses: " ^
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   490
			commas (map Type.str_of_sort (shyps' \\ sorts)));
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   491
	       writeln "WARNING Let's hope these sorts are non-empty!";
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   492
           sorts)),
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   493
      hyps = hyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   494
      prop = prop}
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   495
  end;
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   496
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   497
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   498
(* implies_intr_shyps *)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   499
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   500
(*discharge all extra sort hypotheses*)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   501
fun implies_intr_shyps thm =
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   502
  (case extra_shyps thm of
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   503
    [] => thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   504
  | xshyps =>
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   505
      let
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   506
        val Thm {sign, der, maxidx, shyps, hyps, prop} = thm;
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   507
        val shyps' = logicS ins (shyps \\ xshyps);
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   508
        val used_names = foldr add_term_tfree_names (prop :: hyps, []);
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   509
        val names =
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   510
          tl (variantlist (replicate (length xshyps + 1) "'", used_names));
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   511
        val tfrees = map (TFree o rpair logicS) names;
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   512
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   513
        fun mk_insort (T, S) = map (Logic.mk_inclass o pair T) S;
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   514
        val sort_hyps = flat (map2 mk_insort (tfrees, xshyps));
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   515
      in
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   516
        Thm {sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   517
	     der = infer_derivs (Implies_intr_shyps, [der]), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   518
	     maxidx = maxidx, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   519
	     shyps = shyps',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   520
	     hyps = hyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   521
	     prop = Logic.list_implies (sort_hyps, prop)}
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   522
      end);
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   523
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   524
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   525
(** Axioms **)
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   526
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   527
(*look up the named axiom in the theory*)
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   528
fun get_axiom theory name =
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   529
  let
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   530
    fun get_ax [] = raise Match
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   531
      | get_ax (thy :: thys) =
1539
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
   532
	  let val {sign, new_axioms, parents, ...} = rep_theory thy
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   533
          in case Symtab.lookup (new_axioms, name) of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   534
		Some t => fix_shyps [] []
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   535
		           (Thm {sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   536
				 der = infer_derivs (Axiom(theory,name), []),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   537
				 maxidx = maxidx_of_term t,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   538
				 shyps = [], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   539
				 hyps = [], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   540
				 prop = t})
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   541
	      | None => get_ax parents handle Match => get_ax thys
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   542
          end;
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   543
  in
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   544
    get_ax [theory] handle Match
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   545
      => raise THEORY ("get_axiom: no axiom " ^ quote name, [theory])
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   546
  end;
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   547
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   548
776
df8f91c0e57c improved axioms_of: returns thms as the manual says;
wenzelm
parents: 721
diff changeset
   549
(*return additional axioms of this theory node*)
df8f91c0e57c improved axioms_of: returns thms as the manual says;
wenzelm
parents: 721
diff changeset
   550
fun axioms_of thy =
df8f91c0e57c improved axioms_of: returns thms as the manual says;
wenzelm
parents: 721
diff changeset
   551
  map (fn (s, _) => (s, get_axiom thy s))
df8f91c0e57c improved axioms_of: returns thms as the manual says;
wenzelm
parents: 721
diff changeset
   552
    (Symtab.dest (#new_axioms (rep_theory thy)));
df8f91c0e57c improved axioms_of: returns thms as the manual says;
wenzelm
parents: 721
diff changeset
   553
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   554
(*Attach a label to a theorem to make proof objects more readable*)
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   555
fun name_thm (name, th as Thm {sign, der, maxidx, shyps, hyps, prop}) = 
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   556
    Thm {sign = sign, 
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   557
	 der = Join (Theorem name, [der]),
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   558
	 maxidx = maxidx,
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   559
	 shyps = shyps, 
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   560
	 hyps = hyps, 
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   561
	 prop = prop};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   562
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   563
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   564
(*Compression of theorems -- a separate rule, not integrated with the others,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   565
  as it could be slow.*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   566
fun compress (Thm {sign, der, maxidx, shyps, hyps, prop}) = 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   567
    Thm {sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   568
	 der = der,	(*No derivation recorded!*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   569
	 maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   570
	 shyps = shyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   571
	 hyps = map Term.compress_term hyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   572
	 prop = Term.compress_term prop};
564
eec3a9222b50 added inferT_axm;
wenzelm
parents: 480
diff changeset
   573
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   574
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   575
(*** Meta rules ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   576
1495
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   577
(* check that term does not contain same var with different typing/sorting *)
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   578
fun nodup_Vars(thm as Thm{prop,...}) s =
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   579
  Sign.nodup_Vars prop handle TYPE(msg,_,_) => raise THM(s^": "^msg,0,[thm]);
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   580
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   581
(** 'primitive' rules **)
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   582
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   583
(*discharge all assumptions t from ts*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   584
val disch = gen_rem (op aconv);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   585
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   586
(*The assumption rule A|-A in a theory*)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   587
fun assume ct : thm =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   588
  let val {sign, t=prop, T, maxidx} = rep_cterm ct
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   589
  in  if T<>propT then
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   590
        raise THM("assume: assumptions must have type prop", 0, [])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   591
      else if maxidx <> ~1 then
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   592
        raise THM("assume: assumptions may not contain scheme variables",
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   593
                  maxidx, [])
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   594
      else Thm{sign   = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   595
	       der    = infer_derivs (Assume ct, []), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   596
	       maxidx = ~1, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   597
	       shyps  = add_term_sorts(prop,[]), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   598
	       hyps   = [prop], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   599
	       prop   = prop}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   600
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   601
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   602
(*Implication introduction
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   603
  A |- B
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   604
  -------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   605
  A ==> B
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   606
*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   607
fun implies_intr cA (thB as Thm{sign,der,maxidx,hyps,prop,...}) : thm =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   608
  let val {sign=signA, t=A, T, maxidx=maxidxA} = rep_cterm cA
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   609
  in  if T<>propT then
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   610
        raise THM("implies_intr: assumptions must have type prop", 0, [thB])
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   611
      else fix_shyps [thB] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   612
        (Thm{sign = Sign.merge (sign,signA),  
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   613
	     der = infer_derivs (Implies_intr cA, [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   614
	     maxidx = max[maxidxA, maxidx],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   615
	     shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   616
	     hyps = disch(hyps,A),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   617
	     prop = implies$A$prop})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   618
      handle TERM _ =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   619
        raise THM("implies_intr: incompatible signatures", 0, [thB])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   620
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   621
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   622
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   623
(*Implication elimination
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   624
  A ==> B    A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   625
  ------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   626
        B
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   627
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   628
fun implies_elim thAB thA : thm =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   629
    let val Thm{maxidx=maxA, der=derA, hyps=hypsA, prop=propA,...} = thA
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   630
        and Thm{sign, der, maxidx, hyps, prop,...} = thAB;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   631
        fun err(a) = raise THM("implies_elim: "^a, 0, [thAB,thA])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   632
    in  case prop of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   633
            imp$A$B =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   634
                if imp=implies andalso  A aconv propA
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   635
                then fix_shyps [thAB, thA] []
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   636
                       (Thm{sign= merge_thm_sgs(thAB,thA),
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   637
			    der = infer_derivs (Implies_elim, [der,derA]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   638
			    maxidx = max[maxA,maxidx],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   639
			    shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   640
			    hyps = hypsA union hyps,  (*dups suppressed*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   641
			    prop = B})
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   642
                else err("major premise")
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   643
          | _ => err("major premise")
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   644
    end;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   645
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   646
(*Forall introduction.  The Free or Var x must not be free in the hypotheses.
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   647
    A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   648
  -----
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   649
  !!x.A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   650
*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   651
fun forall_intr cx (th as Thm{sign,der,maxidx,hyps,prop,...}) =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   652
  let val x = term_of cx;
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   653
      fun result(a,T) = fix_shyps [th] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   654
        (Thm{sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   655
	     der = infer_derivs (Forall_intr cx, [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   656
	     maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   657
	     shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   658
	     hyps = hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   659
	     prop = all(T) $ Abs(a, T, abstract_over (x,prop))})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   660
  in  case x of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   661
        Free(a,T) =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   662
          if exists (apl(x, Logic.occs)) hyps
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   663
          then  raise THM("forall_intr: variable free in assumptions", 0, [th])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   664
          else  result(a,T)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   665
      | Var((a,_),T) => result(a,T)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   666
      | _ => raise THM("forall_intr: not a variable", 0, [th])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   667
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   668
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   669
(*Forall elimination
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   670
  !!x.A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   671
  ------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   672
  A[t/x]
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   673
*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   674
fun forall_elim ct (th as Thm{sign,der,maxidx,hyps,prop,...}) : thm =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   675
  let val {sign=signt, t, T, maxidx=maxt} = rep_cterm ct
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   676
  in  case prop of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   677
          Const("all",Type("fun",[Type("fun",[qary,_]),_])) $ A =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   678
            if T<>qary then
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   679
                raise THM("forall_elim: type mismatch", 0, [th])
1495
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   680
            else let val thm = fix_shyps [th] []
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   681
                      (Thm{sign= Sign.merge(sign,signt),
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   682
			   der = infer_derivs (Forall_elim ct, [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   683
                           maxidx = max[maxidx, maxt],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   684
                           shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   685
			   hyps = hyps,  
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   686
			   prop = betapply(A,t)})
1495
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   687
                 in nodup_Vars thm "forall_elim"; thm end
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   688
        | _ => raise THM("forall_elim: not quantified", 0, [th])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   689
  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   690
  handle TERM _ =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   691
         raise THM("forall_elim: incompatible signatures", 0, [th]);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   692
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   693
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   694
(* Equality *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   695
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   696
(* Definition of the relation =?= *)
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   697
val flexpair_def = fix_shyps [] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   698
  (Thm{sign= Sign.proto_pure, 
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   699
       der = Join(Axiom(pure_thy, "flexpair_def"), []),
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   700
       shyps = [], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   701
       hyps = [], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   702
       maxidx = 0,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   703
       prop = term_of (read_cterm Sign.proto_pure
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   704
		       ("(?t =?= ?u) == (?t == ?u::?'a::{})", propT))});
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   705
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   706
(*The reflexivity rule: maps  t   to the theorem   t==t   *)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   707
fun reflexive ct =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   708
  let val {sign, t, T, maxidx} = rep_cterm ct
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   709
  in  fix_shyps [] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   710
       (Thm{sign= sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   711
	    der = infer_derivs (Reflexive ct, []),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   712
	    shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   713
	    hyps = [], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   714
	    maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   715
	    prop = Logic.mk_equals(t,t)})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   716
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   717
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   718
(*The symmetry rule
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   719
  t==u
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   720
  ----
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   721
  u==t
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   722
*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   723
fun symmetric (th as Thm{sign,der,maxidx,shyps,hyps,prop}) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   724
  case prop of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   725
      (eq as Const("==",_)) $ t $ u =>
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   726
        (*no fix_shyps*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   727
	  Thm{sign = sign,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   728
	      der = infer_derivs (Symmetric, [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   729
	      maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   730
	      shyps = shyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   731
	      hyps = hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   732
	      prop = eq$u$t}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   733
    | _ => raise THM("symmetric", 0, [th]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   734
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   735
(*The transitive rule
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   736
  t1==u    u==t2
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   737
  --------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   738
      t1==t2
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   739
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   740
fun transitive th1 th2 =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   741
  let val Thm{der=der1, maxidx=max1, hyps=hyps1, prop=prop1,...} = th1
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   742
      and Thm{der=der2, maxidx=max2, hyps=hyps2, prop=prop2,...} = th2;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   743
      fun err(msg) = raise THM("transitive: "^msg, 0, [th1,th2])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   744
  in case (prop1,prop2) of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   745
       ((eq as Const("==",_)) $ t1 $ u, Const("==",_) $ u' $ t2) =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   746
          if not (u aconv u') then err"middle term"  else
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   747
              fix_shyps [th1, th2] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   748
                (Thm{sign= merge_thm_sgs(th1,th2), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   749
		     der = infer_derivs (Transitive, [der1, der2]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   750
		     maxidx = max[max1,max2], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   751
		     shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   752
		     hyps = hyps1 union hyps2,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   753
		     prop = eq$t1$t2})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   754
     | _ =>  err"premises"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   755
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   756
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   757
(*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
   758
fun beta_conversion ct =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   759
  let val {sign, t, T, maxidx} = rep_cterm ct
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   760
  in  case t of
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   761
          Abs(_,_,bodt) $ u => fix_shyps [] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   762
            (Thm{sign = sign,  
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   763
		 der = infer_derivs (Beta_conversion ct, []),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   764
		 maxidx = maxidx_of_term t,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   765
		 shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   766
		 hyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   767
		 prop = Logic.mk_equals(t, subst_bounds([u],bodt))})
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   768
        | _ =>  raise THM("beta_conversion: not a redex", 0, [])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   769
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   770
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   771
(*The extensionality rule   (proviso: x not free in f, g, or hypotheses)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   772
  f(x) == g(x)
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   773
  ------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   774
     f == g
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   775
*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   776
fun extensional (th as Thm{sign, der, maxidx,shyps,hyps,prop}) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   777
  case prop of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   778
    (Const("==",_)) $ (f$x) $ (g$y) =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   779
      let fun err(msg) = raise THM("extensional: "^msg, 0, [th])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   780
      in (if x<>y then err"different variables" else
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   781
          case y of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   782
                Free _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   783
                  if exists (apl(y, Logic.occs)) (f::g::hyps)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   784
                  then err"variable free in hyps or functions"    else  ()
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   785
              | Var _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   786
                  if Logic.occs(y,f)  orelse  Logic.occs(y,g)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   787
                  then err"variable free in functions"   else  ()
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   788
              | _ => err"not a variable");
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   789
          (*no fix_shyps*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   790
          Thm{sign = sign,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   791
	      der = infer_derivs (Extensional, [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   792
	      maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   793
	      shyps = shyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   794
	      hyps = hyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   795
              prop = Logic.mk_equals(f,g)}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   796
      end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   797
 | _ =>  raise THM("extensional: premise", 0, [th]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   798
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   799
(*The abstraction rule.  The Free or Var x must not be free in the hypotheses.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   800
  The bound variable will be named "a" (since x will be something like x320)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   801
     t == u
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   802
  ------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   803
  %x.t == %x.u
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   804
*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   805
fun abstract_rule a cx (th as Thm{sign,der,maxidx,hyps,prop,...}) =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   806
  let val x = term_of cx;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   807
      val (t,u) = Logic.dest_equals prop
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   808
            handle TERM _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   809
                raise THM("abstract_rule: premise not an equality", 0, [th])
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   810
      fun result T = fix_shyps [th] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   811
	  (Thm{sign = sign,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   812
	       der = infer_derivs (Abstract_rule (a,cx), [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   813
	       maxidx = maxidx, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   814
	       shyps = [], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   815
	       hyps = hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   816
	       prop = Logic.mk_equals(Abs(a, T, abstract_over (x,t)),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   817
				      Abs(a, T, abstract_over (x,u)))})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   818
  in  case x of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   819
        Free(_,T) =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   820
         if exists (apl(x, Logic.occs)) hyps
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   821
         then raise THM("abstract_rule: variable free in assumptions", 0, [th])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   822
         else result T
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   823
      | Var(_,T) => result T
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   824
      | _ => raise THM("abstract_rule: not a variable", 0, [th])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   825
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   826
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   827
(*The combination rule
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   828
  f==g    t==u
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   829
  ------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   830
   f(t)==g(u)
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   831
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   832
fun combination th1 th2 =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   833
  let val Thm{der=der1, maxidx=max1, shyps=shyps1, hyps=hyps1, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   834
	      prop=prop1,...} = th1
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   835
      and Thm{der=der2, maxidx=max2, shyps=shyps2, hyps=hyps2, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   836
	      prop=prop2,...} = th2
1495
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   837
  in case (prop1,prop2)  of
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   838
       (Const("==",_) $ f $ g, Const("==",_) $ t $ u) =>
1495
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   839
          let val thm = (*no fix_shyps*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   840
             Thm{sign = merge_thm_sgs(th1,th2), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   841
		 der = infer_derivs (Combination, [der1, der2]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   842
                 maxidx = max[max1,max2], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   843
		 shyps = shyps1 union shyps2,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   844
                 hyps = hyps1 union hyps2,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   845
		 prop = Logic.mk_equals(f$t, g$u)}
1495
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   846
          in nodup_Vars thm "combination"; thm end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   847
     | _ =>  raise THM("combination: premises", 0, [th1,th2])
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
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   851
(* Equality introduction
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   852
  A==>B    B==>A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   853
  --------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   854
       A==B
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   855
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   856
fun equal_intr th1 th2 =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   857
  let val Thm{der=der1,maxidx=max1, shyps=shyps1, hyps=hyps1, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   858
	      prop=prop1,...} = th1
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   859
      and Thm{der=der2, maxidx=max2, shyps=shyps2, hyps=hyps2, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   860
	      prop=prop2,...} = th2;
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   861
      fun err(msg) = raise THM("equal_intr: "^msg, 0, [th1,th2])
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   862
  in case (prop1,prop2) of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   863
       (Const("==>",_) $ A $ B, Const("==>",_) $ B' $ A')  =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   864
	  if A aconv A' andalso B aconv B'
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   865
	  then
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   866
	    (*no fix_shyps*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   867
	      Thm{sign = merge_thm_sgs(th1,th2),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   868
		  der = infer_derivs (Equal_intr, [der1, der2]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   869
		  maxidx = max[max1,max2],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   870
		  shyps = shyps1 union shyps2,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   871
		  hyps = hyps1 union hyps2,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   872
		  prop = Logic.mk_equals(A,B)}
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   873
	  else err"not equal"
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   874
     | _ =>  err"premises"
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   875
  end;
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   876
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   877
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   878
(*The equal propositions rule
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   879
  A==B    A
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   880
  ---------
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   881
      B
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   882
*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   883
fun equal_elim th1 th2 =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   884
  let val Thm{der=der1, maxidx=max1, hyps=hyps1, prop=prop1,...} = th1
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   885
      and Thm{der=der2, maxidx=max2, hyps=hyps2, prop=prop2,...} = th2;
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   886
      fun err(msg) = raise THM("equal_elim: "^msg, 0, [th1,th2])
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   887
  in  case prop1  of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   888
       Const("==",_) $ A $ B =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   889
          if not (prop2 aconv A) then err"not equal"  else
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   890
            fix_shyps [th1, th2] []
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   891
              (Thm{sign= merge_thm_sgs(th1,th2), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   892
		   der = infer_derivs (Equal_elim, [der1, der2]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   893
		   maxidx = max[max1,max2],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   894
		   shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   895
		   hyps = hyps1 union hyps2,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   896
		   prop = B})
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   897
     | _ =>  err"major premise"
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   898
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   899
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   900
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   901
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   902
(**** Derived rules ****)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   903
1503
7dba648ee25c Elimination of fully-functorial style.
paulson
parents: 1495
diff changeset
   904
(*Discharge all hypotheses.  Need not verify cterms or call fix_shyps.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   905
  Repeated hypotheses are discharged only once;  fold cannot do this*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   906
fun implies_intr_hyps (Thm{sign, der, maxidx, shyps, hyps=A::As, prop}) =
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   907
      implies_intr_hyps (*no fix_shyps*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   908
            (Thm{sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   909
		 der = infer_derivs (Implies_intr_hyps, [der]), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   910
		 maxidx = maxidx, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   911
		 shyps = shyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   912
                 hyps = disch(As,A),  
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   913
		 prop = implies$A$prop})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   914
  | implies_intr_hyps th = th;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   915
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   916
(*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
   917
  Instantiates the theorem and deletes trivial tpairs.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   918
  Resulting sequence may contain multiple elements if the tpairs are
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   919
    not all flex-flex. *)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   920
fun flexflex_rule (th as Thm{sign, der, maxidx, hyps, prop,...}) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   921
  let fun newthm env =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   922
          if Envir.is_empty env then th
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   923
          else
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   924
          let val (tpairs,horn) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   925
                        Logic.strip_flexpairs (Envir.norm_term env prop)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   926
                (*Remove trivial tpairs, of the form t=t*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   927
              val distpairs = filter (not o op aconv) tpairs
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   928
              val newprop = Logic.list_flexpairs(distpairs, horn)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   929
          in  fix_shyps [th] (env_codT env)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   930
                (Thm{sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   931
		     der = infer_derivs (Flexflex_rule env, [der]), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   932
		     maxidx = maxidx_of_term newprop, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   933
		     shyps = [], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   934
		     hyps = hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   935
		     prop = newprop})
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   936
          end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   937
      val (tpairs,_) = Logic.strip_flexpairs prop
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   938
  in Sequence.maps newthm
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   939
            (Unify.smash_unifiers(sign, Envir.empty maxidx, tpairs))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   940
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   941
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   942
(*Instantiation of Vars
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   943
           A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   944
  -------------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   945
  A[t1/v1,....,tn/vn]
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   946
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   947
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   948
(*Check that all the terms are Vars and are distinct*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   949
fun instl_ok ts = forall is_Var ts andalso null(findrep ts);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   950
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   951
(*For instantiate: process pair of cterms, merge theories*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   952
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
   953
  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
   954
      and {sign=signu, t=u, T= U, ...} = rep_cterm cu
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   955
  in  if T=U  then (Sign.merge(sign, Sign.merge(signt, signu)), (t,u)::tpairs)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   956
      else raise TYPE("add_ctpair", [T,U], [t,u])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   957
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   958
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   959
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
   960
  let val {T,sign} = rep_ctyp ctyp
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   961
  in (Sign.merge(sign,sign'), (v,T)::vTs) end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   962
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   963
(*Left-to-right replacements: ctpairs = [...,(vi,ti),...].
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   964
  Instantiates distinct Vars by terms of same type.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   965
  Normalizes the new theorem! *)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   966
fun instantiate ([], []) th = th
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   967
  | instantiate (vcTs,ctpairs)  (th as Thm{sign,der,maxidx,hyps,prop,...}) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   968
  let val (newsign,tpairs) = foldr add_ctpair (ctpairs, (sign,[]));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   969
      val (newsign,vTs) = foldr add_ctyp (vcTs, (newsign,[]));
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   970
      val newprop =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   971
            Envir.norm_term (Envir.empty 0)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   972
              (subst_atomic tpairs
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   973
               (Type.inst_term_tvars(#tsig(Sign.rep_sg newsign),vTs) prop))
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   974
      val newth =
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   975
            fix_shyps [th] (map snd vTs)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   976
              (Thm{sign = newsign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   977
		   der = infer_derivs (Instantiate(vcTs,ctpairs), [der]), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   978
		   maxidx = maxidx_of_term newprop, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   979
		   shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   980
		   hyps = hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   981
		   prop = newprop})
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   982
  in  if not(instl_ok(map #1 tpairs))
193
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   983
      then raise THM("instantiate: variables not distinct", 0, [th])
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   984
      else if not(null(findrep(map #1 vTs)))
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   985
      then raise THM("instantiate: type variables not distinct", 0, [th])
1495
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   986
      else nodup_Vars newth "instantiate";
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   987
      newth
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   988
  end
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   989
  handle TERM _ =>
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   990
           raise THM("instantiate: incompatible signatures",0,[th])
193
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
   991
       | TYPE _ => raise THM("instantiate: type conflict", 0, [th]);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   992
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   993
(*The trivial implication A==>A, justified by assume and forall rules.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   994
  A can contain Vars, not so for assume!   *)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   995
fun trivial ct : thm =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   996
  let val {sign, t=A, T, maxidx} = rep_cterm ct
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   997
  in  if T<>propT then
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   998
            raise THM("trivial: the term must have type prop", 0, [])
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   999
      else fix_shyps [] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1000
        (Thm{sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1001
	     der = infer_derivs (Trivial ct, []), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1002
	     maxidx = maxidx, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1003
	     shyps = [], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1004
	     hyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1005
	     prop = implies$A$A})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1006
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1007
1503
7dba648ee25c Elimination of fully-functorial style.
paulson
parents: 1495
diff changeset
  1008
(*Axiom-scheme reflecting signature contents: "OFCLASS(?'a::c, c_class)" *)
399
86cc2b98f9e0 added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents: 387
diff changeset
  1009
fun class_triv thy c =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1010
  let val sign = sign_of thy;
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1011
      val Cterm {t, maxidx, ...} =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1012
	  cterm_of sign (Logic.mk_inclass (TVar (("'a", 0), [c]), c))
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1013
	    handle TERM (msg, _) => raise THM ("class_triv: " ^ msg, 0, []);
399
86cc2b98f9e0 added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents: 387
diff changeset
  1014
  in
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1015
    fix_shyps [] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1016
      (Thm {sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1017
	    der = infer_derivs (Class_triv(thy,c), []), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1018
	    maxidx = maxidx, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1019
	    shyps = [], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1020
	    hyps = [], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1021
	    prop = t})
399
86cc2b98f9e0 added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents: 387
diff changeset
  1022
  end;
86cc2b98f9e0 added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents: 387
diff changeset
  1023
86cc2b98f9e0 added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents: 387
diff changeset
  1024
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1025
(* Replace all TFrees not in the hyps by new TVars *)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1026
fun varifyT(Thm{sign,der,maxidx,shyps,hyps,prop}) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1027
  let val tfrees = foldr add_term_tfree_names (hyps,[])
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1028
  in (*no fix_shyps*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1029
    Thm{sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1030
	der = infer_derivs (VarifyT, [der]), 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1031
	maxidx = max[0,maxidx], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1032
	shyps = shyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1033
	hyps = hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1034
        prop = Type.varify(prop,tfrees)}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1035
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1036
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1037
(* Replace all TVars by new TFrees *)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1038
fun freezeT(Thm{sign,der,maxidx,shyps,hyps,prop}) =
949
83c588d6fee9 Changed treatment of during type inference internally generated type
nipkow
parents: 922
diff changeset
  1039
  let val prop' = Type.freeze prop
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1040
  in (*no fix_shyps*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1041
    Thm{sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1042
	der = infer_derivs (FreezeT, [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1043
	maxidx = maxidx_of_term prop',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1044
	shyps = shyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1045
	hyps = hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1046
        prop = prop'}
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1047
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1048
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1049
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1050
(*** Inference rules for tactics ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1051
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1052
(*Destruct proof state into constraints, other goals, goal(i), rest *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1053
fun dest_state (state as Thm{prop,...}, i) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1054
  let val (tpairs,horn) = Logic.strip_flexpairs prop
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1055
  in  case  Logic.strip_prems(i, [], horn) of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1056
          (B::rBs, C) => (tpairs, rev rBs, B, C)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1057
        | _ => raise THM("dest_state", i, [state])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1058
  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1059
  handle TERM _ => raise THM("dest_state", i, [state]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1060
309
3751567696bf restored the signature constraint :THM
lcp
parents: 305
diff changeset
  1061
(*Increment variables and parameters of orule as required for
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1062
  resolution with goal i of state. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1063
fun lift_rule (state, i) orule =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1064
  let val Thm{shyps=sshyps, prop=sprop, maxidx=smax, sign=ssign,...} = state
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1065
      val (Bi::_, _) = Logic.strip_prems(i, [], Logic.skip_flexpairs sprop)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1066
        handle TERM _ => raise THM("lift_rule", i, [orule,state])
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1067
      val ct_Bi = Cterm {sign=ssign, maxidx=smax, T=propT, t=Bi}
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1068
      val (lift_abs,lift_all) = Logic.lift_fns(Bi,smax+1)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1069
      val (Thm{sign, der, maxidx,shyps,hyps,prop}) = orule
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1070
      val (tpairs,As,B) = Logic.strip_horn prop
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1071
  in  (*no fix_shyps*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1072
      Thm{sign = merge_thm_sgs(state,orule),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1073
	  der = infer_derivs (Lift_rule(ct_Bi, i), [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1074
	  maxidx = maxidx+smax+1,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1075
          shyps=sshyps union shyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1076
	  hyps=hyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1077
          prop = Logic.rule_of (map (pairself lift_abs) tpairs,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1078
				map lift_all As,    
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1079
				lift_all B)}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1080
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1081
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1082
(*Solve subgoal Bi of proof state B1...Bn/C by assumption. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1083
fun assumption i state =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1084
  let val Thm{sign,der,maxidx,hyps,prop,...} = state;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1085
      val (tpairs, Bs, Bi, C) = dest_state(state,i)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1086
      fun newth (env as Envir.Envir{maxidx, ...}, tpairs) =
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1087
        fix_shyps [state] (env_codT env)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1088
          (Thm{sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1089
	       der = infer_derivs (Assumption (i, Some env), [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1090
	       maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1091
	       shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1092
	       hyps = hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1093
	       prop = 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1094
	       if Envir.is_empty env then (*avoid wasted normalizations*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1095
		   Logic.rule_of (tpairs, Bs, C)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1096
	       else (*normalize the new rule fully*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1097
		   Envir.norm_term env (Logic.rule_of (tpairs, Bs, C))});
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1098
      fun addprfs [] = Sequence.null
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1099
        | addprfs ((t,u)::apairs) = Sequence.seqof (fn()=> Sequence.pull
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1100
             (Sequence.mapp newth
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1101
                (Unify.unifiers(sign,Envir.empty maxidx, (t,u)::tpairs))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1102
                (addprfs apairs)))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1103
  in  addprfs (Logic.assum_pairs Bi)  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1104
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1105
(*Solve subgoal Bi of proof state B1...Bn/C by assumption.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1106
  Checks if Bi's conclusion is alpha-convertible to one of its assumptions*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1107
fun eq_assumption i state =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1108
  let val Thm{sign,der,maxidx,hyps,prop,...} = state;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1109
      val (tpairs, Bs, Bi, C) = dest_state(state,i)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1110
  in  if exists (op aconv) (Logic.assum_pairs Bi)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1111
      then fix_shyps [state] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1112
             (Thm{sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1113
		  der = infer_derivs (Assumption (i,None), [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1114
		  maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1115
		  shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1116
		  hyps = hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1117
		  prop = Logic.rule_of(tpairs, Bs, C)})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1118
      else  raise THM("eq_assumption", 0, [state])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1119
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1120
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1121
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1122
(** User renaming of parameters in a subgoal **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1123
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1124
(*Calls error rather than raising an exception because it is intended
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1125
  for top-level use -- exception handling would not make sense here.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1126
  The names in cs, if distinct, are used for the innermost parameters;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1127
   preceding parameters may be renamed to make all params distinct.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1128
fun rename_params_rule (cs, i) state =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1129
  let val Thm{sign,der,maxidx,hyps,prop,...} = state
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1130
      val (tpairs, Bs, Bi, C) = dest_state(state,i)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1131
      val iparams = map #1 (Logic.strip_params Bi)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1132
      val short = length iparams - length cs
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1133
      val newnames =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1134
            if short<0 then error"More names than abstractions!"
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1135
            else variantlist(take (short,iparams), cs) @ cs
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1136
      val freenames = map (#1 o dest_Free) (term_frees prop)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1137
      val newBi = Logic.list_rename_params (newnames, Bi)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1138
  in
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1139
  case findrep cs of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1140
     c::_ => error ("Bound variables not distinct: " ^ c)
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1569
diff changeset
  1141
   | [] => (case cs inter_string freenames of
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1142
       a::_ => error ("Bound/Free variable clash: " ^ a)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1143
     | [] => fix_shyps [state] []
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1144
		(Thm{sign = sign,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1145
		     der = infer_derivs (Rename_params_rule(cs,i), [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1146
		     maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1147
		     shyps = [],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1148
		     hyps = hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1149
		     prop = Logic.rule_of(tpairs, Bs@[newBi], C)}))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1150
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1151
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1152
(*** Preservation of bound variable names ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1153
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1154
(*Scan a pair of terms; while they are similar,
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1155
  accumulate corresponding bound vars in "al"*)
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1156
fun match_bvs(Abs(x,_,s),Abs(y,_,t), al) =
1195
686e3eb613b9 match_bvs no longer puts a name in the alist if it is null ("")
lcp
parents: 1160
diff changeset
  1157
      match_bvs(s, t, if x="" orelse y="" then al
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1158
                                          else (x,y)::al)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1159
  | match_bvs(f$s, g$t, al) = match_bvs(f,g,match_bvs(s,t,al))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1160
  | match_bvs(_,_,al) = al;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1161
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1162
(* strip abstractions created by parameters *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1163
fun match_bvars((s,t),al) = match_bvs(strip_abs_body s, strip_abs_body t, al);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1164
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1165
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1166
(* strip_apply f A(,B) strips off all assumptions/parameters from A
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1167
   introduced by lifting over B, and applies f to remaining part of A*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1168
fun strip_apply f =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1169
  let fun strip(Const("==>",_)$ A1 $ B1,
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1170
                Const("==>",_)$ _  $ B2) = implies $ A1 $ strip(B1,B2)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1171
        | strip((c as Const("all",_)) $ Abs(a,T,t1),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1172
                      Const("all",_)  $ Abs(_,_,t2)) = c$Abs(a,T,strip(t1,t2))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1173
        | strip(A,_) = f A
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1174
  in strip end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1175
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1176
(*Use the alist to rename all bound variables and some unknowns in a term
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1177
  dpairs = current disagreement pairs;  tpairs = permanent ones (flexflex);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1178
  Preserves unknowns in tpairs and on lhs of dpairs. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1179
fun rename_bvs([],_,_,_) = I
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1180
  | rename_bvs(al,dpairs,tpairs,B) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1181
    let val vars = foldr add_term_vars
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1182
                        (map fst dpairs @ map fst tpairs @ map snd tpairs, [])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1183
        (*unknowns appearing elsewhere be preserved!*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1184
        val vids = map (#1 o #1 o dest_Var) vars;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1185
        fun rename(t as Var((x,i),T)) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1186
                (case assoc(al,x) of
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1569
diff changeset
  1187
                   Some(y) => if x mem_string vids orelse y mem_string vids then t
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1188
                              else Var((y,i),T)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1189
                 | None=> t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1190
          | rename(Abs(x,T,t)) =
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1569
diff changeset
  1191
              Abs(case assoc_string(al,x) of Some(y) => y | None => x,
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1192
                  T, rename t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1193
          | rename(f$t) = rename f $ rename t
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1194
          | rename(t) = t;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1195
        fun strip_ren Ai = strip_apply rename (Ai,B)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1196
    in strip_ren end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1197
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1198
(*Function to rename bounds/unknowns in the argument, lifted over B*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1199
fun rename_bvars(dpairs, tpairs, B) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1200
        rename_bvs(foldr match_bvars (dpairs,[]), dpairs, tpairs, B);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1201
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1202
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1203
(*** RESOLUTION ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1204
721
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1205
(** Lifting optimizations **)
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1206
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1207
(*strip off pairs of assumptions/parameters in parallel -- they are
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1208
  identical because of lifting*)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1209
fun strip_assums2 (Const("==>", _) $ _ $ B1,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1210
                   Const("==>", _) $ _ $ B2) = strip_assums2 (B1,B2)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1211
  | strip_assums2 (Const("all",_)$Abs(a,T,t1),
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1212
                   Const("all",_)$Abs(_,_,t2)) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1213
      let val (B1,B2) = strip_assums2 (t1,t2)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1214
      in  (Abs(a,T,B1), Abs(a,T,B2))  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1215
  | strip_assums2 BB = BB;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1216
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1217
721
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1218
(*Faster normalization: skip assumptions that were lifted over*)
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1219
fun norm_term_skip env 0 t = Envir.norm_term env t
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1220
  | norm_term_skip env n (Const("all",_)$Abs(a,T,t)) =
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1221
        let val Envir.Envir{iTs, ...} = env
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1222
            val T' = typ_subst_TVars iTs T
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1223
            (*Must instantiate types of parameters because they are flattened;
721
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1224
              this could be a NEW parameter*)
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1225
        in  all T' $ Abs(a, T', norm_term_skip env n t)  end
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1226
  | norm_term_skip env n (Const("==>", _) $ A $ B) =
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1227
        implies $ A $ norm_term_skip env (n-1) B
721
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1228
  | norm_term_skip env n t = error"norm_term_skip: too few assumptions??";
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1229
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1230
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1231
(*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
  1232
  Unifies B with Bi, replacing subgoal i    (1 <= i <= n)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1233
  If match then forbid instantiations in proof state
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1234
  If lifted then shorten the dpair using strip_assums2.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1235
  If eres_flg then simultaneously proves A1 by assumption.
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1236
  nsubgoal is the number of new subgoals (written m above).
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1237
  Curried so that resolution calls dest_state only once.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1238
*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1239
local open Sequence; exception COMPOSE
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1240
in
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1241
fun bicompose_aux match (state, (stpairs, Bs, Bi, C), lifted)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1242
                        (eres_flg, orule, nsubgoal) =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1243
 let val Thm{der=sder, maxidx=smax, shyps=sshyps, hyps=shyps, ...} = state
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1244
     and Thm{der=rder, maxidx=rmax, shyps=rshyps, hyps=rhyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1245
	     prop=rprop,...} = orule
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1246
         (*How many hyps to skip over during normalization*)
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1247
     and nlift = Logic.count_prems(strip_all_body Bi,
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1248
                                   if eres_flg then ~1 else 0)
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
  1249
     val sign = merge_thm_sgs(state,orule);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1250
     (** Add new theorem with prop = '[| Bs; As |] ==> C' to thq **)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1251
     fun addth As ((env as Envir.Envir {maxidx, ...}, tpairs), thq) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1252
       let val normt = Envir.norm_term env;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1253
           (*perform minimal copying here by examining env*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1254
           val normp =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1255
             if Envir.is_empty env then (tpairs, Bs @ As, C)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1256
             else
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1257
             let val ntps = map (pairself normt) tpairs
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1258
             in if the (Envir.minidx env) > smax then
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1259
                  (*no assignments in state; normalize the rule only*)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1260
                  if lifted
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1261
                  then (ntps, Bs @ map (norm_term_skip env nlift) As, C)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1262
                  else (ntps, Bs @ map normt As, C)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1263
                else if match then raise COMPOSE
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1264
                else (*normalize the new rule fully*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1265
                  (ntps, map normt (Bs @ As), normt C)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1266
             end
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1267
           val th = (*tuned fix_shyps*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1268
             Thm{sign = sign,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1269
		 der = infer_derivs (Bicompose(match, eres_flg,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1270
					       1 + length Bs, nsubgoal, env),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1271
				     [rder,sder]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1272
		 maxidx = maxidx,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1273
		 shyps = add_env_sorts (env, rshyps union sshyps),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1274
		 hyps = rhyps union shyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1275
		 prop = Logic.rule_of normp}
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1276
        in  cons(th, thq)  end  handle COMPOSE => thq
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1277
     val (rtpairs,rhorn) = Logic.strip_flexpairs(rprop);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1278
     val (rAs,B) = Logic.strip_prems(nsubgoal, [], rhorn)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1279
       handle TERM _ => raise THM("bicompose: rule", 0, [orule,state]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1280
     (*Modify assumptions, deleting n-th if n>0 for e-resolution*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1281
     fun newAs(As0, n, dpairs, tpairs) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1282
       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
  1283
                     else map (rename_bvars(dpairs,tpairs,B)) As0
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1284
       in (map (Logic.flatten_params n) As1)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1285
          handle TERM _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1286
          raise THM("bicompose: 1st premise", 0, [orule])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1287
       end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1288
     val env = Envir.empty(max[rmax,smax]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1289
     val BBi = if lifted then strip_assums2(B,Bi) else (B,Bi);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1290
     val dpairs = BBi :: (rtpairs@stpairs);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1291
     (*elim-resolution: try each assumption in turn.  Initially n=1*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1292
     fun tryasms (_, _, []) = null
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1293
       | tryasms (As, n, (t,u)::apairs) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1294
          (case pull(Unify.unifiers(sign, env, (t,u)::dpairs))  of
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1295
               None                   => tryasms (As, n+1, apairs)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1296
             | cell as Some((_,tpairs),_) =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1297
                   its_right (addth (newAs(As, n, [BBi,(u,t)], tpairs)))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1298
                       (seqof (fn()=> cell),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1299
                        seqof (fn()=> pull (tryasms (As, n+1, apairs)))));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1300
     fun eres [] = raise THM("bicompose: no premises", 0, [orule,state])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1301
       | eres (A1::As) = tryasms (As, 1, Logic.assum_pairs A1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1302
     (*ordinary resolution*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1303
     fun res(None) = null
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1304
       | res(cell as Some((_,tpairs),_)) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1305
             its_right (addth(newAs(rev rAs, 0, [BBi], tpairs)))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1306
                       (seqof (fn()=> cell), null)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1307
 in  if eres_flg then eres(rev rAs)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1308
     else res(pull(Unify.unifiers(sign, env, dpairs)))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1309
 end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1310
end;  (*open Sequence*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1311
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1312
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1313
fun bicompose match arg i state =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1314
    bicompose_aux match (state, dest_state(state,i), false) arg;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1315
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1316
(*Quick test whether rule is resolvable with the subgoal with hyps Hs
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1317
  and conclusion B.  If eres_flg then checks 1st premise of rule also*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1318
fun could_bires (Hs, B, eres_flg, rule) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1319
    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
  1320
          | could_reshyp [] = false;  (*no premise -- illegal*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1321
    in  could_unify(concl_of rule, B) andalso
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1322
        (not eres_flg  orelse  could_reshyp (prems_of rule))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1323
    end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1324
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1325
(*Bi-resolution of a state with a list of (flag,rule) pairs.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1326
  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
  1327
fun biresolution match brules i state =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1328
    let val lift = lift_rule(state, i);
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1329
        val (stpairs, Bs, Bi, C) = dest_state(state,i)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1330
        val B = Logic.strip_assums_concl Bi;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1331
        val Hs = Logic.strip_assums_hyp Bi;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1332
        val comp = bicompose_aux match (state, (stpairs, Bs, Bi, C), true);
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1333
        fun res [] = Sequence.null
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1334
          | res ((eres_flg, rule)::brules) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1335
              if could_bires (Hs, B, eres_flg, rule)
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
  1336
              then Sequence.seqof (*delay processing remainder till needed*)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1337
                  (fn()=> Some(comp (eres_flg, lift rule, nprems_of rule),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1338
                               res brules))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1339
              else res brules
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1340
    in  Sequence.flats (res brules)  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1341
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1342
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1343
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1344
(*** Meta simp sets ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1345
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1346
type rrule = {thm:thm, lhs:term, perm:bool};
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1347
type cong = {thm:thm, lhs:term};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1348
datatype meta_simpset =
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1349
  Mss of {net:rrule Net.net, congs:(string * cong)list, bounds:string list,
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1350
          prems: thm list, mk_rews: thm -> thm list};
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1351
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1352
(*A "mss" contains data needed during conversion:
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1353
  net: discrimination net of rewrite rules
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1354
  congs: association list of congruence rules
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1355
  bounds: names of bound variables already used;
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1356
          for generating new names when rewriting under lambda abstractions
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1357
  mk_rews: used when local assumptions are added
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1358
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1359
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1360
val empty_mss = Mss{net = Net.empty, congs = [], bounds=[], prems = [],
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1361
                    mk_rews = K[]};
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1362
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1363
exception SIMPLIFIER of string * thm;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1364
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
  1365
fun prtm a sign t = (writeln a; writeln(Sign.string_of_term sign t));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1366
1580
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1367
fun prtm_warning a sign t = warning (a ^ "\n" ^ (Sign.string_of_term sign t));
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1368
209
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
  1369
val trace_simp = ref false;
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
  1370
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
  1371
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
  1372
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
  1373
fun trace_thm a (Thm{sign,prop,...}) = trace_term a sign prop;
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
  1374
1580
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1375
fun trace_term_warning a sign t = if !trace_simp then prtm_warning a sign t else ();
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1376
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1377
fun trace_thm_warning a (Thm{sign,prop,...}) = trace_term_warning a sign prop;
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1378
427
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1379
fun vperm(Var _, Var _) = true
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1380
  | vperm(Abs(_,_,s), Abs(_,_,t)) = vperm(s,t)
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1381
  | vperm(t1$t2, u1$u2) = vperm(t1,u1) andalso vperm(t2,u2)
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1382
  | vperm(t,u) = (t=u);
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1383
427
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1384
fun var_perm(t,u) = vperm(t,u) andalso
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1385
                    eq_set(add_term_vars(t,[]), add_term_vars(u,[]))
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1386
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1387
(*simple test for looping rewrite*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1388
fun loops sign prems (lhs,rhs) =
1023
f5f36bdc8003 Fixed bug in the simplifier: added uses of maxidx_of_term to make sure that
nipkow
parents: 979
diff changeset
  1389
   is_Var(lhs)
f5f36bdc8003 Fixed bug in the simplifier: added uses of maxidx_of_term to make sure that
nipkow
parents: 979
diff changeset
  1390
  orelse
f5f36bdc8003 Fixed bug in the simplifier: added uses of maxidx_of_term to make sure that
nipkow
parents: 979
diff changeset
  1391
   (exists (apl(lhs, Logic.occs)) (rhs::prems))
f5f36bdc8003 Fixed bug in the simplifier: added uses of maxidx_of_term to make sure that
nipkow
parents: 979
diff changeset
  1392
  orelse
f5f36bdc8003 Fixed bug in the simplifier: added uses of maxidx_of_term to make sure that
nipkow
parents: 979
diff changeset
  1393
   (null(prems) andalso
f5f36bdc8003 Fixed bug in the simplifier: added uses of maxidx_of_term to make sure that
nipkow
parents: 979
diff changeset
  1394
    Pattern.matches (#tsig(Sign.rep_sg sign)) (lhs,rhs));
1028
88c8df00905b Added comment to function "loops".
nipkow
parents: 1023
diff changeset
  1395
(* the condition "null(prems)" in the last case is necessary because
88c8df00905b Added comment to function "loops".
nipkow
parents: 1023
diff changeset
  1396
   conditional rewrites with extra variables in the conditions may terminate
88c8df00905b Added comment to function "loops".
nipkow
parents: 1023
diff changeset
  1397
   although the rhs is an instance of the lhs. Example:
88c8df00905b Added comment to function "loops".
nipkow
parents: 1023
diff changeset
  1398
   ?m < ?n ==> f(?n) == f(?m)
88c8df00905b Added comment to function "loops".
nipkow
parents: 1023
diff changeset
  1399
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1400
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1401
fun mk_rrule raw_thm =
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1402
  let
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1403
      val thm = strip_shyps raw_thm;
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1404
      val Thm{sign,prop,maxidx,...} = thm;
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1405
      val prems = Logic.strip_imp_prems prop
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1406
      val concl = Logic.strip_imp_concl prop
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1407
      val (lhs,_) = Logic.dest_equals concl handle TERM _ =>
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1408
                      raise SIMPLIFIER("Rewrite rule not a meta-equality",thm)
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1409
      val econcl = Pattern.eta_contract concl
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1410
      val (elhs,erhs) = Logic.dest_equals econcl
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1411
      val perm = var_perm(elhs,erhs) andalso not(elhs aconv erhs)
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1412
                                     andalso not(is_Var(elhs))
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1413
  in
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1414
     if not perm andalso loops sign prems (elhs,erhs) then
1580
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1415
       (prtm_warning "ignoring looping rewrite rule" sign prop; None)
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1416
     else Some{thm=thm,lhs=lhs,perm=perm}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1417
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1418
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1419
local
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1420
 fun eq({thm=Thm{prop=p1,...},...}:rrule,
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1421
        {thm=Thm{prop=p2,...},...}:rrule) = p1 aconv p2
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1422
in
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1423
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1424
fun add_simp(mss as Mss{net,congs,bounds,prems,mk_rews},
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1425
             thm as Thm{sign,prop,...}) =
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1426
  case mk_rrule thm of
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1427
    None => mss
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1428
  | Some(rrule as {lhs,...}) =>
209
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
  1429
      (trace_thm "Adding rewrite rule:" thm;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1430
       Mss{net = (Net.insert_term((lhs,rrule),net,eq)
209
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
  1431
                 handle Net.INSERT =>
1580
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1432
                  (prtm_warning "ignoring duplicate rewrite rule" sign prop;
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1433
                   net)),
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1434
           congs=congs, bounds=bounds, prems=prems,mk_rews=mk_rews});
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1435
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1436
fun del_simp(mss as Mss{net,congs,bounds,prems,mk_rews},
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1437
             thm as Thm{sign,prop,...}) =
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1438
  case mk_rrule thm of
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1439
    None => mss
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1440
  | Some(rrule as {lhs,...}) =>
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1441
      Mss{net = (Net.delete_term((lhs,rrule),net,eq)
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1442
                handle Net.INSERT =>
1580
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1443
                 (prtm_warning "rewrite rule not in simpset" sign prop;
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1444
                  net)),
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1445
             congs=congs, bounds=bounds, prems=prems,mk_rews=mk_rews}
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1446
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1447
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1448
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1449
val add_simps = foldl add_simp;
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1450
val del_simps = foldl del_simp;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1451
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1452
fun mss_of thms = add_simps(empty_mss,thms);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1453
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1454
fun add_cong(Mss{net,congs,bounds,prems,mk_rews},thm) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1455
  let val (lhs,_) = Logic.dest_equals(concl_of thm) handle TERM _ =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1456
                    raise SIMPLIFIER("Congruence not a meta-equality",thm)
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1457
(*      val lhs = Pattern.eta_contract lhs*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1458
      val (a,_) = dest_Const (head_of lhs) handle TERM _ =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1459
                  raise SIMPLIFIER("Congruence must start with a constant",thm)
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1460
  in Mss{net=net, congs=(a,{lhs=lhs,thm=thm})::congs, bounds=bounds,
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1461
         prems=prems, mk_rews=mk_rews}
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1462
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1463
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1464
val (op add_congs) = foldl add_cong;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1465
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1466
fun add_prems(Mss{net,congs,bounds,prems,mk_rews},thms) =
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1467
  Mss{net=net, congs=congs, bounds=bounds, prems=thms@prems, mk_rews=mk_rews};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1468
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1469
fun prems_of_mss(Mss{prems,...}) = prems;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1470
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1471
fun set_mk_rews(Mss{net,congs,bounds,prems,...},mk_rews) =
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1472
  Mss{net=net, congs=congs, bounds=bounds, prems=prems, mk_rews=mk_rews};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1473
fun mk_rews_of_mss(Mss{mk_rews,...}) = mk_rews;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1474
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1475
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1476
(*** Meta-level rewriting
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1477
     uses conversions, omitting proofs for efficiency.  See
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1478
        L C Paulson, A higher-order implementation of rewriting,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1479
        Science of Computer Programming 3 (1983), pages 119-149. ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1480
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1481
type prover = meta_simpset -> thm -> thm option;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1482
type termrec = (Sign.sg * term list) * term;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1483
type conv = meta_simpset -> termrec -> termrec;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1484
305
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1485
datatype order = LESS | EQUAL | GREATER;
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1486
305
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1487
fun stringord(a,b:string) = if a<b then LESS  else
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1488
                            if a=b then EQUAL else GREATER;
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1489
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1490
fun intord(i,j:int) = if i<j then LESS  else
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1491
                      if i=j then EQUAL else GREATER;
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1492
427
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1493
(* NB: non-linearity of the ordering is not a soundness problem *)
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1494
305
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1495
(* FIXME: "***ABSTRACTION***" is a hack and makes the ordering non-linear *)
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1496
fun string_of_hd(Const(a,_)) = a
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1497
  | string_of_hd(Free(a,_))  = a
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1498
  | string_of_hd(Var(v,_))   = Syntax.string_of_vname v
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1499
  | string_of_hd(Bound i)    = string_of_int i
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1500
  | string_of_hd(Abs _)      = "***ABSTRACTION***";
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1501
305
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1502
(* a strict (not reflexive) linear well-founded AC-compatible ordering
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1503
 * for terms:
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1504
 * s < t <=> 1. size(s) < size(t) or
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1505
             2. size(s) = size(t) and s=f(...) and t = g(...) and f<g or
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1506
             3. size(s) = size(t) and s=f(s1..sn) and t=f(t1..tn) and
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1507
                (s1..sn) < (t1..tn) (lexicographically)
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1508
 *)
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1509
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1510
(* FIXME: should really take types into account as well.
427
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1511
 * Otherwise non-linear *)
622
bf9821f58781 Modified termord to take account of the Abs-Abs case.
nipkow
parents: 574
diff changeset
  1512
fun termord(Abs(_,_,t),Abs(_,_,u)) = termord(t,u)
bf9821f58781 Modified termord to take account of the Abs-Abs case.
nipkow
parents: 574
diff changeset
  1513
  | termord(t,u) =
305
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1514
      (case intord(size_of_term t,size_of_term u) of
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1515
         EQUAL => let val (f,ts) = strip_comb t and (g,us) = strip_comb u
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1516
                  in case stringord(string_of_hd f, string_of_hd g) of
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1517
                       EQUAL => lextermord(ts,us)
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1518
                     | ord   => ord
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1519
                  end
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1520
       | ord => ord)
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1521
and lextermord(t::ts,u::us) =
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1522
      (case termord(t,u) of
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1523
         EQUAL => lextermord(ts,us)
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1524
       | ord   => ord)
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1525
  | lextermord([],[]) = EQUAL
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1526
  | lextermord _ = error("lextermord");
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1527
305
4c2bbb5de471 Changed term ordering for permutative rewrites to be AC-compatible.
nipkow
parents: 288
diff changeset
  1528
fun termless tu = (termord tu = LESS);
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1529
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1530
fun check_conv (thm as Thm{shyps,hyps,prop,sign,der,maxidx,...}, prop0, ders) =
432
0d1071ac599c Improved error msg "Proved wrong thm"
nipkow
parents: 427
diff changeset
  1531
  let fun err() = (trace_thm "Proved wrong thm (Check subgoaler?)" thm;
0d1071ac599c Improved error msg "Proved wrong thm"
nipkow
parents: 427
diff changeset
  1532
                   trace_term "Should have proved" sign prop0;
0d1071ac599c Improved error msg "Proved wrong thm"
nipkow
parents: 427
diff changeset
  1533
                   None)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1534
      val (lhs0,_) = Logic.dest_equals(Logic.strip_imp_concl prop0)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1535
  in case prop of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1536
       Const("==",_) $ lhs $ rhs =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1537
         if (lhs = lhs0) orelse
427
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1538
            (lhs aconv Envir.norm_term (Envir.empty 0) lhs0)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1539
         then (trace_thm "SUCCEEDED" thm; 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1540
	       Some(shyps, hyps, maxidx, rhs, der::ders))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1541
         else err()
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1542
     | _ => err()
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1543
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1544
659
95ed2ccb4438 Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents: 623
diff changeset
  1545
fun ren_inst(insts,prop,pat,obj) =
95ed2ccb4438 Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents: 623
diff changeset
  1546
  let val ren = match_bvs(pat,obj,[])
95ed2ccb4438 Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents: 623
diff changeset
  1547
      fun renAbs(Abs(x,T,b)) =
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1569
diff changeset
  1548
            Abs(case assoc_string(ren,x) of None => x | Some(y) => y, T, renAbs(b))
659
95ed2ccb4438 Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents: 623
diff changeset
  1549
        | renAbs(f$t) = renAbs(f) $ renAbs(t)
95ed2ccb4438 Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents: 623
diff changeset
  1550
        | renAbs(t) = t
95ed2ccb4438 Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents: 623
diff changeset
  1551
  in subst_vars insts (if null(ren) then prop else renAbs(prop)) end;
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1552
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1553
fun add_insts_sorts ((iTs, is), Ss) =
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1554
  add_typs_sorts (map snd iTs, add_terms_sorts (map snd is, Ss));
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1555
659
95ed2ccb4438 Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents: 623
diff changeset
  1556
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1557
(*Conversion to apply the meta simpset to a term*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1558
fun rewritec (prover,signt) (mss as Mss{net,...}) 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1559
             (shypst,hypst,maxidxt,t,ders) =
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1560
  let val etat = Pattern.eta_contract t;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1561
      fun rew {thm as Thm{sign,der,maxidx,shyps,hyps,prop,...}, lhs, perm} =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1562
        let val unit = if Sign.subsig(sign,signt) then ()
1580
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1563
                  else (trace_thm_warning "rewrite rule from different theory"
446
3ee5c9314efe rewritec now uses trace_thm for it's "rewrite rule from different theory"
clasohm
parents: 432
diff changeset
  1564
                          thm;
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1565
                        raise Pattern.MATCH)
1065
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1566
            val rprop = if maxidxt = ~1 then prop
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1567
                        else Logic.incr_indexes([],maxidxt+1) prop;
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1568
            val rlhs = if maxidxt = ~1 then lhs
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1569
                       else fst(Logic.dest_equals(Logic.strip_imp_concl rprop))
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1570
            val insts = Pattern.match (#tsig(Sign.rep_sg signt)) (rlhs,etat)
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1571
            val prop' = ren_inst(insts,rprop,rlhs,t);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1572
            val hyps' = hyps union hypst;
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1573
            val shyps' = add_insts_sorts (insts, shyps union shypst);
1065
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1574
            val maxidx' = maxidx_of_term prop'
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1575
            val ct' = Cterm{sign = signt,	(*used for deriv only*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1576
			    t = prop',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1577
			    T = propT,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1578
			    maxidx = maxidx'}
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1579
	    val der' = infer_derivs (RewriteC ct', [der])
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1580
            val thm' = Thm{sign = signt, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1581
			   der = der',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1582
			   shyps = shyps',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1583
			   hyps = hyps',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1584
                           prop = prop',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1585
			   maxidx = maxidx'}
427
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1586
            val (lhs',rhs') = Logic.dest_equals(Logic.strip_imp_concl prop')
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1587
        in if perm andalso not(termless(rhs',lhs')) then None else
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1588
           if Logic.count_prems(prop',0) = 0
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1589
           then (trace_thm "Rewriting:" thm'; 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1590
		 Some(shyps', hyps', maxidx', rhs', der'::ders))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1591
           else (trace_thm "Trying to rewrite:" thm';
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1592
                 case prover mss thm' of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1593
                   None       => (trace_thm "FAILED" thm'; None)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1594
                 | Some(thm2) => check_conv(thm2,prop',ders))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1595
        end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1596
225
76f60e6400e8 optimized net for matching of abstractions to speed up simplifier
nipkow
parents: 222
diff changeset
  1597
      fun rews [] = None
76f60e6400e8 optimized net for matching of abstractions to speed up simplifier
nipkow
parents: 222
diff changeset
  1598
        | rews (rrule::rrules) =
76f60e6400e8 optimized net for matching of abstractions to speed up simplifier
nipkow
parents: 222
diff changeset
  1599
            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
  1600
            in case opt of None => rews rrules | some => some end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1601
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1602
  in case etat of
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1603
       Abs(_,_,body) $ u => Some(shypst, hypst, maxidxt, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1604
				 subst_bounds([u], body),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1605
				 ders)
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 659
diff changeset
  1606
     | _                 => rews(Net.match_term net etat)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1607
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1608
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1609
(*Conversion to apply a congruence rule to a term*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1610
fun congc (prover,signt) {thm=cong,lhs=lhs} (shypst,hypst,maxidxt,t,ders) =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1611
  let val Thm{sign,der,shyps,hyps,maxidx,prop,...} = cong
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1612
      val unit = if Sign.subsig(sign,signt) then ()
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1613
                 else error("Congruence rule from different theory")
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  1614
      val tsig = #tsig(Sign.rep_sg signt)
1065
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1615
      val rprop = if maxidxt = ~1 then prop
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1616
                  else Logic.incr_indexes([],maxidxt+1) prop;
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1617
      val rlhs = if maxidxt = ~1 then lhs
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1618
                 else fst(Logic.dest_equals(Logic.strip_imp_concl rprop))
1569
a89f246dee0e Non-matching congruence rule in rewriter is simply ignored.
nipkow
parents: 1566
diff changeset
  1619
      val insts = Pattern.match tsig (rlhs,t)
a89f246dee0e Non-matching congruence rule in rewriter is simply ignored.
nipkow
parents: 1566
diff changeset
  1620
      (* Pattern.match can raise Pattern.MATCH;
a89f246dee0e Non-matching congruence rule in rewriter is simply ignored.
nipkow
parents: 1566
diff changeset
  1621
         is handled when congc is called *)
1065
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  1622
      val prop' = ren_inst(insts,rprop,rlhs,t);
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1623
      val shyps' = add_insts_sorts (insts, shyps union shypst)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1624
      val maxidx' = maxidx_of_term prop'
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1625
      val ct' = Cterm{sign = signt,	(*used for deriv only*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1626
		      t = prop',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1627
		      T = propT,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1628
		      maxidx = maxidx'}
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1629
      val thm' = Thm{sign = signt, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1630
		     der = infer_derivs (CongC ct', [der]),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1631
		     shyps = shyps',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1632
		     hyps = hyps union hypst,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1633
                     prop = prop',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1634
		     maxidx = maxidx'};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1635
      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
  1636
      fun err() = error("Failed congruence proof!")
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1637
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1638
  in case prover thm' of
112
009ae5c85ae9 Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents: 87
diff changeset
  1639
       None => err()
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1640
     | Some(thm2) => (case check_conv(thm2,prop',ders) of
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1641
                        None => err() | some => some)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1642
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1643
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1644
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1645
214
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
  1646
fun bottomc ((simprem,useprem),prover,sign) =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1647
 let fun botc fail mss trec =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1648
	  (case subc mss trec of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1649
	     some as Some(trec1) =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1650
	       (case rewritec (prover,sign) mss trec1 of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1651
		  Some(trec2) => botc false mss trec2
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1652
		| None => some)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1653
	   | None =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1654
	       (case rewritec (prover,sign) mss trec of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1655
		  Some(trec2) => botc false mss trec2
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1656
		| None => if fail then None else Some(trec)))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1657
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1658
     and try_botc mss trec = (case botc true mss trec of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1659
				Some(trec1) => trec1
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1660
			      | None => trec)
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1661
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1662
     and subc (mss as Mss{net,congs,bounds,prems,mk_rews})
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1663
	      (trec as (shyps,hyps,maxidx,t0,ders)) =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1664
       (case t0 of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1665
	   Abs(a,T,t) =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1666
	     let val b = variant bounds a
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1667
		 val v = Free("." ^ b,T)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1668
		 val mss' = Mss{net=net, congs=congs, bounds=b::bounds,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1669
				prems=prems,mk_rews=mk_rews}
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1670
	     in case botc true mss' 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1671
		       (shyps,hyps,maxidx,subst_bounds([v],t),ders) of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1672
		  Some(shyps',hyps',maxidx',t',ders') =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1673
		    Some(shyps', hyps', maxidx',
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1674
			 Abs(a, T, abstract_over(v,t')),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1675
			 ders')
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1676
		| None => None
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1677
	     end
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1678
	 | t$u => (case t of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1679
	     Const("==>",_)$s  => Some(impc(shyps,hyps,maxidx,s,u,mss,ders))
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1680
	   | Abs(_,_,body) =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1681
	       let val trec = (shyps,hyps,maxidx,subst_bounds([u],body),ders)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1682
	       in case subc mss trec of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1683
		    None => Some(trec)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1684
		  | trec => trec
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1685
	       end
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1686
	   | _  =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1687
	       let fun appc() =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1688
		     (case botc true mss (shyps,hyps,maxidx,t,ders) of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1689
			Some(shyps1,hyps1,maxidx1,t1,ders1) =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1690
			  (case botc true mss (shyps1,hyps1,maxidx,u,ders1) of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1691
			     Some(shyps2,hyps2,maxidx2,u1,ders2) =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1692
			       Some(shyps2, hyps2, max[maxidx1,maxidx2],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1693
				    t1$u1, ders2)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1694
			   | None =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1695
			       Some(shyps1, hyps1, max[maxidx1,maxidx], t1$u,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1696
				    ders1))
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1697
		      | None =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1698
			  (case botc true mss (shyps,hyps,maxidx,u,ders) of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1699
			     Some(shyps1,hyps1,maxidx1,u1,ders1) =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1700
			       Some(shyps1, hyps1, max[maxidx,maxidx1], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1701
				    t$u1, ders1)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1702
			   | None => None))
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1703
		   val (h,ts) = strip_comb t
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1704
	       in case h of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1705
		    Const(a,_) =>
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1569
diff changeset
  1706
		      (case assoc_string(congs,a) of
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1707
			 None => appc()
1569
a89f246dee0e Non-matching congruence rule in rewriter is simply ignored.
nipkow
parents: 1566
diff changeset
  1708
		       | Some(cong) => (congc (prover mss,sign) cong trec
a89f246dee0e Non-matching congruence rule in rewriter is simply ignored.
nipkow
parents: 1566
diff changeset
  1709
                                        handle Pattern.MATCH => appc() ) )
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1710
		  | _ => appc()
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1711
	       end)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1712
	 | _ => None)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1713
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1714
     and impc(shyps, hyps, maxidx, s, u, mss as Mss{mk_rews,...}, ders) =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1715
       let val (shyps1,hyps1,_,s1,ders1) =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1716
	     if simprem then try_botc mss (shyps,hyps,maxidx,s,ders)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1717
	                else (shyps,hyps,0,s,ders);
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1718
	   val maxidx1 = maxidx_of_term s1
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1719
	   val mss1 =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1720
	     if not useprem orelse maxidx1 <> ~1 then mss
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1721
	     else let val thm = assume (Cterm{sign=sign, t=s1, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1722
					      T=propT, maxidx=maxidx1})
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1723
		  in add_simps(add_prems(mss,[thm]), mk_rews thm) end
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1724
	   val (shyps2,hyps2,maxidx2,u1,ders2) = 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1725
	       try_botc mss1 (shyps1,hyps1,maxidx,u,ders1)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1726
	   val hyps3 = if s1 mem hyps1 then hyps2 else hyps2\s1
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1727
       in (shyps2, hyps3, max[maxidx1,maxidx2], 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1728
	   Logic.mk_implies(s1,u1), ders2) 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1729
       end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1730
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1731
 in try_botc end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1732
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1733
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1734
(*** Meta-rewriting: rewrites t to u and returns the theorem t==u ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1735
(* Parameters:
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1736
   mode = (simplify A, use A in simplifying B) when simplifying A ==> B
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1737
   mss: contains equality theorems of the form [|p1,...|] ==> t==u
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1738
   prover: how to solve premises in conditional rewrites and congruences
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1739
*)
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  1740
(*** FIXME: check that #bounds(mss) does not "occur" in ct alread ***)
214
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
  1741
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
  1742
  let val {sign, t, T, maxidx} = rep_cterm ct;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1743
      val (shyps,hyps,maxidxu,u,ders) =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1744
        bottomc (mode,prover,sign) mss 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1745
	        (add_term_sorts(t,[]), [], maxidx, t, []);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1746
      val prop = Logic.mk_equals(t,u)
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1747
  in
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1748
      Thm{sign = sign, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1749
	  der = infer_derivs (Rewrite_cterm ct, ders),
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1750
	  maxidx = max[maxidx,maxidxu],
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1751
	  shyps = shyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1752
	  hyps = hyps, 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1753
          prop = prop}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1754
  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1755
1539
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1756
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1757
fun invoke_oracle (thy, sign, exn) =
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1758
    case #oraopt(rep_theory thy) of
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1759
	None => raise THM ("No oracle in supplied theory", 0, [])
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1760
      | Some oracle => 
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1761
	    let val sign' = Sign.merge(sign_of thy, sign)
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1762
		val (prop, T, maxidx) = 
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1763
		    Sign.certify_term sign' (oracle (sign', exn))
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1764
            in if T<>propT then
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1765
                  raise THM("Oracle's result must have type prop", 0, [])
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1766
	       else fix_shyps [] []
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1767
		     (Thm {sign = sign', 
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
  1768
			   der = Join (Oracle(thy,sign,exn), []),
1539
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1769
			   maxidx = maxidx,
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1770
			   shyps = [], 
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1771
			   hyps = [], 
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1772
			   prop = prop})
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1773
            end;
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  1774
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1775
end;
1503
7dba648ee25c Elimination of fully-functorial style.
paulson
parents: 1495
diff changeset
  1776
7dba648ee25c Elimination of fully-functorial style.
paulson
parents: 1495
diff changeset
  1777
open Thm;