src/Pure/thm.ML
author oheimb
Wed, 27 Oct 1999 11:13:25 +0200
changeset 7943 e31a3c0c2c1e
parent 7921 56a84b4d04b1
child 8066 54d37e491ac2
permissions -rw-r--r--
now more than 256 generated bound variables possible
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
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
    10
signature BASIC_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
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
    22
  val rep_cterm         : cterm -> {sign: Sign.sg, t: term, T: typ, maxidx: int}
4288
3f5e8c4aa84d added crep_cterm;
wenzelm
parents: 4281
diff changeset
    23
  val crep_cterm        : cterm -> {sign: Sign.sg, t: term, T: ctyp, 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
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    26
  val ctyp_of_term      : cterm -> ctyp
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    27
  val read_cterm        : Sign.sg -> string * typ -> cterm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    28
  val cterm_fun         : (term -> term) -> (cterm -> cterm)
1493
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
    29
  val dest_comb         : cterm -> cterm * cterm
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
    30
  val dest_abs          : cterm -> cterm * cterm
1703
e22ad43bab5f moved dest_cimplies to drule.ML; added adjust_maxidx
clasohm
parents: 1659
diff changeset
    31
  val adjust_maxidx     : 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
4281
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
    37
  val read_def_cterms   :
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
    38
    Sign.sg * (indexname -> typ option) * (indexname -> sort option) ->
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
    39
    string list -> bool -> (string * typ)list
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
    40
    -> cterm list * (indexname * typ)list
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    41
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    42
  (*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
    43
  datatype deriv_kind = MinDeriv | ThmDeriv | FullDeriv;
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
    44
  type tag		(* = string * string list *)
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
    45
  val keep_derivs       : deriv_kind ref
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    46
  datatype rule = 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
    47
      MinProof                          
4999
4c74267cfa0c Object.T;
wenzelm
parents: 4847
diff changeset
    48
    | Oracle		  of string * Sign.sg * Object.T
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
    49
    | Axiom               of string * tag list
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
    50
    | Theorem             of string * tag list
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    51
    | Assume              of cterm
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    52
    | Implies_intr        of cterm
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    53
    | Implies_intr_hyps
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    54
    | Implies_elim 
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    55
    | Forall_intr         of cterm
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    56
    | Forall_elim         of cterm
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    57
    | Reflexive           of cterm
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    58
    | Symmetric 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    59
    | Transitive
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    60
    | Beta_conversion     of cterm
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    61
    | Extensional
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    62
    | Abstract_rule       of string * cterm
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    63
    | Combination
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    64
    | Equal_intr
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    65
    | Equal_elim
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    66
    | Trivial             of cterm
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    67
    | Lift_rule           of cterm * int 
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    68
    | Assumption          of int * Envir.env option
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    69
    | Rotate_rule         of int * int
7248
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
    70
    | Permute_prems       of int * int
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    71
    | Instantiate         of (indexname * ctyp) list * (cterm * cterm) list
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    72
    | Bicompose           of bool * bool * int * int * Envir.env
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    73
    | Flexflex_rule       of Envir.env            
4182
47067b5db7ef deriv: eliminated references to theory;
wenzelm
parents: 4124
diff changeset
    74
    | Class_triv          of class       
6786
0af1797d5315 varifyT': observe additional 'fixed' tfrees;
wenzelm
parents: 6539
diff changeset
    75
    | VarifyT		  of string list
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    76
    | FreezeT
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    77
    | RewriteC            of cterm
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    78
    | CongC               of cterm
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    79
    | Rewrite_cterm       of cterm
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
    80
    | Rename_params_rule  of string list * int;
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
    81
  type deriv	(* = rule mtree *)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    82
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    83
  (*meta theorems*)
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
    84
  type thm
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    85
  val rep_thm           : thm -> {sign: Sign.sg, der: deriv, maxidx: int,
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
    86
                                  shyps: sort list, hyps: term list, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
    87
                                  prop: term}
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
    88
  val crep_thm          : thm -> {sign: Sign.sg, der: deriv, maxidx: int,
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
    89
                                  shyps: sort list, hyps: cterm list, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
    90
                                  prop: cterm}
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
    91
  exception THM of string * int * thm list
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
    92
  type 'a attribute 	(* = 'a * thm -> 'a * thm *)
3994
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
    93
  val eq_thm		: thm * thm -> bool
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
    94
  val sign_of_thm       : thm -> Sign.sg
4254
8ae7ace96c39 added transfer_sg;
wenzelm
parents: 4251
diff changeset
    95
  val transfer_sg	: Sign.sg -> thm -> thm
3895
b2463861c86a added transfer: theory -> thm -> thm;
wenzelm
parents: 3893
diff changeset
    96
  val transfer		: theory -> thm -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    97
  val tpairs_of         : thm -> (term * term) list
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    98
  val prems_of          : thm -> term list
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
    99
  val nprems_of         : thm -> int
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   100
  val concl_of          : thm -> term
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   101
  val cprop_of          : thm -> cterm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   102
  val extra_shyps       : thm -> sort list
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   103
  val strip_shyps       : thm -> thm
3812
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
   104
  val get_axiom         : theory -> xstring -> thm
6368
ba5e97a20b12 added def_name;
wenzelm
parents: 6089
diff changeset
   105
  val def_name		: string -> string
4847
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   106
  val get_def           : theory -> xstring -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   107
  val axioms_of         : theory -> (string * thm) list
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   108
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   109
  (*meta rules*)
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   110
  val assume            : cterm -> thm
1416
f59857e32972 Commented the datatype declaration of thm.
paulson
parents: 1394
diff changeset
   111
  val compress          : thm -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   112
  val implies_intr      : cterm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   113
  val implies_elim      : thm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   114
  val forall_intr       : cterm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   115
  val forall_elim       : cterm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   116
  val reflexive         : cterm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   117
  val symmetric         : thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   118
  val transitive        : thm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   119
  val beta_conversion   : cterm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   120
  val extensional       : thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   121
  val abstract_rule     : string -> cterm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   122
  val combination       : thm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   123
  val equal_intr        : thm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   124
  val equal_elim        : thm -> thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   125
  val implies_intr_hyps : thm -> thm
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
   126
  val flexflex_rule     : thm -> thm Seq.seq
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   127
  val instantiate       :
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   128
    (indexname * ctyp) list * (cterm * cterm) list -> thm -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   129
  val trivial           : cterm -> thm
6368
ba5e97a20b12 added def_name;
wenzelm
parents: 6089
diff changeset
   130
  val class_triv        : Sign.sg -> class -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   131
  val varifyT           : thm -> thm
6786
0af1797d5315 varifyT': observe additional 'fixed' tfrees;
wenzelm
parents: 6539
diff changeset
   132
  val varifyT'          : string list -> thm -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   133
  val freezeT           : thm -> thm
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   134
  val dest_state        : thm * int ->
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   135
    (term * term) list * term list * term * term
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   136
  val lift_rule         : (thm * int) -> thm -> thm
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
   137
  val assumption        : int -> thm -> thm Seq.seq
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   138
  val eq_assumption     : int -> thm -> thm
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
   139
  val rotate_rule       : int -> int -> thm -> thm
7248
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
   140
  val permute_prems     : int -> int -> thm -> thm
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   141
  val rename_params_rule: string list * int -> thm -> thm
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   142
  val bicompose         : bool -> bool * thm * int ->
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
   143
    int -> thm -> thm Seq.seq
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   144
  val biresolution      : bool -> (bool * thm) list ->
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
   145
    int -> thm -> thm Seq.seq
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   146
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   147
  (*meta simplification*)
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
   148
  exception SIMPLIFIER of string * thm
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   149
  type meta_simpset
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
   150
  val dest_mss		: meta_simpset ->
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
   151
    {simps: thm list, congs: thm list, procs: (string * cterm list) list}
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   152
  val empty_mss         : meta_simpset
6899
020314dadebd added clear_mss;
wenzelm
parents: 6786
diff changeset
   153
  val clear_mss		: meta_simpset -> meta_simpset
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
   154
  val merge_mss		: meta_simpset * meta_simpset -> meta_simpset
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   155
  val add_simps         : meta_simpset * thm list -> meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   156
  val del_simps         : meta_simpset * thm list -> meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   157
  val mss_of            : thm list -> meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   158
  val add_congs         : meta_simpset * thm list -> meta_simpset
2626
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
   159
  val del_congs         : meta_simpset * thm list -> meta_simpset
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
   160
  val add_simprocs	: meta_simpset *
3577
9715b6e3ec5f added prems argument to simplification procedures;
wenzelm
parents: 3565
diff changeset
   161
    (string * cterm list * (Sign.sg -> thm list -> term -> thm option) * stamp) list
9715b6e3ec5f added prems argument to simplification procedures;
wenzelm
parents: 3565
diff changeset
   162
      -> meta_simpset
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
   163
  val del_simprocs	: meta_simpset *
3577
9715b6e3ec5f added prems argument to simplification procedures;
wenzelm
parents: 3565
diff changeset
   164
    (string * cterm list * (Sign.sg -> thm list -> term -> thm option) * stamp) list
9715b6e3ec5f added prems argument to simplification procedures;
wenzelm
parents: 3565
diff changeset
   165
      -> meta_simpset
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   166
  val add_prems         : meta_simpset * thm list -> meta_simpset
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   167
  val prems_of_mss      : meta_simpset -> thm list
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   168
  val set_mk_rews       : meta_simpset * (thm -> thm list) -> meta_simpset
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
   169
  val set_mk_sym        : meta_simpset * (thm -> thm option) -> meta_simpset
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
   170
  val set_mk_eq_True    : meta_simpset * (thm -> thm option) -> meta_simpset
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
   171
  val set_termless      : meta_simpset * (term * term -> bool) -> meta_simpset
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   172
  val trace_simp        : bool ref
7921
56a84b4d04b1 debug_simp;
wenzelm
parents: 7642
diff changeset
   173
  val debug_simp        : bool ref
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
   174
  val rewrite_cterm     : bool * bool * bool -> meta_simpset ->
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   175
                          (meta_simpset -> thm -> thm option) -> cterm -> thm
1539
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
   176
4999
4c74267cfa0c Object.T;
wenzelm
parents: 4847
diff changeset
   177
  val invoke_oracle     : theory -> xstring -> Sign.sg * Object.T -> thm
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   178
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   179
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   180
signature THM =
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   181
sig
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   182
  include BASIC_THM
7534
30344dde83ab added no_prems;
wenzelm
parents: 7528
diff changeset
   183
  val no_prems		: thm -> bool
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   184
  val no_attributes	: 'a -> 'a * 'b attribute list
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   185
  val apply_attributes	: ('a * thm) * 'a attribute list -> ('a * thm)
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   186
  val applys_attributes	: ('a * thm list) * 'a attribute list -> ('a * thm list)
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   187
  val get_name_tags	: thm -> string * tag list
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   188
  val put_name_tags	: string * tag list -> thm -> thm
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   189
  val name_of_thm	: thm -> string
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   190
  val tags_of_thm	: thm -> tag list
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   191
  val name_thm		: string * thm -> thm
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   192
end;
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   193
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
   194
structure Thm: THM =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   195
struct
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   196
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   197
(*** Certified terms and types ***)
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   198
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   199
(** certified types **)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   200
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   201
(*certified typs under a signature*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   202
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   203
datatype ctyp = Ctyp of {sign_ref: Sign.sg_ref, T: typ};
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   204
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   205
fun rep_ctyp (Ctyp {sign_ref, T}) = {sign = Sign.deref sign_ref, T = T};
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   206
fun typ_of (Ctyp {T, ...}) = T;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   207
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   208
fun ctyp_of sign T =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   209
  Ctyp {sign_ref = Sign.self_ref sign, T = Sign.certify_typ sign T};
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   210
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   211
fun read_ctyp sign s =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   212
  Ctyp {sign_ref = Sign.self_ref 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
   213
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   214
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   215
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   216
(** certified terms **)
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   217
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   218
(*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
   219
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   220
datatype cterm = Cterm of {sign_ref: Sign.sg_ref, 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
   221
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   222
fun rep_cterm (Cterm {sign_ref, t, T, maxidx}) =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   223
  {sign = Sign.deref sign_ref, t = t, T = T, maxidx = maxidx};
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   224
4288
3f5e8c4aa84d added crep_cterm;
wenzelm
parents: 4281
diff changeset
   225
fun crep_cterm (Cterm {sign_ref, t, T, maxidx}) =
3f5e8c4aa84d added crep_cterm;
wenzelm
parents: 4281
diff changeset
   226
  {sign = Sign.deref sign_ref, t = t, T = Ctyp {sign_ref = sign_ref, T = T},
3f5e8c4aa84d added crep_cterm;
wenzelm
parents: 4281
diff changeset
   227
    maxidx = maxidx};
3f5e8c4aa84d added crep_cterm;
wenzelm
parents: 4281
diff changeset
   228
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   229
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
   230
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   231
fun ctyp_of_term (Cterm {sign_ref, T, ...}) = Ctyp {sign_ref = sign_ref, T = T};
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
   232
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   233
(*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
   234
fun cterm_of sign tm =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   235
  let val (t, T, maxidx) = Sign.certify_term sign tm
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   236
  in  Cterm {sign_ref = Sign.self_ref sign, t = t, T = T, maxidx = maxidx}
1394
a1d2735f5ade New function read_cterms is a combination of read_def_cterm and
paulson
parents: 1258
diff changeset
   237
  end;
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   238
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   239
fun cterm_fun f (Cterm {sign_ref, t, ...}) = cterm_of (Sign.deref sign_ref) (f t);
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   240
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   241
1493
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   242
exception CTERM of string;
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   243
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   244
(*Destruct application in cterms*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   245
fun dest_comb (Cterm {sign_ref, T, maxidx, t = A $ B}) =
1493
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   246
      let val typeA = fastype_of A;
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   247
          val typeB =
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   248
            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
   249
                        | _ => error "Function type expected in dest_comb";
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   250
      in
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   251
      (Cterm {sign_ref=sign_ref, maxidx=maxidx, t=A, T=typeA},
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   252
       Cterm {sign_ref=sign_ref, maxidx=maxidx, t=B, T=typeB})
1493
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   253
      end
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   254
  | dest_comb _ = raise CTERM "dest_comb";
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   255
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   256
(*Destruct abstraction in cterms*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   257
fun dest_abs (Cterm {sign_ref, T as Type("fun",[_,S]), maxidx, t=Abs(x,ty,M)}) = 
1516
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   258
      let val (y,N) = variant_abs (x,ty,M)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   259
      in (Cterm {sign_ref = sign_ref, T = ty, maxidx = 0, t = Free(y,ty)},
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   260
          Cterm {sign_ref = sign_ref, T = S, maxidx = maxidx, t = N})
1493
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   261
      end
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   262
  | dest_abs _ = raise CTERM "dest_abs";
e936723cb94d added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents: 1460
diff changeset
   263
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   264
(*Makes maxidx precise: it is often too big*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   265
fun adjust_maxidx (ct as Cterm {sign_ref, T, t, maxidx, ...}) =
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   266
  if maxidx = ~1 then ct 
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   267
  else  Cterm {sign_ref = sign_ref, T = T, maxidx = maxidx_of_term t, t = t};
1703
e22ad43bab5f moved dest_cimplies to drule.ML; added adjust_maxidx
clasohm
parents: 1659
diff changeset
   268
1516
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   269
(*Form cterm out of a function and an argument*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   270
fun capply (Cterm {t=f, sign_ref=sign_ref1, T=Type("fun",[dty,rty]), maxidx=maxidx1})
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   271
           (Cterm {t=x, sign_ref=sign_ref2, T, maxidx=maxidx2}) =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   272
      if T = dty then Cterm{t=f$x, sign_ref=Sign.merge_refs(sign_ref1,sign_ref2), T=rty,
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   273
                            maxidx=Int.max(maxidx1, maxidx2)}
1516
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   274
      else raise CTERM "capply: types don't agree"
96286c4e32de removed mk_prop; added capply; simplified dest_abs
clasohm
parents: 1503
diff changeset
   275
  | capply _ _ = raise CTERM "capply: first arg is not a function"
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   276
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   277
fun cabs (Cterm {t=Free(a,ty), sign_ref=sign_ref1, T=T1, maxidx=maxidx1})
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   278
         (Cterm {t=t2, sign_ref=sign_ref2, T=T2, maxidx=maxidx2}) =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   279
      Cterm {t=absfree(a,ty,t2), sign_ref=Sign.merge_refs(sign_ref1,sign_ref2),
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   280
             T = ty --> T2, maxidx=Int.max(maxidx1, maxidx2)}
1517
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
   281
  | 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
   282
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
   283
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
   284
574
810da101bad2 read_def_cterm: minor changes;
wenzelm
parents: 564
diff changeset
   285
(** read cterms **)   (*exception ERROR*)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   286
4281
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   287
(*read terms, infer types, certify terms*)
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   288
fun read_def_cterms (sign, types, sorts) used freeze sTs =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   289
  let
4281
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   290
    val syn = #syn (Sign.rep_sg sign)
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   291
    fun read(s,T) =
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   292
      let val T' = Sign.certify_typ sign T
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   293
                   handle TYPE (msg, _, _) => error msg
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   294
      in (Syntax.read syn T' s, T') end
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   295
    val tsTs = map read sTs
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   296
    val (ts',tye) = Sign.infer_types_simult sign types sorts used freeze tsTs;
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   297
    val cts = map (cterm_of sign) ts'
2979
db6941221197 improved type check error messages;
wenzelm
parents: 2962
diff changeset
   298
      handle TYPE (msg, _, _) => error msg
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   299
           | TERM (msg, _) => error msg;
4281
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   300
  in (cts, tye) end;
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   301
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   302
(*read term, infer types, certify term*)
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   303
fun read_def_cterm args used freeze aT =
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   304
  let val ([ct],tye) = read_def_cterms args used freeze [aT]
6c6073b13600 Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents: 4270
diff changeset
   305
  in (ct,tye) end;
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   306
949
83c588d6fee9 Changed treatment of during type inference internally generated type
nipkow
parents: 922
diff changeset
   307
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
   308
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   309
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   310
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   311
(*** Derivations ***)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   312
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   313
(*tags provide additional comment, apart from the axiom/theorem name*)
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   314
type tag = string * string list;
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   315
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   316
(*Names of rules in derivations.  Includes logically trivial rules, if 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   317
  executed in ML.*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   318
datatype rule = 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   319
    MinProof                            (*for building minimal proof terms*)
4999
4c74267cfa0c Object.T;
wenzelm
parents: 4847
diff changeset
   320
  | Oracle              of string * Sign.sg * Object.T       (*oracles*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   321
(*Axioms/theorems*)
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   322
  | Axiom               of string * tag list
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   323
  | Theorem             of string * tag list
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   324
(*primitive inferences and compound versions of them*)
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   325
  | Assume              of cterm
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   326
  | Implies_intr        of cterm
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   327
  | Implies_intr_hyps
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   328
  | Implies_elim 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   329
  | Forall_intr         of cterm
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   330
  | Forall_elim         of cterm
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   331
  | Reflexive           of cterm
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   332
  | Symmetric 
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   333
  | Transitive
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   334
  | Beta_conversion     of cterm
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   335
  | Extensional
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   336
  | Abstract_rule       of string * cterm
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   337
  | Combination
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   338
  | Equal_intr
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   339
  | Equal_elim
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   340
(*derived rules for tactical proof*)
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   341
  | Trivial             of cterm
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   342
        (*For lift_rule, the proof state is not a premise.
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   343
          Use cterm instead of thm to avoid mutual recursion.*)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   344
  | Lift_rule           of cterm * int 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   345
  | Assumption          of int * Envir.env option (*includes eq_assumption*)
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
   346
  | Rotate_rule         of int * int
7248
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
   347
  | Permute_prems       of int * int
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   348
  | Instantiate         of (indexname * ctyp) list * (cterm * cterm) list
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   349
  | Bicompose           of bool * bool * int * int * Envir.env
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   350
  | Flexflex_rule       of Envir.env            (*identifies unifier chosen*)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   351
(*other derived rules*)
4182
47067b5db7ef deriv: eliminated references to theory;
wenzelm
parents: 4124
diff changeset
   352
  | Class_triv          of class
6786
0af1797d5315 varifyT': observe additional 'fixed' tfrees;
wenzelm
parents: 6539
diff changeset
   353
  | VarifyT		of string list
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   354
  | FreezeT
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   355
(*for the simplifier*)
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   356
  | RewriteC            of cterm
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   357
  | CongC               of cterm
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   358
  | Rewrite_cterm       of cterm
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   359
(*Logical identities, recorded since they are part of the proof process*)
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   360
  | Rename_params_rule  of string list * int;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   361
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   362
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   363
type deriv = rule mtree;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   364
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   365
datatype deriv_kind = MinDeriv | ThmDeriv | FullDeriv;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   366
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   367
val keep_derivs = ref MinDeriv;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   368
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   369
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   370
(*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
   371
  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
   372
fun squash_derivs [] = []
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   373
  | squash_derivs (der::ders) =
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   374
     (case der of
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   375
          Join (Oracle _, _) => der :: squash_derivs ders
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   376
        | Join (Theorem _, [der']) => if !keep_derivs=ThmDeriv 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   377
                                      then der :: squash_derivs ders
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   378
                                      else squash_derivs (der'::ders)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   379
        | Join (Axiom _, _) => if !keep_derivs=ThmDeriv 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   380
                               then der :: squash_derivs ders
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   381
                               else squash_derivs ders
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   382
        | Join (_, [])      => squash_derivs ders
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   383
        | _                 => der :: squash_derivs ders);
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   384
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   385
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   386
(*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
   387
val min_infer = Join (MinProof, []);
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   388
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   389
(*Make a minimal inference*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   390
fun make_min_infer []    = min_infer
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   391
  | make_min_infer [der] = der
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   392
  | make_min_infer ders  = Join (MinProof, ders);
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   393
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   394
fun infer_derivs (rl, [])   = Join (rl, [])
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   395
  | infer_derivs (rl, ders) =
1597
54ece585bf62 name_thm no longer takes a theory argument, as the
paulson
parents: 1580
diff changeset
   396
    if !keep_derivs=FullDeriv then Join (rl, ders)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   397
    else make_min_infer (squash_derivs ders);
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   398
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   399
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
   400
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   401
(*** Meta theorems ***)
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   402
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   403
datatype thm = Thm of
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   404
 {sign_ref: Sign.sg_ref,       (*mutable reference to signature*)
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   405
  der: deriv,                  (*derivation*)
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   406
  maxidx: int,                 (*maximum index of any Var or TVar*)
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   407
  shyps: sort list,            (*sort hypotheses*)
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   408
  hyps: term list,             (*hypotheses*)
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   409
  prop: term};                 (*conclusion*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   410
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   411
fun rep_thm (Thm {sign_ref, der, maxidx, shyps, hyps, prop}) =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   412
  {sign = Sign.deref sign_ref, der = der, maxidx = maxidx,
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   413
    shyps = shyps, hyps = hyps, prop = prop};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   414
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   415
(*Version of rep_thm returning cterms instead of terms*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   416
fun crep_thm (Thm {sign_ref, der, maxidx, shyps, hyps, prop}) =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   417
  let fun ctermf max t = Cterm{sign_ref=sign_ref, t=t, T=propT, maxidx=max};
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   418
  in {sign = Sign.deref sign_ref, der = der, maxidx = maxidx, shyps = shyps,
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   419
      hyps = map (ctermf ~1) hyps,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   420
      prop = ctermf maxidx prop}
1517
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
   421
  end;
d2f865740d8e added cabs and crep_thm
clasohm
parents: 1516
diff changeset
   422
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   423
(*errors involving theorems*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   424
exception THM of string * int * thm list;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   425
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   426
(*attributes subsume any kind of rules or addXXXs modifiers*)
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   427
type 'a attribute = 'a * thm -> 'a * thm;
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   428
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   429
fun no_attributes x = (x, []);
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   430
fun apply_attributes (x_th, atts) = Library.apply atts x_th;
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   431
fun applys_attributes (x_ths, atts) = foldl_map (Library.apply atts) x_ths;
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   432
3994
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   433
(*equality of theorems uses equality of signatures and the
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   434
  a-convertible test for terms*)
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   435
fun eq_thm (th1, th2) =
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   436
  let
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   437
    val {sign = sg1, shyps = shyps1, hyps = hyps1, prop = prop1, ...} = rep_thm th1;
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   438
    val {sign = sg2, shyps = shyps2, hyps = hyps2, prop = prop2, ...} = rep_thm th2;
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   439
  in
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   440
    Sign.eq_sg (sg1, sg2) andalso
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   441
    eq_set_sort (shyps1, shyps2) andalso
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   442
    aconvs (hyps1, hyps2) andalso
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   443
    prop1 aconv prop2
0343230ec85c eq_thm (from drule.ML);
wenzelm
parents: 3971
diff changeset
   444
  end;
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   445
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   446
fun sign_of_thm (Thm {sign_ref, ...}) = Sign.deref sign_ref;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   447
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   448
(*merge signatures of two theorems; raise exception if incompatible*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   449
fun merge_thm_sgs
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   450
    (th1 as Thm {sign_ref = sgr1, ...}, th2 as Thm {sign_ref = sgr2, ...}) =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   451
  Sign.merge_refs (sgr1, sgr2) 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
   452
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   453
(*transfer thm to super theory (non-destructive)*)
4254
8ae7ace96c39 added transfer_sg;
wenzelm
parents: 4251
diff changeset
   454
fun transfer_sg sign' thm =
3895
b2463861c86a added transfer: theory -> thm -> thm;
wenzelm
parents: 3893
diff changeset
   455
  let
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   456
    val Thm {sign_ref, der, maxidx, shyps, hyps, prop} = thm;
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   457
    val sign = Sign.deref sign_ref;
3895
b2463861c86a added transfer: theory -> thm -> thm;
wenzelm
parents: 3893
diff changeset
   458
  in
4254
8ae7ace96c39 added transfer_sg;
wenzelm
parents: 4251
diff changeset
   459
    if Sign.eq_sg (sign, sign') then thm
8ae7ace96c39 added transfer_sg;
wenzelm
parents: 4251
diff changeset
   460
    else if Sign.subsig (sign, sign') then
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   461
      Thm {sign_ref = Sign.self_ref sign', der = der, maxidx = maxidx,
3895
b2463861c86a added transfer: theory -> thm -> thm;
wenzelm
parents: 3893
diff changeset
   462
        shyps = shyps, hyps = hyps, prop = prop}
b2463861c86a added transfer: theory -> thm -> thm;
wenzelm
parents: 3893
diff changeset
   463
    else raise THM ("transfer: not a super theory", 0, [thm])
b2463861c86a added transfer: theory -> thm -> thm;
wenzelm
parents: 3893
diff changeset
   464
  end;
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   465
6390
5d58c100ca3f qualify Theory.sign_of etc.;
wenzelm
parents: 6368
diff changeset
   466
val transfer = transfer_sg o Theory.sign_of;
4254
8ae7ace96c39 added transfer_sg;
wenzelm
parents: 4251
diff changeset
   467
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   468
(*maps object-rule to tpairs*)
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   469
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
   470
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   471
(*maps object-rule to premises*)
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   472
fun prems_of (Thm {prop, ...}) =
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   473
  Logic.strip_imp_prems (Logic.skip_flexpairs prop);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   474
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   475
(*counts premises in a rule*)
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   476
fun nprems_of (Thm {prop, ...}) =
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   477
  Logic.count_prems (Logic.skip_flexpairs prop, 0);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   478
7534
30344dde83ab added no_prems;
wenzelm
parents: 7528
diff changeset
   479
fun no_prems thm = nprems_of thm = 0;
30344dde83ab added no_prems;
wenzelm
parents: 7528
diff changeset
   480
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   481
(*maps object-rule to conclusion*)
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   482
fun concl_of (Thm {prop, ...}) = Logic.strip_imp_concl prop;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   483
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   484
(*the statement of any thm is a cterm*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   485
fun cprop_of (Thm {sign_ref, maxidx, prop, ...}) =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   486
  Cterm {sign_ref = sign_ref, 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
   487
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   488
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   489
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   490
(** sort contexts of theorems **)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   491
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   492
(* basic utils *)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   493
2163
4d43e7486164 tuned fix_shyps a little bit more;
wenzelm
parents: 2147
diff changeset
   494
(*accumulate sorts suppressing duplicates; these are coded low levelly
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   495
  to improve efficiency a bit*)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   496
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   497
fun add_typ_sorts (Type (_, Ts), Ss) = add_typs_sorts (Ts, Ss)
2177
8b365a3a6ed1 Changed some mem, ins and union calls to be monomorphic
paulson
parents: 2163
diff changeset
   498
  | add_typ_sorts (TFree (_, S), Ss) = ins_sort(S,Ss)
8b365a3a6ed1 Changed some mem, ins and union calls to be monomorphic
paulson
parents: 2163
diff changeset
   499
  | add_typ_sorts (TVar (_, S), Ss) = ins_sort(S,Ss)
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   500
and add_typs_sorts ([], Ss) = Ss
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   501
  | 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
   502
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   503
fun add_term_sorts (Const (_, T), Ss) = add_typ_sorts (T, Ss)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   504
  | add_term_sorts (Free (_, T), Ss) = add_typ_sorts (T, Ss)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   505
  | add_term_sorts (Var (_, T), Ss) = add_typ_sorts (T, Ss)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   506
  | add_term_sorts (Bound _, Ss) = Ss
2177
8b365a3a6ed1 Changed some mem, ins and union calls to be monomorphic
paulson
parents: 2163
diff changeset
   507
  | add_term_sorts (Abs (_,T,t), Ss) = add_term_sorts (t, add_typ_sorts (T,Ss))
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   508
  | 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
   509
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   510
fun add_terms_sorts ([], Ss) = Ss
2177
8b365a3a6ed1 Changed some mem, ins and union calls to be monomorphic
paulson
parents: 2163
diff changeset
   511
  | add_terms_sorts (t::ts, Ss) = add_terms_sorts (ts, add_term_sorts (t,Ss));
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   512
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   513
fun env_codT (Envir.Envir {iTs, ...}) = map snd iTs;
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   514
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   515
fun add_env_sorts (env, Ss) =
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   516
  add_terms_sorts (map snd (Envir.alist_of env),
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   517
    add_typs_sorts (env_codT env, Ss));
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
   518
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   519
fun add_thm_sorts (Thm {hyps, prop, ...}, Ss) =
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   520
  add_terms_sorts (hyps, add_term_sorts (prop, Ss));
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   521
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   522
fun add_thms_shyps ([], Ss) = Ss
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   523
  | add_thms_shyps (Thm {shyps, ...} :: ths, Ss) =
7642
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   524
      add_thms_shyps (ths, union_sort (shyps, Ss));
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   525
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   526
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   527
(*get 'dangling' sort constraints of a thm*)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   528
fun extra_shyps (th as Thm {shyps, ...}) =
7642
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   529
  Term.rems_sort (shyps, add_thm_sorts (th, []));
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   530
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   531
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   532
(* fix_shyps *)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   533
7642
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   534
fun all_sorts_nonempty sign_ref = is_some (Sign.univ_witness (Sign.deref sign_ref));
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   535
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   536
(*preserve sort contexts of rule premises and substituted types*)
7642
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   537
fun fix_shyps thms Ts (thm as Thm {sign_ref, der, maxidx, hyps, prop, ...}) =
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   538
  Thm
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   539
   {sign_ref = sign_ref,
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   540
    der = der,             (*no new derivation, as other rules call this*)
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   541
    maxidx = maxidx,
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   542
    shyps =
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   543
      if all_sorts_nonempty sign_ref then []
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   544
      else add_thm_sorts (thm, add_typs_sorts (Ts, add_thms_shyps (thms, []))),
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   545
    hyps = hyps, prop = prop}
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   546
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   547
7642
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   548
(* strip_shyps *)
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   549
7642
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   550
(*remove extra sorts that are non-empty by virtue of type signature information*)
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   551
fun strip_shyps (thm as Thm {shyps = [], ...}) = thm
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   552
  | strip_shyps (thm as Thm {sign_ref, der, maxidx, shyps, hyps, prop}) =
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   553
      let
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   554
        val sign = Sign.deref sign_ref;
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   555
7642
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   556
        val present_sorts = add_thm_sorts (thm, []);
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   557
        val extra_shyps = Term.rems_sort (shyps, present_sorts);
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   558
        val witnessed_shyps = Sign.witness_sorts sign present_sorts extra_shyps;
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   559
      in
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   560
        Thm {sign_ref = sign_ref, der = der, maxidx = maxidx,
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   561
             shyps = Term.rems_sort (shyps, map #2 witnessed_shyps),
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   562
             hyps = hyps, prop = prop}
40d912f78db8 removed implies_intr_shyps;
wenzelm
parents: 7534
diff changeset
   563
      end;
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   564
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   565
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   566
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   567
(** Axioms **)
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   568
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   569
(*look up the named axiom in the theory*)
3812
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
   570
fun get_axiom theory raw_name =
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   571
  let
4847
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   572
    val name = Sign.intern (Theory.sign_of theory) Theory.axiomK raw_name;
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   573
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   574
    fun get_ax [] = None
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   575
      | get_ax (thy :: thys) =
4847
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   576
          let val {sign, axioms, ...} = Theory.rep_theory thy in
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   577
            (case Symtab.lookup (axioms, name) of
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   578
              Some t =>
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   579
                Some (fix_shyps [] []
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   580
                  (Thm {sign_ref = Sign.self_ref sign,
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   581
                    der = infer_derivs (Axiom (name, []), []),
4847
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   582
                    maxidx = maxidx_of_term t,
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   583
                    shyps = [], 
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   584
                    hyps = [], 
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   585
                    prop = t}))
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   586
            | None => get_ax thys)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   587
          end;
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   588
  in
4847
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   589
    (case get_ax (theory :: Theory.ancestors_of theory) of
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   590
      Some thm => thm
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   591
    | None => raise THEORY ("No axiom " ^ quote name, [theory]))
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   592
  end;
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   593
6368
ba5e97a20b12 added def_name;
wenzelm
parents: 6089
diff changeset
   594
fun def_name name = name ^ "_def";
ba5e97a20b12 added def_name;
wenzelm
parents: 6089
diff changeset
   595
fun get_def thy = get_axiom thy o def_name;
4847
ea7d7a65e4e9 tuned get_ax (uses ancestry);
wenzelm
parents: 4820
diff changeset
   596
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   597
776
df8f91c0e57c improved axioms_of: returns thms as the manual says;
wenzelm
parents: 721
diff changeset
   598
(*return additional axioms of this theory node*)
df8f91c0e57c improved axioms_of: returns thms as the manual says;
wenzelm
parents: 721
diff changeset
   599
fun axioms_of thy =
df8f91c0e57c improved axioms_of: returns thms as the manual says;
wenzelm
parents: 721
diff changeset
   600
  map (fn (s, _) => (s, get_axiom thy s))
6390
5d58c100ca3f qualify Theory.sign_of etc.;
wenzelm
parents: 6368
diff changeset
   601
    (Symtab.dest (#axioms (Theory.rep_theory thy)));
776
df8f91c0e57c improved axioms_of: returns thms as the manual says;
wenzelm
parents: 721
diff changeset
   602
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   603
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   604
(* name and tags -- make proof objects more readable *)
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   605
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   606
fun get_name_tags (Thm {der, ...}) =
4018
09b77900af0f added name_of_thm;
wenzelm
parents: 3994
diff changeset
   607
  (case der of
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   608
    Join (Theorem x, _) => x
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   609
  | Join (Axiom x, _) => x
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   610
  | _ => ("", []));
4018
09b77900af0f added name_of_thm;
wenzelm
parents: 3994
diff changeset
   611
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   612
fun put_name_tags x (Thm {sign_ref, der, maxidx, shyps, hyps, prop}) =
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   613
  let
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   614
    val der' =
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   615
      (case der of
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   616
        Join (Theorem _, ds) => Join (Theorem x, ds)
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   617
      | Join (Axiom _, ds) => Join (Axiom x, ds)
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   618
      | _ => Join (Theorem x, [der]));
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   619
  in
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   620
    Thm {sign_ref = sign_ref, der = der', maxidx = maxidx,
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   621
      shyps = shyps, hyps = hyps, prop = prop}
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   622
  end;
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   623
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   624
val name_of_thm = #1 o get_name_tags;
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   625
val tags_of_thm = #2 o get_name_tags;
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   626
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
   627
fun name_thm (name, thm) = put_name_tags (name, tags_of_thm thm) thm;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   628
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   629
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   630
(*Compression of theorems -- a separate rule, not integrated with the others,
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   631
  as it could be slow.*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   632
fun compress (Thm {sign_ref, der, maxidx, shyps, hyps, prop}) = 
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   633
    Thm {sign_ref = sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   634
         der = der,     (*No derivation recorded!*)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   635
         maxidx = maxidx,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   636
         shyps = shyps, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   637
         hyps = map Term.compress_term hyps, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   638
         prop = Term.compress_term prop};
564
eec3a9222b50 added inferT_axm;
wenzelm
parents: 480
diff changeset
   639
387
69f4356d915d new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents: 309
diff changeset
   640
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
   641
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   642
(*** Meta rules ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   643
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   644
(*Check that term does not contain same var with different typing/sorting.
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   645
  If this check must be made, recalculate maxidx in hope of preventing its
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   646
  recurrence.*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   647
fun nodup_Vars (thm as Thm{sign_ref, der, maxidx, shyps, hyps, prop}) s =
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   648
  (Sign.nodup_Vars prop; 
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   649
   Thm {sign_ref = sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   650
         der = der,     
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   651
         maxidx = maxidx_of_term prop,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   652
         shyps = shyps, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   653
         hyps = hyps, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   654
         prop = prop})
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   655
  handle TYPE(msg,Ts,ts) => raise TYPE(s^": "^msg,Ts,ts);
1495
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   656
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   657
(** 'primitive' rules **)
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   658
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   659
(*discharge all assumptions t from ts*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   660
val disch = gen_rem (op aconv);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   661
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   662
(*The assumption rule A|-A in a theory*)
5344
6a949382cdfe assume: adjust_maxidx;
wenzelm
parents: 5342
diff changeset
   663
fun assume raw_ct : thm =
6a949382cdfe assume: adjust_maxidx;
wenzelm
parents: 5342
diff changeset
   664
  let val ct as Cterm {sign_ref, t=prop, T, maxidx} = adjust_maxidx raw_ct
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   665
  in  if T<>propT then
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   666
        raise THM("assume: assumptions must have type prop", 0, [])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   667
      else if maxidx <> ~1 then
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   668
        raise THM("assume: assumptions may not contain scheme variables",
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   669
                  maxidx, [])
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   670
      else Thm{sign_ref   = sign_ref,
5344
6a949382cdfe assume: adjust_maxidx;
wenzelm
parents: 5342
diff changeset
   671
               der    = infer_derivs (Assume ct, []),
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   672
               maxidx = ~1, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   673
               shyps  = add_term_sorts(prop,[]), 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   674
               hyps   = [prop], 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   675
               prop   = prop}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   676
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   677
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   678
(*Implication introduction
3529
31186470665f tuned warning;
wenzelm
parents: 3410
diff changeset
   679
    [A]
31186470665f tuned warning;
wenzelm
parents: 3410
diff changeset
   680
     :
31186470665f tuned warning;
wenzelm
parents: 3410
diff changeset
   681
     B
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   682
  -------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   683
  A ==> B
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   684
*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   685
fun implies_intr cA (thB as Thm{sign_ref,der,maxidx,hyps,prop,...}) : thm =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   686
  let val Cterm {sign_ref=sign_refA, t=A, T, maxidx=maxidxA} = cA
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   687
  in  if T<>propT then
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   688
        raise THM("implies_intr: assumptions must have type prop", 0, [thB])
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   689
      else fix_shyps [thB] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   690
        (Thm{sign_ref = Sign.merge_refs (sign_ref,sign_refA),  
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   691
             der = infer_derivs (Implies_intr cA, [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   692
             maxidx = Int.max(maxidxA, maxidx),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   693
             shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   694
             hyps = disch(hyps,A),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   695
             prop = implies$A$prop})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   696
      handle TERM _ =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   697
        raise THM("implies_intr: incompatible signatures", 0, [thB])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   698
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   699
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   700
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   701
(*Implication elimination
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   702
  A ==> B    A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   703
  ------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   704
        B
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   705
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   706
fun implies_elim thAB thA : thm =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   707
    let val Thm{maxidx=maxA, der=derA, hyps=hypsA, prop=propA,...} = thA
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   708
        and Thm{sign_ref, der, maxidx, hyps, prop,...} = thAB;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   709
        fun err(a) = raise THM("implies_elim: "^a, 0, [thAB,thA])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   710
    in  case prop of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   711
            imp$A$B =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   712
                if imp=implies andalso  A aconv propA
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   713
                then fix_shyps [thAB, thA] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   714
                       (Thm{sign_ref= merge_thm_sgs(thAB,thA),
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   715
                            der = infer_derivs (Implies_elim, [der,derA]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   716
                            maxidx = Int.max(maxA,maxidx),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   717
                            shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   718
                            hyps = union_term(hypsA,hyps),  (*dups suppressed*)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   719
                            prop = B})
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   720
                else err("major premise")
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   721
          | _ => err("major premise")
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   722
    end;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   723
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   724
(*Forall introduction.  The Free or Var x must not be free in the hypotheses.
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   725
    A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   726
  -----
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   727
  !!x.A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   728
*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   729
fun forall_intr cx (th as Thm{sign_ref,der,maxidx,hyps,prop,...}) =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   730
  let val x = term_of cx;
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   731
      fun result(a,T) = fix_shyps [th] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   732
        (Thm{sign_ref = sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   733
             der = infer_derivs (Forall_intr cx, [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   734
             maxidx = maxidx,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   735
             shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   736
             hyps = hyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   737
             prop = all(T) $ Abs(a, T, abstract_over (x,prop))})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   738
  in  case x of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   739
        Free(a,T) =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   740
          if exists (apl(x, Logic.occs)) hyps
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   741
          then  raise THM("forall_intr: variable free in assumptions", 0, [th])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   742
          else  result(a,T)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   743
      | Var((a,_),T) => result(a,T)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   744
      | _ => raise THM("forall_intr: not a variable", 0, [th])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   745
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   746
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   747
(*Forall elimination
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   748
  !!x.A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   749
  ------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   750
  A[t/x]
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   751
*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   752
fun forall_elim ct (th as Thm{sign_ref,der,maxidx,hyps,prop,...}) : thm =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   753
  let val Cterm {sign_ref=sign_reft, t, T, maxidx=maxt} = ct
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   754
  in  case prop of
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   755
        Const("all",Type("fun",[Type("fun",[qary,_]),_])) $ A =>
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   756
          if T<>qary then
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   757
              raise THM("forall_elim: type mismatch", 0, [th])
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   758
          else let val thm = fix_shyps [th] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   759
                    (Thm{sign_ref= Sign.merge_refs(sign_ref,sign_reft),
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   760
                         der = infer_derivs (Forall_elim ct, [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   761
                         maxidx = Int.max(maxidx, maxt),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   762
                         shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   763
                         hyps = hyps,  
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   764
                         prop = betapply(A,t)})
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   765
               in if maxt >= 0 andalso maxidx >= 0
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   766
                  then nodup_Vars thm "forall_elim" 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   767
                  else thm (*no new Vars: no expensive check!*)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   768
               end
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   769
      | _ => raise THM("forall_elim: not quantified", 0, [th])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   770
  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   771
  handle TERM _ =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   772
         raise THM("forall_elim: incompatible signatures", 0, [th]);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   773
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   774
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   775
(* Equality *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   776
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   777
(*The reflexivity rule: maps  t   to the theorem   t==t   *)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   778
fun reflexive ct =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   779
  let val Cterm {sign_ref, t, T, maxidx} = ct
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   780
  in  fix_shyps [] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   781
       (Thm{sign_ref= sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   782
            der = infer_derivs (Reflexive ct, []),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   783
            shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   784
            hyps = [], 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   785
            maxidx = maxidx,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   786
            prop = Logic.mk_equals(t,t)})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   787
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   788
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   789
(*The symmetry rule
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   790
  t==u
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   791
  ----
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   792
  u==t
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   793
*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   794
fun symmetric (th as Thm{sign_ref,der,maxidx,shyps,hyps,prop}) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   795
  case prop of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   796
      (eq as Const("==",_)) $ t $ u =>
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   797
        (*no fix_shyps*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   798
          Thm{sign_ref = sign_ref,
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   799
              der = infer_derivs (Symmetric, [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   800
              maxidx = maxidx,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   801
              shyps = shyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   802
              hyps = hyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   803
              prop = eq$u$t}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   804
    | _ => raise THM("symmetric", 0, [th]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   805
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   806
(*The transitive rule
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   807
  t1==u    u==t2
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   808
  --------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   809
      t1==t2
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   810
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   811
fun transitive th1 th2 =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   812
  let val Thm{der=der1, maxidx=max1, hyps=hyps1, prop=prop1,...} = th1
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   813
      and Thm{der=der2, maxidx=max2, hyps=hyps2, prop=prop2,...} = th2;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   814
      fun err(msg) = raise THM("transitive: "^msg, 0, [th1,th2])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   815
  in case (prop1,prop2) of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   816
       ((eq as Const("==",_)) $ t1 $ u, Const("==",_) $ u' $ t2) =>
1634
9b9cdef70669 Plugged some more loopholes with nodup_Vars.
nipkow
parents: 1597
diff changeset
   817
          if not (u aconv u') then err"middle term"
9b9cdef70669 Plugged some more loopholes with nodup_Vars.
nipkow
parents: 1597
diff changeset
   818
          else let val thm =      
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   819
              fix_shyps [th1, th2] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   820
                (Thm{sign_ref= merge_thm_sgs(th1,th2), 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   821
                     der = infer_derivs (Transitive, [der1, der2]),
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   822
                     maxidx = Int.max(max1,max2), 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   823
                     shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   824
                     hyps = union_term(hyps1,hyps2),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   825
                     prop = eq$t1$t2})
2139
2c59b204b540 Only calls nodup_Vars if really necessary. We get a speedup of nearly 6%
paulson
parents: 2047
diff changeset
   826
                 in if max1 >= 0 andalso max2 >= 0
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   827
                    then nodup_Vars thm "transitive" 
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
   828
                    else thm (*no new Vars: no expensive check!*)
2139
2c59b204b540 Only calls nodup_Vars if really necessary. We get a speedup of nearly 6%
paulson
parents: 2047
diff changeset
   829
                 end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   830
     | _ =>  err"premises"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   831
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   832
1160
8845eb5f0e5e added add_trrules_i;
wenzelm
parents: 1065
diff changeset
   833
(*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
   834
fun beta_conversion ct =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   835
  let val Cterm {sign_ref, t, T, maxidx} = ct
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   836
  in  case t of
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   837
          Abs(_,_,bodt) $ u => fix_shyps [] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   838
            (Thm{sign_ref = sign_ref,  
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   839
                 der = infer_derivs (Beta_conversion ct, []),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   840
                 maxidx = maxidx,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   841
                 shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   842
                 hyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   843
                 prop = Logic.mk_equals(t, subst_bound (u,bodt))})
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   844
        | _ =>  raise THM("beta_conversion: not a redex", 0, [])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   845
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   846
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   847
(*The extensionality rule   (proviso: x not free in f, g, or hypotheses)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   848
  f(x) == g(x)
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   849
  ------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   850
     f == g
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   851
*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   852
fun extensional (th as Thm{sign_ref, der, maxidx,shyps,hyps,prop}) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   853
  case prop of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   854
    (Const("==",_)) $ (f$x) $ (g$y) =>
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   855
      let fun err(msg) = raise THM("extensional: "^msg, 0, [th])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   856
      in (if x<>y then err"different variables" else
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   857
          case y of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   858
                Free _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   859
                  if exists (apl(y, Logic.occs)) (f::g::hyps)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   860
                  then err"variable free in hyps or functions"    else  ()
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   861
              | Var _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   862
                  if Logic.occs(y,f)  orelse  Logic.occs(y,g)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   863
                  then err"variable free in functions"   else  ()
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   864
              | _ => err"not a variable");
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   865
          (*no fix_shyps*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   866
          Thm{sign_ref = sign_ref,
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   867
              der = infer_derivs (Extensional, [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   868
              maxidx = maxidx,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   869
              shyps = shyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   870
              hyps = hyps, 
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   871
              prop = Logic.mk_equals(f,g)}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   872
      end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   873
 | _ =>  raise THM("extensional: premise", 0, [th]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   874
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   875
(*The abstraction rule.  The Free or Var x must not be free in the hypotheses.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   876
  The bound variable will be named "a" (since x will be something like x320)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   877
     t == u
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   878
  ------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   879
  %x.t == %x.u
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   880
*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   881
fun abstract_rule a cx (th as Thm{sign_ref,der,maxidx,hyps,prop,...}) =
229
4002c4cd450c Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents: 225
diff changeset
   882
  let val x = term_of cx;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   883
      val (t,u) = Logic.dest_equals prop
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   884
            handle TERM _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   885
                raise THM("abstract_rule: premise not an equality", 0, [th])
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   886
      fun result T = fix_shyps [th] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   887
          (Thm{sign_ref = sign_ref,
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   888
               der = infer_derivs (Abstract_rule (a,cx), [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   889
               maxidx = maxidx, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   890
               shyps = [], 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   891
               hyps = hyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   892
               prop = Logic.mk_equals(Abs(a, T, abstract_over (x,t)),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   893
                                      Abs(a, T, abstract_over (x,u)))})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   894
  in  case x of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   895
        Free(_,T) =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   896
         if exists (apl(x, Logic.occs)) hyps
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   897
         then raise THM("abstract_rule: variable free in assumptions", 0, [th])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
   898
         else result T
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   899
      | Var(_,T) => result T
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   900
      | _ => raise THM("abstract_rule: not a variable", 0, [th])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   901
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   902
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   903
(*The combination rule
3529
31186470665f tuned warning;
wenzelm
parents: 3410
diff changeset
   904
  f == g  t == u
31186470665f tuned warning;
wenzelm
parents: 3410
diff changeset
   905
  --------------
31186470665f tuned warning;
wenzelm
parents: 3410
diff changeset
   906
   f(t) == g(u)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   907
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   908
fun combination th1 th2 =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   909
  let val Thm{der=der1, maxidx=max1, shyps=shyps1, hyps=hyps1, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   910
              prop=prop1,...} = th1
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   911
      and Thm{der=der2, maxidx=max2, shyps=shyps2, hyps=hyps2, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   912
              prop=prop2,...} = th2
1836
861e29c7cada Added type-checking to rule "combination". This corrects a fault
paulson
parents: 1802
diff changeset
   913
      fun chktypes (f,t) =
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   914
            (case fastype_of f of
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   915
                Type("fun",[T1,T2]) => 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   916
                    if T1 <> fastype_of t then
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   917
                         raise THM("combination: types", 0, [th1,th2])
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   918
                    else ()
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   919
                | _ => raise THM("combination: not function type", 0, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   920
                                 [th1,th2]))
1495
b8b54847c77f Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents: 1493
diff changeset
   921
  in case (prop1,prop2)  of
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   922
       (Const("==",_) $ f $ g, Const("==",_) $ t $ u) =>
1836
861e29c7cada Added type-checking to rule "combination". This corrects a fault
paulson
parents: 1802
diff changeset
   923
          let val _   = chktypes (f,t)
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   924
              val thm = (*no fix_shyps*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   925
                        Thm{sign_ref = merge_thm_sgs(th1,th2), 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   926
                            der = infer_derivs (Combination, [der1, der2]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   927
                            maxidx = Int.max(max1,max2), 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   928
                            shyps = union_sort(shyps1,shyps2),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   929
                            hyps = union_term(hyps1,hyps2),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   930
                            prop = Logic.mk_equals(f$t, g$u)}
2139
2c59b204b540 Only calls nodup_Vars if really necessary. We get a speedup of nearly 6%
paulson
parents: 2047
diff changeset
   931
          in if max1 >= 0 andalso max2 >= 0
2c59b204b540 Only calls nodup_Vars if really necessary. We get a speedup of nearly 6%
paulson
parents: 2047
diff changeset
   932
             then nodup_Vars thm "combination" 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   933
             else thm (*no new Vars: no expensive check!*)  
2139
2c59b204b540 Only calls nodup_Vars if really necessary. We get a speedup of nearly 6%
paulson
parents: 2047
diff changeset
   934
          end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   935
     | _ =>  raise THM("combination: premises", 0, [th1,th2])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   936
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   937
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   938
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   939
(* Equality introduction
3529
31186470665f tuned warning;
wenzelm
parents: 3410
diff changeset
   940
  A ==> B  B ==> A
31186470665f tuned warning;
wenzelm
parents: 3410
diff changeset
   941
  ----------------
31186470665f tuned warning;
wenzelm
parents: 3410
diff changeset
   942
       A == B
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   943
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   944
fun equal_intr th1 th2 =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   945
  let val Thm{der=der1,maxidx=max1, shyps=shyps1, hyps=hyps1, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   946
              prop=prop1,...} = th1
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   947
      and Thm{der=der2, maxidx=max2, shyps=shyps2, hyps=hyps2, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   948
              prop=prop2,...} = th2;
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   949
      fun err(msg) = raise THM("equal_intr: "^msg, 0, [th1,th2])
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   950
  in case (prop1,prop2) of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   951
       (Const("==>",_) $ A $ B, Const("==>",_) $ B' $ A')  =>
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   952
          if A aconv A' andalso B aconv B'
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   953
          then
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   954
            (*no fix_shyps*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   955
              Thm{sign_ref = merge_thm_sgs(th1,th2),
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   956
                  der = infer_derivs (Equal_intr, [der1, der2]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   957
                  maxidx = Int.max(max1,max2),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   958
                  shyps = union_sort(shyps1,shyps2),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   959
                  hyps = union_term(hyps1,hyps2),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   960
                  prop = Logic.mk_equals(A,B)}
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   961
          else err"not equal"
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   962
     | _ =>  err"premises"
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   963
  end;
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   964
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   965
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   966
(*The equal propositions rule
3529
31186470665f tuned warning;
wenzelm
parents: 3410
diff changeset
   967
  A == B  A
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   968
  ---------
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   969
      B
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   970
*)
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   971
fun equal_elim th1 th2 =
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   972
  let val Thm{der=der1, maxidx=max1, hyps=hyps1, prop=prop1,...} = th1
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   973
      and Thm{der=der2, maxidx=max2, hyps=hyps2, prop=prop2,...} = th2;
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   974
      fun err(msg) = raise THM("equal_elim: "^msg, 0, [th1,th2])
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   975
  in  case prop1  of
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   976
       Const("==",_) $ A $ B =>
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   977
          if not (prop2 aconv A) then err"not equal"  else
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   978
            fix_shyps [th1, th2] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   979
              (Thm{sign_ref= merge_thm_sgs(th1,th2), 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   980
                   der = infer_derivs (Equal_elim, [der1, der2]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   981
                   maxidx = Int.max(max1,max2),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   982
                   shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   983
                   hyps = union_term(hyps1,hyps2),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   984
                   prop = B})
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   985
     | _ =>  err"major premise"
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
   986
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   987
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   988
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
   989
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   990
(**** Derived rules ****)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   991
1503
7dba648ee25c Elimination of fully-functorial style.
paulson
parents: 1495
diff changeset
   992
(*Discharge all hypotheses.  Need not verify cterms or call fix_shyps.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   993
  Repeated hypotheses are discharged only once;  fold cannot do this*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   994
fun implies_intr_hyps (Thm{sign_ref, der, maxidx, shyps, hyps=A::As, prop}) =
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
   995
      implies_intr_hyps (*no fix_shyps*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
   996
            (Thm{sign_ref = sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   997
                 der = infer_derivs (Implies_intr_hyps, [der]), 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   998
                 maxidx = maxidx, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
   999
                 shyps = shyps,
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1000
                 hyps = disch(As,A),  
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1001
                 prop = implies$A$prop})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1002
  | implies_intr_hyps th = th;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1003
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1004
(*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
  1005
  Instantiates the theorem and deletes trivial tpairs.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1006
  Resulting sequence may contain multiple elements if the tpairs are
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1007
    not all flex-flex. *)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1008
fun flexflex_rule (th as Thm{sign_ref, der, maxidx, hyps, prop,...}) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1009
  let fun newthm env =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1010
          if Envir.is_empty env then th
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1011
          else
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1012
          let val (tpairs,horn) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1013
                        Logic.strip_flexpairs (Envir.norm_term env prop)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1014
                (*Remove trivial tpairs, of the form t=t*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1015
              val distpairs = filter (not o op aconv) tpairs
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1016
              val newprop = Logic.list_flexpairs(distpairs, horn)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1017
          in  fix_shyps [th] (env_codT env)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1018
                (Thm{sign_ref = sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1019
                     der = infer_derivs (Flexflex_rule env, [der]), 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1020
                     maxidx = maxidx_of_term newprop, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1021
                     shyps = [], 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1022
                     hyps = hyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1023
                     prop = newprop})
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1024
          end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1025
      val (tpairs,_) = Logic.strip_flexpairs prop
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1026
  in Seq.map newthm
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1027
            (Unify.smash_unifiers(Sign.deref sign_ref, Envir.empty maxidx, tpairs))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1028
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1029
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1030
(*Instantiation of Vars
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1031
           A
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1032
  -------------------
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1033
  A[t1/v1,....,tn/vn]
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1034
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1035
6928
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1036
local
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1037
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1038
(*Check that all the terms are Vars and are distinct*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1039
fun instl_ok ts = forall is_Var ts andalso null(findrep ts);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1040
6928
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1041
fun prt_typing sg_ref t T =
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1042
  let val sg = Sign.deref sg_ref in
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1043
    Pretty.block [Sign.pretty_term sg t, Pretty.str " ::", Pretty.brk 1, Sign.pretty_typ sg T]
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1044
  end;
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1045
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1046
(*For instantiate: process pair of cterms, merge theories*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1047
fun add_ctpair ((ct,cu), (sign_ref,tpairs)) =
6928
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1048
  let
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1049
    val Cterm {sign_ref=sign_reft, t=t, T= T, ...} = ct
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1050
    and Cterm {sign_ref=sign_refu, t=u, T= U, ...} = cu;
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1051
    val sign_ref_merged = Sign.merge_refs (sign_ref, Sign.merge_refs (sign_reft, sign_refu));
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1052
  in
6928
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1053
    if T=U then (sign_ref_merged, (t,u)::tpairs)
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1054
    else raise TYPE (Pretty.string_of (Pretty.block [Pretty.str "instantiate: type conflict",
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1055
      Pretty.fbrk, prt_typing sign_ref_merged t T,
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1056
      Pretty.fbrk, prt_typing sign_ref_merged u U]), [T,U], [t,u])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1057
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1058
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1059
fun add_ctyp ((v,ctyp), (sign_ref',vTs)) =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1060
  let val Ctyp {T,sign_ref} = ctyp
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1061
  in (Sign.merge_refs(sign_ref,sign_ref'), (v,T)::vTs) end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1062
6928
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1063
in
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1064
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1065
(*Left-to-right replacements: ctpairs = [...,(vi,ti),...].
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1066
  Instantiates distinct Vars by terms of same type.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1067
  Normalizes the new theorem! *)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1068
fun instantiate ([], []) th = th
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1069
  | instantiate (vcTs,ctpairs)  (th as Thm{sign_ref,der,maxidx,hyps,prop,...}) =
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1070
  let val (newsign_ref,tpairs) = foldr add_ctpair (ctpairs, (sign_ref,[]));
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1071
      val (newsign_ref,vTs) = foldr add_ctyp (vcTs, (newsign_ref,[]));
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1072
      val newprop =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1073
            Envir.norm_term (Envir.empty 0)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1074
              (subst_atomic tpairs
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1075
               (Type.inst_term_tvars(Sign.tsig_of (Sign.deref newsign_ref),vTs) prop))
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1076
      val newth =
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1077
            fix_shyps [th] (map snd vTs)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1078
              (Thm{sign_ref = newsign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1079
                   der = infer_derivs (Instantiate(vcTs,ctpairs), [der]), 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1080
                   maxidx = maxidx_of_term newprop, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1081
                   shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1082
                   hyps = hyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1083
                   prop = newprop})
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1084
  in  if not(instl_ok(map #1 tpairs))
193
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
  1085
      then raise THM("instantiate: variables not distinct", 0, [th])
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
  1086
      else if not(null(findrep(map #1 vTs)))
b2be328e00c3 updated instantiate to deal with type clashes
nipkow
parents: 134
diff changeset
  1087
      then raise THM("instantiate: type variables not distinct", 0, [th])
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
  1088
      else nodup_Vars newth "instantiate"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1089
  end
6928
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1090
  handle TERM _ => raise THM("instantiate: incompatible signatures", 0, [th])
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1091
       | TYPE (msg, _, _) => raise THM (msg, 0, [th]);
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1092
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1093
end;
9b4cd97b459d improved error msgs of instantiate;
wenzelm
parents: 6899
diff changeset
  1094
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1095
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1096
(*The trivial implication A==>A, justified by assume and forall rules.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1097
  A can contain Vars, not so for assume!   *)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1098
fun trivial ct : thm =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1099
  let val Cterm {sign_ref, t=A, T, maxidx} = ct
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1100
  in  if T<>propT then
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1101
            raise THM("trivial: the term must have type prop", 0, [])
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1102
      else fix_shyps [] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1103
        (Thm{sign_ref = sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1104
             der = infer_derivs (Trivial ct, []), 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1105
             maxidx = maxidx, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1106
             shyps = [], 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1107
             hyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1108
             prop = implies$A$A})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1109
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1110
1503
7dba648ee25c Elimination of fully-functorial style.
paulson
parents: 1495
diff changeset
  1111
(*Axiom-scheme reflecting signature contents: "OFCLASS(?'a::c, c_class)" *)
6368
ba5e97a20b12 added def_name;
wenzelm
parents: 6089
diff changeset
  1112
fun class_triv sign c =
ba5e97a20b12 added def_name;
wenzelm
parents: 6089
diff changeset
  1113
  let val Cterm {sign_ref, t, maxidx, ...} =
ba5e97a20b12 added def_name;
wenzelm
parents: 6089
diff changeset
  1114
    cterm_of sign (Logic.mk_inclass (TVar (("'a", 0), [c]), c))
ba5e97a20b12 added def_name;
wenzelm
parents: 6089
diff changeset
  1115
      handle TERM (msg, _) => raise THM ("class_triv: " ^ msg, 0, []);
399
86cc2b98f9e0 added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents: 387
diff changeset
  1116
  in
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1117
    fix_shyps [] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1118
      (Thm {sign_ref = sign_ref, 
4182
47067b5db7ef deriv: eliminated references to theory;
wenzelm
parents: 4124
diff changeset
  1119
            der = infer_derivs (Class_triv c, []), 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1120
            maxidx = maxidx, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1121
            shyps = [], 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1122
            hyps = [], 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1123
            prop = t})
399
86cc2b98f9e0 added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents: 387
diff changeset
  1124
  end;
86cc2b98f9e0 added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents: 387
diff changeset
  1125
86cc2b98f9e0 added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents: 387
diff changeset
  1126
6786
0af1797d5315 varifyT': observe additional 'fixed' tfrees;
wenzelm
parents: 6539
diff changeset
  1127
(* Replace all TFrees not fixed or in the hyps by new TVars *)
0af1797d5315 varifyT': observe additional 'fixed' tfrees;
wenzelm
parents: 6539
diff changeset
  1128
fun varifyT' fixed (Thm{sign_ref,der,maxidx,shyps,hyps,prop}) =
0af1797d5315 varifyT': observe additional 'fixed' tfrees;
wenzelm
parents: 6539
diff changeset
  1129
  let val tfrees = foldr add_term_tfree_names (hyps,fixed)
1634
9b9cdef70669 Plugged some more loopholes with nodup_Vars.
nipkow
parents: 1597
diff changeset
  1130
  in let val thm = (*no fix_shyps*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1131
    Thm{sign_ref = sign_ref, 
6786
0af1797d5315 varifyT': observe additional 'fixed' tfrees;
wenzelm
parents: 6539
diff changeset
  1132
        der = infer_derivs (VarifyT fixed, [der]), 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1133
        maxidx = Int.max(0,maxidx), 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1134
        shyps = shyps, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1135
        hyps = hyps,
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1136
        prop = Type.varify(prop,tfrees)}
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
  1137
     in nodup_Vars thm "varifyT" end
1634
9b9cdef70669 Plugged some more loopholes with nodup_Vars.
nipkow
parents: 1597
diff changeset
  1138
(* this nodup_Vars check can be removed if thms are guaranteed not to contain
9b9cdef70669 Plugged some more loopholes with nodup_Vars.
nipkow
parents: 1597
diff changeset
  1139
duplicate TVars with differnt sorts *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1140
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1141
6786
0af1797d5315 varifyT': observe additional 'fixed' tfrees;
wenzelm
parents: 6539
diff changeset
  1142
val varifyT = varifyT' [];
0af1797d5315 varifyT': observe additional 'fixed' tfrees;
wenzelm
parents: 6539
diff changeset
  1143
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1144
(* Replace all TVars by new TFrees *)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1145
fun freezeT(Thm{sign_ref,der,maxidx,shyps,hyps,prop}) =
3410
98f59f455d57 freezeT now refers to Type.freeze_thaw
paulson
parents: 3061
diff changeset
  1146
  let val (prop',_) = Type.freeze_thaw prop
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1147
  in (*no fix_shyps*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1148
    Thm{sign_ref = sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1149
        der = infer_derivs (FreezeT, [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1150
        maxidx = maxidx_of_term prop',
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1151
        shyps = shyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1152
        hyps = hyps,
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1153
        prop = prop'}
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1154
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1155
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1156
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1157
(*** Inference rules for tactics ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1158
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1159
(*Destruct proof state into constraints, other goals, goal(i), rest *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1160
fun dest_state (state as Thm{prop,...}, i) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1161
  let val (tpairs,horn) = Logic.strip_flexpairs prop
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1162
  in  case  Logic.strip_prems(i, [], horn) of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1163
          (B::rBs, C) => (tpairs, rev rBs, B, C)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1164
        | _ => raise THM("dest_state", i, [state])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1165
  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1166
  handle TERM _ => raise THM("dest_state", i, [state]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1167
309
3751567696bf restored the signature constraint :THM
lcp
parents: 305
diff changeset
  1168
(*Increment variables and parameters of orule as required for
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1169
  resolution with goal i of state. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1170
fun lift_rule (state, i) orule =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1171
  let val Thm{shyps=sshyps, prop=sprop, maxidx=smax, sign_ref=ssign_ref,...} = state
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1172
      val (Bi::_, _) = Logic.strip_prems(i, [], Logic.skip_flexpairs sprop)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1173
        handle TERM _ => raise THM("lift_rule", i, [orule,state])
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1174
      val ct_Bi = Cterm {sign_ref=ssign_ref, maxidx=smax, T=propT, t=Bi}
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1175
      val (lift_abs,lift_all) = Logic.lift_fns(Bi,smax+1)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1176
      val (Thm{sign_ref, der, maxidx,shyps,hyps,prop}) = orule
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1177
      val (tpairs,As,B) = Logic.strip_horn prop
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1178
  in  (*no fix_shyps*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1179
      Thm{sign_ref = merge_thm_sgs(state,orule),
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1180
          der = infer_derivs (Lift_rule(ct_Bi, i), [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1181
          maxidx = maxidx+smax+1,
2177
8b365a3a6ed1 Changed some mem, ins and union calls to be monomorphic
paulson
parents: 2163
diff changeset
  1182
          shyps=union_sort(sshyps,shyps), 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1183
          hyps=hyps, 
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1184
          prop = Logic.rule_of (map (pairself lift_abs) tpairs,
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1185
                                map lift_all As,    
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1186
                                lift_all B)}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1187
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1188
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1189
(*Solve subgoal Bi of proof state B1...Bn/C by assumption. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1190
fun assumption i state =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1191
  let val Thm{sign_ref,der,maxidx,hyps,prop,...} = state;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1192
      val (tpairs, Bs, Bi, C) = dest_state(state,i)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1193
      fun newth (env as Envir.Envir{maxidx, ...}, tpairs) =
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1194
        fix_shyps [state] (env_codT env)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1195
          (Thm{sign_ref = sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1196
               der = infer_derivs (Assumption (i, Some env), [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1197
               maxidx = maxidx,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1198
               shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1199
               hyps = hyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1200
               prop = 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1201
               if Envir.is_empty env then (*avoid wasted normalizations*)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1202
                   Logic.rule_of (tpairs, Bs, C)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1203
               else (*normalize the new rule fully*)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1204
                   Envir.norm_term env (Logic.rule_of (tpairs, Bs, C))});
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1205
      fun addprfs [] = Seq.empty
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1206
        | addprfs ((t,u)::apairs) = Seq.make (fn()=> Seq.pull
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1207
             (Seq.mapp newth
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1208
                (Unify.unifiers(Sign.deref sign_ref,Envir.empty maxidx, (t,u)::tpairs))
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1209
                (addprfs apairs)))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1210
  in  addprfs (Logic.assum_pairs Bi)  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1211
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1212
(*Solve subgoal Bi of proof state B1...Bn/C by assumption.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1213
  Checks if Bi's conclusion is alpha-convertible to one of its assumptions*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1214
fun eq_assumption i state =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1215
  let val Thm{sign_ref,der,maxidx,hyps,prop,...} = state;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1216
      val (tpairs, Bs, Bi, C) = dest_state(state,i)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1217
  in  if exists (op aconv) (Logic.assum_pairs Bi)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1218
      then fix_shyps [state] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1219
             (Thm{sign_ref = sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1220
                  der = infer_derivs (Assumption (i,None), [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1221
                  maxidx = maxidx,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1222
                  shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1223
                  hyps = hyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1224
                  prop = Logic.rule_of(tpairs, Bs, C)})
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1225
      else  raise THM("eq_assumption", 0, [state])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1226
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1227
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1228
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1229
(*For rotate_tac: fast rotation of assumptions of subgoal i*)
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1230
fun rotate_rule k i state =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1231
  let val Thm{sign_ref,der,maxidx,hyps,prop,shyps} = state;
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1232
      val (tpairs, Bs, Bi, C) = dest_state(state,i)
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1233
      val params = Logic.strip_params Bi
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1234
      and asms   = Logic.strip_assums_hyp Bi
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1235
      and concl  = Logic.strip_assums_concl Bi
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1236
      val n      = length asms
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1237
      fun rot m  = if 0=m orelse m=n then Bi
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1238
		   else if 0<m andalso m<n 
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1239
		   then list_all 
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1240
			   (params, 
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1241
			    Logic.list_implies(List.drop(asms, m) @ 
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1242
					       List.take(asms, m),
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1243
					       concl))
7248
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1244
		   else raise THM("rotate_rule", k, [state])
7264
d55cd903c93d (*no fix_shyps*);
wenzelm
parents: 7248
diff changeset
  1245
  in  (*no fix_shyps*)
d55cd903c93d (*no fix_shyps*);
wenzelm
parents: 7248
diff changeset
  1246
      Thm{sign_ref = sign_ref, 
2671
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1247
	  der = infer_derivs (Rotate_rule (k,i), [der]),
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1248
	  maxidx = maxidx,
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1249
	  shyps = shyps,
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1250
	  hyps = hyps,
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1251
	  prop = Logic.rule_of(tpairs, Bs@[rot (if k<0 then n+k else k)], C)}
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1252
  end;
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1253
510d94c71dda Introduction of rotate_rule
paulson
parents: 2626
diff changeset
  1254
7248
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1255
(*Rotates a rule's premises to the left by k, leaving the first j premises
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1256
  unchanged.  Does nothing if k=0 or if k equals n-j, where n is the
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1257
  number of premises.  Useful with etac and underlies tactic/defer_tac*)
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1258
fun permute_prems j k rl =
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1259
  let val Thm{sign_ref,der,maxidx,hyps,prop,shyps} = rl
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1260
      val prems  = Logic.strip_imp_prems prop
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1261
      and concl  = Logic.strip_imp_concl prop
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1262
      val moved_prems = List.drop(prems, j)
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1263
      and fixed_prems = List.take(prems, j)
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1264
        handle Subscript => raise THM("permute_prems:j", j, [rl])
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1265
      val n_j    = length moved_prems
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1266
      fun rot m  = if 0 = m orelse m = n_j then prop
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1267
		   else if 0<m andalso m<n_j 
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1268
		   then Logic.list_implies(fixed_prems @
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1269
					   List.drop(moved_prems, m) @ 
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1270
					   List.take(moved_prems, m),
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1271
					   concl)
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1272
		   else raise THM("permute_prems:k", k, [rl])
7264
d55cd903c93d (*no fix_shyps*);
wenzelm
parents: 7248
diff changeset
  1273
  in  (*no fix_shyps*)
d55cd903c93d (*no fix_shyps*);
wenzelm
parents: 7248
diff changeset
  1274
      Thm{sign_ref = sign_ref, 
7248
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1275
	  der = infer_derivs (Permute_prems (j,k), [der]),
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1276
	  maxidx = maxidx,
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1277
	  shyps = shyps,
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1278
	  hyps = hyps,
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1279
	  prop = rot (if k<0 then n_j + k else k)}
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1280
  end;
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1281
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 7070
diff changeset
  1282
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1283
(** User renaming of parameters in a subgoal **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1284
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1285
(*Calls error rather than raising an exception because it is intended
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1286
  for top-level use -- exception handling would not make sense here.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1287
  The names in cs, if distinct, are used for the innermost parameters;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1288
   preceding parameters may be renamed to make all params distinct.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1289
fun rename_params_rule (cs, i) state =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1290
  let val Thm{sign_ref,der,maxidx,hyps,...} = state
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1291
      val (tpairs, Bs, Bi, C) = dest_state(state,i)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1292
      val iparams = map #1 (Logic.strip_params Bi)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1293
      val short = length iparams - length cs
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1294
      val newnames =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1295
            if short<0 then error"More names than abstractions!"
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1296
            else variantlist(take (short,iparams), cs) @ cs
3037
99ed078e6ae7 rename_params_rule used to check if the new name clashed with a free name in
nipkow
parents: 3012
diff changeset
  1297
      val freenames = map (#1 o dest_Free) (term_frees Bi)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1298
      val newBi = Logic.list_rename_params (newnames, Bi)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1299
  in
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1300
  case findrep cs of
3565
c64410e701fb Now rename_params_rule merely issues warnings--and does nothing--if the
paulson
parents: 3558
diff changeset
  1301
     c::_ => (warning ("Can't rename.  Bound variables not distinct: " ^ c); 
c64410e701fb Now rename_params_rule merely issues warnings--and does nothing--if the
paulson
parents: 3558
diff changeset
  1302
	      state)
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1569
diff changeset
  1303
   | [] => (case cs inter_string freenames of
3565
c64410e701fb Now rename_params_rule merely issues warnings--and does nothing--if the
paulson
parents: 3558
diff changeset
  1304
       a::_ => (warning ("Can't rename.  Bound/Free variable clash: " ^ a); 
c64410e701fb Now rename_params_rule merely issues warnings--and does nothing--if the
paulson
parents: 3558
diff changeset
  1305
		state)
1220
3b0b8408fc5f MAJOR changes:
wenzelm
parents: 1195
diff changeset
  1306
     | [] => fix_shyps [state] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1307
                (Thm{sign_ref = sign_ref,
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1308
                     der = infer_derivs (Rename_params_rule(cs,i), [der]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1309
                     maxidx = maxidx,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1310
                     shyps = [],
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1311
                     hyps = hyps,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1312
                     prop = Logic.rule_of(tpairs, Bs@[newBi], C)}))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1313
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1314
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1315
(*** Preservation of bound variable names ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1316
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1317
(*Scan a pair of terms; while they are similar,
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1318
  accumulate corresponding bound vars in "al"*)
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1319
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
  1320
      match_bvs(s, t, if x="" orelse y="" then al
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1321
                                          else (x,y)::al)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1322
  | match_bvs(f$s, g$t, al) = match_bvs(f,g,match_bvs(s,t,al))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1323
  | match_bvs(_,_,al) = al;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1324
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1325
(* strip abstractions created by parameters *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1326
fun match_bvars((s,t),al) = match_bvs(strip_abs_body s, strip_abs_body t, al);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1327
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1328
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1329
(* strip_apply f A(,B) strips off all assumptions/parameters from A
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1330
   introduced by lifting over B, and applies f to remaining part of A*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1331
fun strip_apply f =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1332
  let fun strip(Const("==>",_)$ A1 $ B1,
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1333
                Const("==>",_)$ _  $ B2) = implies $ A1 $ strip(B1,B2)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1334
        | strip((c as Const("all",_)) $ Abs(a,T,t1),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1335
                      Const("all",_)  $ Abs(_,_,t2)) = c$Abs(a,T,strip(t1,t2))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1336
        | strip(A,_) = f A
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1337
  in strip end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1338
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1339
(*Use the alist to rename all bound variables and some unknowns in a term
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1340
  dpairs = current disagreement pairs;  tpairs = permanent ones (flexflex);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1341
  Preserves unknowns in tpairs and on lhs of dpairs. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1342
fun rename_bvs([],_,_,_) = I
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1343
  | rename_bvs(al,dpairs,tpairs,B) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1344
    let val vars = foldr add_term_vars
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1345
                        (map fst dpairs @ map fst tpairs @ map snd tpairs, [])
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1346
        (*unknowns appearing elsewhere be preserved!*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1347
        val vids = map (#1 o #1 o dest_Var) vars;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1348
        fun rename(t as Var((x,i),T)) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1349
                (case assoc(al,x) of
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1569
diff changeset
  1350
                   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
  1351
                              else Var((y,i),T)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1352
                 | None=> t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1353
          | rename(Abs(x,T,t)) =
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1569
diff changeset
  1354
              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
  1355
                  T, rename t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1356
          | rename(f$t) = rename f $ rename t
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1357
          | rename(t) = t;
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1358
        fun strip_ren Ai = strip_apply rename (Ai,B)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1359
    in strip_ren end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1360
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1361
(*Function to rename bounds/unknowns in the argument, lifted over B*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1362
fun rename_bvars(dpairs, tpairs, B) =
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1363
        rename_bvs(foldr match_bvars (dpairs,[]), dpairs, tpairs, B);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1364
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1365
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1366
(*** RESOLUTION ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1367
721
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1368
(** Lifting optimizations **)
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1369
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1370
(*strip off pairs of assumptions/parameters in parallel -- they are
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1371
  identical because of lifting*)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1372
fun strip_assums2 (Const("==>", _) $ _ $ B1,
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1373
                   Const("==>", _) $ _ $ B2) = strip_assums2 (B1,B2)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1374
  | strip_assums2 (Const("all",_)$Abs(a,T,t1),
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1375
                   Const("all",_)$Abs(_,_,t2)) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1376
      let val (B1,B2) = strip_assums2 (t1,t2)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1377
      in  (Abs(a,T,B1), Abs(a,T,B2))  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1378
  | strip_assums2 BB = BB;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1379
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1380
721
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1381
(*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
  1382
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
  1383
  | 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
  1384
        let val Envir.Envir{iTs, ...} = env
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1385
            val T' = typ_subst_TVars iTs T
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1386
            (*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
  1387
              this could be a NEW parameter*)
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1388
        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
  1389
  | norm_term_skip env n (Const("==>", _) $ A $ B) =
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1390
        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
  1391
  | 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
  1392
479832ff2d29 Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents: 678
diff changeset
  1393
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1394
(*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
  1395
  Unifies B with Bi, replacing subgoal i    (1 <= i <= n)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1396
  If match then forbid instantiations in proof state
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1397
  If lifted then shorten the dpair using strip_assums2.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1398
  If eres_flg then simultaneously proves A1 by assumption.
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1399
  nsubgoal is the number of new subgoals (written m above).
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1400
  Curried so that resolution calls dest_state only once.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1401
*)
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1402
local exception COMPOSE
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1403
in
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1404
fun bicompose_aux match (state, (stpairs, Bs, Bi, C), lifted)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1405
                        (eres_flg, orule, nsubgoal) =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1406
 let val Thm{der=sder, maxidx=smax, shyps=sshyps, hyps=shyps, ...} = state
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1407
     and Thm{der=rder, maxidx=rmax, shyps=rshyps, hyps=rhyps, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1408
             prop=rprop,...} = orule
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1409
         (*How many hyps to skip over during normalization*)
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1410
     and nlift = Logic.count_prems(strip_all_body Bi,
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1411
                                   if eres_flg then ~1 else 0)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1412
     val sign_ref = merge_thm_sgs(state,orule);
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1413
     val sign = Sign.deref sign_ref;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1414
     (** Add new theorem with prop = '[| Bs; As |] ==> C' to thq **)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1415
     fun addth As ((env as Envir.Envir {maxidx, ...}, tpairs), thq) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1416
       let val normt = Envir.norm_term env;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1417
           (*perform minimal copying here by examining env*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1418
           val normp =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1419
             if Envir.is_empty env then (tpairs, Bs @ As, C)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1420
             else
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1421
             let val ntps = map (pairself normt) tpairs
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
  1422
             in if Envir.above (smax, env) then
1238
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1423
                  (*no assignments in state; normalize the rule only*)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1424
                  if lifted
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1425
                  then (ntps, Bs @ map (norm_term_skip env nlift) As, C)
289c573327f0 considerably tuned shyps handling;
wenzelm
parents: 1229
diff changeset
  1426
                  else (ntps, Bs @ map normt As, C)
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  1427
                else if match then raise COMPOSE
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1428
                else (*normalize the new rule fully*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1429
                  (ntps, map normt (Bs @ As), normt C)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1430
             end
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1431
           val th = (*tuned fix_shyps*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1432
             Thm{sign_ref = sign_ref,
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1433
                 der = infer_derivs (Bicompose(match, eres_flg,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1434
                                               1 + length Bs, nsubgoal, env),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1435
                                     [rder,sder]),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1436
                 maxidx = maxidx,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1437
                 shyps = add_env_sorts (env, union_sort(rshyps,sshyps)),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1438
                 hyps = union_term(rhyps,shyps),
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  1439
                 prop = Logic.rule_of normp}
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1440
        in  Seq.cons(th, thq)  end  handle COMPOSE => thq
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1441
     val (rtpairs,rhorn) = Logic.strip_flexpairs(rprop);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1442
     val (rAs,B) = Logic.strip_prems(nsubgoal, [], rhorn)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1443
       handle TERM _ => raise THM("bicompose: rule", 0, [orule,state]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1444
     (*Modify assumptions, deleting n-th if n>0 for e-resolution*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1445
     fun newAs(As0, n, dpairs, tpairs) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1446
       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
  1447
                     else map (rename_bvars(dpairs,tpairs,B)) As0
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1448
       in (map (Logic.flatten_params n) As1)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1449
          handle TERM _ =>
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1450
          raise THM("bicompose: 1st premise", 0, [orule])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1451
       end;
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
  1452
     val env = Envir.empty(Int.max(rmax,smax));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1453
     val BBi = if lifted then strip_assums2(B,Bi) else (B,Bi);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1454
     val dpairs = BBi :: (rtpairs@stpairs);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1455
     (*elim-resolution: try each assumption in turn.  Initially n=1*)
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1456
     fun tryasms (_, _, []) = Seq.empty
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1457
       | tryasms (As, n, (t,u)::apairs) =
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1458
          (case Seq.pull(Unify.unifiers(sign, env, (t,u)::dpairs))  of
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1459
               None                   => tryasms (As, n+1, apairs)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1460
             | cell as Some((_,tpairs),_) =>
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1461
                   Seq.it_right (addth (newAs(As, n, [BBi,(u,t)], tpairs)))
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1462
                       (Seq.make (fn()=> cell),
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1463
                        Seq.make (fn()=> Seq.pull (tryasms (As, n+1, apairs)))));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1464
     fun eres [] = raise THM("bicompose: no premises", 0, [orule,state])
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1465
       | eres (A1::As) = tryasms (As, 1, Logic.assum_pairs A1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1466
     (*ordinary resolution*)
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1467
     fun res(None) = Seq.empty
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1468
       | res(cell as Some((_,tpairs),_)) =
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1469
             Seq.it_right (addth(newAs(rev rAs, 0, [BBi], tpairs)))
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1470
                       (Seq.make (fn()=> cell), Seq.empty)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1471
 in  if eres_flg then eres(rev rAs)
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1472
     else res(Seq.pull(Unify.unifiers(sign, env, dpairs)))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1473
 end;
7528
ee5f37e4f186 removed obsolete comment;
wenzelm
parents: 7323
diff changeset
  1474
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1475
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1476
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1477
fun bicompose match arg i state =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1478
    bicompose_aux match (state, dest_state(state,i), false) arg;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1479
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1480
(*Quick test whether rule is resolvable with the subgoal with hyps Hs
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1481
  and conclusion B.  If eres_flg then checks 1st premise of rule also*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1482
fun could_bires (Hs, B, eres_flg, rule) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1483
    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
  1484
          | could_reshyp [] = false;  (*no premise -- illegal*)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1485
    in  could_unify(concl_of rule, B) andalso
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1486
        (not eres_flg  orelse  could_reshyp (prems_of rule))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1487
    end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1488
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1489
(*Bi-resolution of a state with a list of (flag,rule) pairs.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1490
  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
  1491
fun biresolution match brules i state =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1492
    let val lift = lift_rule(state, i);
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1493
        val (stpairs, Bs, Bi, C) = dest_state(state,i)
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1494
        val B = Logic.strip_assums_concl Bi;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1495
        val Hs = Logic.strip_assums_hyp Bi;
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1496
        val comp = bicompose_aux match (state, (stpairs, Bs, Bi, C), true);
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1497
        fun res [] = Seq.empty
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1498
          | res ((eres_flg, rule)::brules) =
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1499
              if could_bires (Hs, B, eres_flg, rule)
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1500
              then Seq.make (*delay processing remainder till needed*)
250
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1501
                  (fn()=> Some(comp (eres_flg, lift rule, nprems_of rule),
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1502
                               res brules))
9b5a069285ce extend_theory: changed type of "abbrs" arg;
wenzelm
parents: 242
diff changeset
  1503
              else res brules
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4254
diff changeset
  1504
    in  Seq.flat (res brules)  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1505
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1506
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1507
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1508
(*** Meta Simplification ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1509
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1510
(** diagnostics **)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1511
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1512
exception SIMPLIFIER of string * thm;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1513
4045
deda17b83bf4 Modified trace output routines of simplifier.
nipkow
parents: 4036
diff changeset
  1514
fun prnt warn a = if warn then warning a else writeln a;
deda17b83bf4 Modified trace output routines of simplifier.
nipkow
parents: 4036
diff changeset
  1515
deda17b83bf4 Modified trace output routines of simplifier.
nipkow
parents: 4036
diff changeset
  1516
fun prtm warn a sign t =
deda17b83bf4 Modified trace output routines of simplifier.
nipkow
parents: 4036
diff changeset
  1517
  (prnt warn a; prnt warn (Sign.string_of_term sign t));
1580
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1518
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1519
fun prthm warn a (thm as Thm{sign_ref, prop, ...}) =
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1520
  (prtm warn a (Sign.deref sign_ref) prop);
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1521
209
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
  1522
val trace_simp = ref false;
7921
56a84b4d04b1 debug_simp;
wenzelm
parents: 7642
diff changeset
  1523
val debug_simp = ref false;
209
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
  1524
4045
deda17b83bf4 Modified trace output routines of simplifier.
nipkow
parents: 4036
diff changeset
  1525
fun trace warn a = if !trace_simp then prnt warn a else ();
7921
56a84b4d04b1 debug_simp;
wenzelm
parents: 7642
diff changeset
  1526
fun debug warn a = if !debug_simp then prnt warn a else ();
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1527
7921
56a84b4d04b1 debug_simp;
wenzelm
parents: 7642
diff changeset
  1528
fun trace_term warn a sign t = if !trace_simp then prtm warn a sign t else ();
56a84b4d04b1 debug_simp;
wenzelm
parents: 7642
diff changeset
  1529
fun debug_term warn a sign t = if !debug_simp then prtm warn a sign t else ();
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1530
4045
deda17b83bf4 Modified trace output routines of simplifier.
nipkow
parents: 4036
diff changeset
  1531
fun trace_thm warn a (thm as Thm{sign_ref, prop, ...}) =
deda17b83bf4 Modified trace output routines of simplifier.
nipkow
parents: 4036
diff changeset
  1532
  (trace_term warn a (Sign.deref sign_ref) prop);
209
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
  1533
feb8ff35810a changed tracing of simplifier
nipkow
parents: 208
diff changeset
  1534
1580
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1535
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1536
(** meta simp sets **)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1537
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1538
(* basic components *)
1580
e3fd931e6095 Added some functions which allow redirection of Isabelle's output
berghofe
parents: 1576
diff changeset
  1539
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1540
type rrule = {thm: thm, lhs: term, elhs: term, fo: bool, perm: bool};
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1541
(* thm: the rewrite rule
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1542
   lhs: the left-hand side
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1543
   elhs: the etac-contracted lhs.
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1544
   fo:  use first-order matching
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1545
   perm: the rewrite rule is permutative
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1546
Reamrks:
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1547
  - elhs is used for matching,
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1548
    lhs only for preservation of bound variable names.
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1549
  - fo is set iff
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1550
    either elhs is first-order (no Var is applied),
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1551
           in which case fo-matching is complete,
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1552
    or elhs is not a pattern,
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1553
       in which case there is nothing better to do.
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1554
*)
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1555
type cong = {thm: thm, lhs: term};
3577
9715b6e3ec5f added prems argument to simplification procedures;
wenzelm
parents: 3565
diff changeset
  1556
type simproc =
9715b6e3ec5f added prems argument to simplification procedures;
wenzelm
parents: 3565
diff changeset
  1557
 {name: string, proc: Sign.sg -> thm list -> term -> thm option, lhs: cterm, id: stamp};
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1558
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1559
fun eq_rrule ({thm = Thm {prop = p1, ...}, ...}: rrule,
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1560
  {thm = Thm {prop = p2, ...}, ...}: rrule) = p1 aconv p2;
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1561
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1562
fun eq_cong ({thm = Thm {prop = p1, ...}, ...}: cong,
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1563
  {thm = Thm {prop = p2, ...}, ...}: cong) = p1 aconv p2;
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1564
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1565
fun eq_prem (Thm {prop = p1, ...}, Thm {prop = p2, ...}) = p1 aconv p2;
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1566
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1567
fun eq_simproc ({id = s1, ...}:simproc, {id = s2, ...}:simproc) = (s1 = s2);
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1568
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1569
fun mk_simproc (name, proc, lhs, id) =
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1570
  {name = name, proc = proc, lhs = lhs, id = id};
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1571
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1572
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1573
(* datatype mss *)
288
b00ce6a1fe27 Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents: 274
diff changeset
  1574
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1575
(*
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1576
  A "mss" contains data needed during conversion:
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1577
    rules: discrimination net of rewrite rules;
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1578
    congs: association list of congruence rules and
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1579
           a list of `weak' congruence constants.
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1580
           A congruence is `weak' if it avoids normalization of some argument.
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1581
    procs: discrimination net of simplification procedures
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1582
      (functions that prove rewrite rules on the fly);
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1583
    bounds: names of bound variables already used
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1584
      (for generating new names when rewriting under lambda abstractions);
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1585
    prems: current premises;
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1586
    mk_rews: mk: turns simplification thms into rewrite rules;
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1587
             mk_sym: turns == around; (needs Drule!)
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1588
             mk_eq_True: turns P into P == True - logic specific;
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1589
    termless: relation for ordered rewriting;
1028
88c8df00905b Added comment to function "loops".
nipkow
parents: 1023
diff changeset
  1590
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1591
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1592
datatype meta_simpset =
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1593
  Mss of {
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1594
    rules: rrule Net.net,
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1595
    congs: (string * cong) list * string list,
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1596
    procs: simproc Net.net,
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1597
    bounds: string list,
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1598
    prems: thm list,
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1599
    mk_rews: {mk: thm -> thm list,
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1600
              mk_sym: thm -> thm option,
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1601
              mk_eq_True: thm -> thm option},
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1602
    termless: term * term -> bool};
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1603
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1604
fun mk_mss (rules, congs, procs, bounds, prems, mk_rews, termless) =
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1605
  Mss {rules = rules, congs = congs, procs = procs, bounds = bounds,
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1606
       prems=prems, mk_rews=mk_rews, termless=termless};
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1607
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1608
fun upd_rules(Mss{rules,congs,procs,bounds,prems,mk_rews,termless}, rules') =
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1609
  mk_mss(rules',congs,procs,bounds,prems,mk_rews,termless);
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1610
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1611
val empty_mss =
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1612
  let val mk_rews = {mk = K [], mk_sym = K None, mk_eq_True = K None}
6899
020314dadebd added clear_mss;
wenzelm
parents: 6786
diff changeset
  1613
  in mk_mss (Net.empty, ([], []), Net.empty, [], [], mk_rews, Term.termless) end;
020314dadebd added clear_mss;
wenzelm
parents: 6786
diff changeset
  1614
020314dadebd added clear_mss;
wenzelm
parents: 6786
diff changeset
  1615
fun clear_mss (Mss {mk_rews, termless, ...}) =
020314dadebd added clear_mss;
wenzelm
parents: 6786
diff changeset
  1616
  mk_mss (Net.empty, ([], []), Net.empty, [], [], mk_rews, termless);
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1617
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1618
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1619
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1620
(** simpset operations **)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1621
7070
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  1622
(* term variables *)
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  1623
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  1624
val add_term_varnames = foldl_aterms (fn (xs, Var (x, _)) => ins_ix (x, xs) | (xs, _) => xs);
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  1625
fun term_varnames t = add_term_varnames ([], t);
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  1626
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  1627
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1628
(* dest_mss *)
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1629
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1630
fun dest_mss (Mss {rules, congs, procs, ...}) =
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1631
  {simps = map (fn (_, {thm, ...}) => thm) (Net.dest rules),
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1632
   congs = map (fn (_, {thm, ...}) => thm) (fst congs),
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1633
   procs =
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1634
     map (fn (_, {name, lhs, id, ...}) => ((name, lhs), id)) (Net.dest procs)
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1635
     |> partition_eq eq_snd
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1636
     |> map (fn ps => (#1 (#1 (hd ps)), map (#2 o #1) ps))};
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1637
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1638
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1639
(* merge_mss *)		(*NOTE: ignores mk_rews and termless of 2nd mss*)
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1640
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1641
fun merge_mss
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1642
 (Mss {rules = rules1, congs = (congs1,weak1), procs = procs1,
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1643
       bounds = bounds1, prems = prems1, mk_rews, termless},
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1644
  Mss {rules = rules2, congs = (congs2,weak2), procs = procs2,
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1645
       bounds = bounds2, prems = prems2, ...}) =
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1646
      mk_mss
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1647
       (Net.merge (rules1, rules2, eq_rrule),
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1648
        (generic_merge (eq_cong o pairself snd) I I congs1 congs2,
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1649
        merge_lists weak1 weak2),
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1650
        Net.merge (procs1, procs2, eq_simproc),
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1651
        merge_lists bounds1 bounds2,
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1652
        generic_merge eq_prem I I prems1 prems2,
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1653
        mk_rews, termless);
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1654
7070
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  1655
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1656
(* add_simps *)
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1657
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1658
fun mk_rrule2{thm,lhs,elhs,perm} =
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1659
  let val fo = Pattern.first_order elhs orelse not(Pattern.pattern elhs)
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1660
  in {thm=thm,lhs=lhs,elhs=elhs,fo=fo,perm=perm} end
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1661
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1662
fun insert_rrule(mss as Mss {rules,...},
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1663
                 rrule as {thm,lhs,elhs,perm}) =
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1664
  (trace_thm false "Adding rewrite rule:" thm;
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1665
   let val rrule2 as {elhs,...} = mk_rrule2 rrule
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1666
       val rules' = Net.insert_term ((elhs, rrule2), rules, eq_rrule)
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1667
   in upd_rules(mss,rules') end
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1668
   handle Net.INSERT =>
4785
52fa5258db2e tuned trace msgs;
wenzelm
parents: 4740
diff changeset
  1669
     (prthm true "Ignoring duplicate rewrite rule:" thm; mss));
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1670
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1671
fun vperm (Var _, Var _) = true
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1672
  | vperm (Abs (_, _, s), Abs (_, _, t)) = vperm (s, t)
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1673
  | vperm (t1 $ t2, u1 $ u2) = vperm (t1, u1) andalso vperm (t2, u2)
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1674
  | vperm (t, u) = (t = u);
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1675
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1676
fun var_perm (t, u) =
7070
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  1677
  vperm (t, u) andalso eq_set (term_varnames t, term_varnames u);
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1678
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1679
(* FIXME: it seems that the conditions on extra variables are too liberal if
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1680
prems are nonempty: does solving the prems really guarantee instantiation of
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1681
all its Vars? Better: a dynamic check each time a rule is applied.
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1682
*)
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1683
fun rewrite_rule_extra_vars prems elhs erhs =
7070
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  1684
  not (term_varnames erhs subset foldl add_term_varnames (term_varnames elhs, prems))
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1685
  orelse
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1686
  not ((term_tvars erhs) subset
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1687
       (term_tvars elhs  union  List.concat(map term_tvars prems)));
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1688
4716
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  1689
(*Simple test for looping rewrite rules and stupid orientations*)
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  1690
fun reorient sign prems lhs rhs =
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1691
   rewrite_rule_extra_vars prems lhs rhs
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1692
  orelse
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1693
   is_Var (head_of lhs)
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1694
  orelse
4684
eb712fef644b Removed superfluous `op'
nipkow
parents: 4679
diff changeset
  1695
   (exists (apl (lhs, Logic.occs)) (rhs :: prems))
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1696
  orelse
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1697
   (null prems andalso
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1698
    Pattern.matches (#tsig (Sign.rep_sg sign)) (lhs, rhs))
4716
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  1699
    (*the condition "null prems" is necessary because conditional rewrites
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  1700
      with extra variables in the conditions may terminate although
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  1701
      the rhs is an instance of the lhs. Example: ?m < ?n ==> f(?n) == f(?m)*)
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  1702
  orelse
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  1703
   (is_Const lhs andalso not(is_Const rhs))
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1704
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1705
fun decomp_simp(thm as Thm {sign_ref, prop, ...}) =
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1706
  let val sign = Sign.deref sign_ref;
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1707
      val prems = Logic.strip_imp_prems prop;
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1708
      val concl = Logic.strip_imp_concl prop;
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1709
      val (lhs, rhs) = Logic.dest_equals concl handle TERM _ =>
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1710
        raise SIMPLIFIER ("Rewrite rule not a meta-equality", thm)
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1711
      val elhs = Pattern.eta_contract lhs;
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1712
      val elhs = if elhs=lhs then lhs else elhs (* try to share *)
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1713
      val erhs = Pattern.eta_contract rhs;
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1714
      val perm = var_perm (elhs, erhs) andalso not (elhs aconv erhs)
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1715
                 andalso not (is_Var elhs)
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1716
  in (sign,prems,lhs,elhs,rhs,perm) end;
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1717
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1718
fun mk_eq_True (Mss{mk_rews={mk_eq_True,...},...}) thm =
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1719
  case mk_eq_True thm of
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1720
    None => []
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1721
  | Some eq_True => let val (_,_,lhs,elhs,_,_) = decomp_simp eq_True
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1722
                    in [{thm=eq_True, lhs=lhs, elhs=elhs, perm=false}] end;
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1723
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1724
(* create the rewrite rule and possibly also the ==True variant,
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1725
   in case there are extra vars on the rhs *)
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1726
fun rrule_eq_True(thm,lhs,elhs,rhs,mss,thm2) =
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1727
  let val rrule = {thm=thm, lhs=lhs, elhs=elhs, perm=false}
7070
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  1728
  in if (term_varnames rhs)  subset (term_varnames lhs) andalso
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1729
        (term_tvars rhs) subset (term_tvars lhs)
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1730
     then [rrule]
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1731
     else mk_eq_True mss thm2 @ [rrule]
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1732
  end;
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1733
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1734
fun mk_rrule mss thm =
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1735
  let val (_,prems,lhs,elhs,rhs,perm) = decomp_simp thm
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1736
  in if perm then [{thm=thm, lhs=lhs, elhs=elhs, perm=true}] else
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1737
     (* weak test for loops: *)
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1738
     if rewrite_rule_extra_vars prems lhs rhs orelse
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1739
        is_Var elhs
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1740
     then mk_eq_True mss thm
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1741
     else rrule_eq_True(thm,lhs,elhs,rhs,mss,thm)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1742
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1743
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1744
fun orient_rrule mss thm =
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1745
  let val (sign,prems,lhs,elhs,rhs,perm) = decomp_simp thm
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1746
  in if perm then [{thm=thm,lhs=lhs,elhs=elhs,perm=true}]
4716
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  1747
     else if reorient sign prems lhs rhs
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  1748
          then if reorient sign prems rhs lhs
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1749
               then mk_eq_True mss thm
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1750
               else let val Mss{mk_rews={mk_sym,...},...} = mss
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1751
                    in case mk_sym thm of
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1752
                         None => []
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1753
                       | Some thm' =>
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1754
                           let val (_,_,lhs',elhs',rhs',_) = decomp_simp thm'
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1755
                           in rrule_eq_True(thm',lhs',elhs',rhs',mss,thm) end
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1756
                    end
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1757
          else rrule_eq_True(thm,lhs,elhs,rhs,mss,thm)
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1758
  end;
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1759
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1760
fun extract_rews(Mss{mk_rews = {mk,...},...},thms) = flat(map mk thms);
87
c378e56d4a4b added function del_simps
nipkow
parents: 0
diff changeset
  1761
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1762
fun orient_comb_simps comb mk_rrule (mss,thms) =
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1763
  let val rews = extract_rews(mss,thms)
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1764
      val rrules = flat (map mk_rrule rews)
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1765
  in foldl comb (mss,rrules) end
4667
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 4589
diff changeset
  1766
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1767
(* Add rewrite rules explicitly; do not reorient! *)
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1768
fun add_simps(mss,thms) =
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1769
  orient_comb_simps insert_rrule (mk_rrule mss) (mss,thms);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1770
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1771
fun mss_of thms =
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1772
  foldl insert_rrule (empty_mss, flat(map (mk_rrule empty_mss) thms));
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1773
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1774
fun extract_safe_rrules(mss,thm) =
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1775
  flat (map (orient_rrule mss) (extract_rews(mss,[thm])));
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1776
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  1777
fun add_safe_simp(mss,thm) =
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  1778
  foldl insert_rrule (mss, extract_safe_rrules(mss,thm))
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  1779
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1780
(* del_simps *)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1781
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1782
fun del_rrule(mss as Mss {rules,...},
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1783
              rrule as {thm, elhs, ...}) =
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1784
  (upd_rules(mss, Net.delete_term ((elhs, rrule), rules, eq_rrule))
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1785
   handle Net.DELETE =>
4785
52fa5258db2e tuned trace msgs;
wenzelm
parents: 4740
diff changeset
  1786
     (prthm true "Rewrite rule not in simpset:" thm; mss));
4667
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 4589
diff changeset
  1787
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1788
fun del_simps(mss,thms) =
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1789
  orient_comb_simps del_rrule (map mk_rrule2 o mk_rrule mss) (mss,thms);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1790
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1791
2626
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1792
(* add_congs *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1793
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1794
fun is_full_cong_prems [] varpairs = null varpairs
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1795
  | is_full_cong_prems (p::prems) varpairs =
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1796
    (case Logic.strip_assums_concl p of
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1797
       Const("==",_) $ lhs $ rhs =>
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1798
         let val (x,xs) = strip_comb lhs and (y,ys) = strip_comb rhs
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1799
         in is_Var x  andalso  forall is_Bound xs  andalso
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1800
            null(findrep(xs))  andalso xs=ys andalso
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1801
            (x,y) mem varpairs andalso
7318
768fab6dae74 Corrected two busg in the simplifier.
nipkow
parents: 7264
diff changeset
  1802
            is_full_cong_prems prems (varpairs\(x,y))
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1803
         end
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1804
     | _ => false);
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1805
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1806
fun is_full_cong (Thm{prop,...}) =
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1807
let val prems = Logic.strip_imp_prems prop
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1808
    and concl = Logic.strip_imp_concl prop
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1809
    val (lhs,rhs) = Logic.dest_equals concl
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1810
    val (f,xs) = strip_comb lhs
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1811
    and (g,ys) = strip_comb rhs
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1812
in
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1813
  f=g andalso null(findrep(xs@ys)) andalso length xs = length ys andalso
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1814
  is_full_cong_prems prems (xs ~~ ys)
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1815
end
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1816
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1817
fun add_cong (Mss {rules,congs,procs,bounds,prems,mk_rews,termless}, thm) =
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1818
  let
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1819
    val (lhs, _) = Logic.dest_equals (concl_of thm) handle TERM _ =>
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1820
      raise SIMPLIFIER ("Congruence not a meta-equality", thm);
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1821
(*   val lhs = Pattern.eta_contract lhs; *)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1822
    val (a, _) = dest_Const (head_of lhs) handle TERM _ =>
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1823
      raise SIMPLIFIER ("Congruence must start with a constant", thm);
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1824
    val (alist,weak) = congs
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1825
    val weak2 = if is_full_cong thm then weak else a::weak
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1826
  in
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1827
    mk_mss (rules, ((a, {lhs = lhs, thm = thm}) :: alist, weak2),
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1828
            procs, bounds, prems, mk_rews, termless)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1829
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1830
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1831
val (op add_congs) = foldl add_cong;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1832
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1833
2626
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1834
(* del_congs *)
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1835
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1836
fun del_cong (Mss {rules,congs,procs,bounds,prems,mk_rews,termless}, thm) =
2626
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1837
  let
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1838
    val (lhs, _) = Logic.dest_equals (concl_of thm) handle TERM _ =>
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1839
      raise SIMPLIFIER ("Congruence not a meta-equality", thm);
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1840
(*   val lhs = Pattern.eta_contract lhs; *)
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1841
    val (a, _) = dest_Const (head_of lhs) handle TERM _ =>
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1842
      raise SIMPLIFIER ("Congruence must start with a constant", thm);
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1843
    val (alist,_) = congs
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1844
    val alist2 = filter (fn (x,_)=> x<>a) alist
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1845
    val weak2 = mapfilter (fn(a,{thm,...}) => if is_full_cong thm then None
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1846
                                              else Some a)
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1847
                   alist2
2626
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1848
  in
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1849
    mk_mss (rules, (alist2,weak2), procs, bounds, prems, mk_rews, termless)
2626
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1850
  end;
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1851
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1852
val (op del_congs) = foldl del_cong;
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1853
373daa468a74 added del_congs
oheimb
parents: 2620
diff changeset
  1854
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1855
(* add_simprocs *)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1856
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1857
fun add_proc (mss as Mss {rules,congs,procs,bounds,prems,mk_rews,termless},
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1858
    (name, lhs as Cterm {sign_ref, t, ...}, proc, id)) =
5494
2df1a9d43e3c improved error messages
paulson
parents: 5344
diff changeset
  1859
  (trace_term false ("Adding simplification procedure " ^ quote name ^ " for")
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1860
      (Sign.deref sign_ref) t;
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1861
    mk_mss (rules, congs,
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1862
      Net.insert_term ((t, mk_simproc (name, proc, lhs, id)), procs, eq_simproc)
5494
2df1a9d43e3c improved error messages
paulson
parents: 5344
diff changeset
  1863
        handle Net.INSERT => 
2df1a9d43e3c improved error messages
paulson
parents: 5344
diff changeset
  1864
	    (warning ("Ignoring duplicate simplification procedure \"" 
2df1a9d43e3c improved error messages
paulson
parents: 5344
diff changeset
  1865
	              ^ name ^ "\""); 
2df1a9d43e3c improved error messages
paulson
parents: 5344
diff changeset
  1866
	     procs),
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1867
        bounds, prems, mk_rews, termless));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1868
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1869
fun add_simproc (mss, (name, lhss, proc, id)) =
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1870
  foldl add_proc (mss, map (fn lhs => (name, lhs, proc, id)) lhss);
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1871
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1872
val add_simprocs = foldl add_simproc;
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1873
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1874
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1875
(* del_simprocs *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1876
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1877
fun del_proc (mss as Mss {rules,congs,procs,bounds,prems,mk_rews,termless},
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1878
    (name, lhs as Cterm {t, ...}, proc, id)) =
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1879
  mk_mss (rules, congs,
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1880
    Net.delete_term ((t, mk_simproc (name, proc, lhs, id)), procs, eq_simproc)
5494
2df1a9d43e3c improved error messages
paulson
parents: 5344
diff changeset
  1881
      handle Net.DELETE => 
2df1a9d43e3c improved error messages
paulson
parents: 5344
diff changeset
  1882
	  (warning ("Simplification procedure \"" ^ name ^
2df1a9d43e3c improved error messages
paulson
parents: 5344
diff changeset
  1883
		       "\" not in simpset"); procs),
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1884
      bounds, prems, mk_rews, termless);
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1885
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1886
fun del_simproc (mss, (name, lhss, proc, id)) =
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  1887
  foldl del_proc (mss, map (fn lhs => (name, lhs, proc, id)) lhss);
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1888
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1889
val del_simprocs = foldl del_simproc;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1890
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1891
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1892
(* prems *)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1893
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1894
fun add_prems (Mss {rules,congs,procs,bounds,prems,mk_rews,termless}, thms) =
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1895
  mk_mss (rules, congs, procs, bounds, thms @ prems, mk_rews, termless);
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1896
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1897
fun prems_of_mss (Mss {prems, ...}) = prems;
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1898
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1899
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1900
(* mk_rews *)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1901
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1902
fun set_mk_rews
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1903
  (Mss {rules, congs, procs, bounds, prems, mk_rews, termless}, mk) =
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1904
    mk_mss (rules, congs, procs, bounds, prems,
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1905
            {mk=mk, mk_sym= #mk_sym mk_rews, mk_eq_True= #mk_eq_True mk_rews},
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1906
            termless);
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1907
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1908
fun set_mk_sym
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1909
  (Mss {rules, congs, procs, bounds, prems, mk_rews, termless}, mk_sym) =
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1910
    mk_mss (rules, congs, procs, bounds, prems,
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1911
            {mk= #mk mk_rews, mk_sym= mk_sym, mk_eq_True= #mk_eq_True mk_rews},
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1912
            termless);
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1913
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1914
fun set_mk_eq_True
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1915
  (Mss {rules, congs, procs, bounds, prems, mk_rews, termless}, mk_eq_True) =
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1916
    mk_mss (rules, congs, procs, bounds, prems,
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1917
            {mk= #mk mk_rews, mk_sym= #mk_sym mk_rews, mk_eq_True= mk_eq_True},
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1918
            termless);
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1919
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1920
(* termless *)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1921
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1922
fun set_termless
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1923
  (Mss {rules, congs, procs, bounds, prems, mk_rews, termless = _}, termless) =
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1924
    mk_mss (rules, congs, procs, bounds, prems, mk_rews, termless);
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1925
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1926
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1927
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1928
(** rewriting **)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1929
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1930
(*
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1931
  Uses conversions, omitting proofs for efficiency.  See:
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1932
    L C Paulson, A higher-order implementation of rewriting,
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1933
    Science of Computer Programming 3 (1983), pages 119-149.
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1934
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1935
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1936
type prover = meta_simpset -> thm -> thm option;
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  1937
type termrec = (Sign.sg_ref * term list) * term;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1938
type conv = meta_simpset -> termrec -> termrec;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1939
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1940
fun check_conv
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1941
      (thm as Thm{shyps,hyps,prop,sign_ref,der,...}, prop0, ders) =
4045
deda17b83bf4 Modified trace output routines of simplifier.
nipkow
parents: 4036
diff changeset
  1942
  let fun err() = (trace_thm false "Proved wrong thm (Check subgoaler?)" thm;
4785
52fa5258db2e tuned trace msgs;
wenzelm
parents: 4740
diff changeset
  1943
                   trace_term false "Should have proved:" (Sign.deref sign_ref) prop0;
432
0d1071ac599c Improved error msg "Proved wrong thm"
nipkow
parents: 427
diff changeset
  1944
                   None)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1945
      val (lhs0,_) = Logic.dest_equals(Logic.strip_imp_concl prop0)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1946
  in case prop of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1947
       Const("==",_) $ lhs $ rhs =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1948
         if (lhs = lhs0) orelse
427
4ce2ce940faf ordered rewriting applies to conditional rules as well now
nipkow
parents: 421
diff changeset
  1949
            (lhs aconv Envir.norm_term (Envir.empty 0) lhs0)
4045
deda17b83bf4 Modified trace output routines of simplifier.
nipkow
parents: 4036
diff changeset
  1950
         then (trace_thm false "SUCCEEDED" thm; 
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  1951
               Some(rhs, (shyps, hyps, der::ders)))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1952
         else err()
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1953
     | _ => err()
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1954
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1955
659
95ed2ccb4438 Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents: 623
diff changeset
  1956
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
  1957
  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
  1958
      fun renAbs(Abs(x,T,b)) =
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1569
diff changeset
  1959
            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
  1960
        | 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
  1961
        | renAbs(t) = t
95ed2ccb4438 Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents: 623
diff changeset
  1962
  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
  1963
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1964
fun incr_insts i (in1:(indexname*typ)list,in2:(indexname*term)list) =
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1965
  let fun incr ((a,n),x) = ((a,n+i),x)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1966
  in (map incr in1, map incr in2) end;
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  1967
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1968
fun add_insts_sorts ((iTs, is), Ss) =
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1969
  add_typs_sorts (map snd iTs, add_terms_sorts (map snd is, Ss));
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  1970
659
95ed2ccb4438 Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents: 623
diff changeset
  1971
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1972
(* mk_procrule *)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1973
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1974
fun mk_procrule thm =
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1975
  let val (_,prems,lhs,elhs,rhs,_) = decomp_simp thm
4679
24917efb31b5 Reorganized simplifier. May now reorient rules.
nipkow
parents: 4667
diff changeset
  1976
  in if rewrite_rule_extra_vars prems lhs rhs
4785
52fa5258db2e tuned trace msgs;
wenzelm
parents: 4740
diff changeset
  1977
     then (prthm true "Extra vars on rhs:" thm; [])
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  1978
     else [mk_rrule2{thm=thm, lhs=lhs, elhs=elhs, perm=false}]
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1979
  end;
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1980
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1981
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1982
(* conversion to apply the meta simpset to a term *)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  1983
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1984
(* Since the rewriting strategy is bottom-up, we avoid re-normalizing already
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1985
   normalized terms by carrying around the rhs of the rewrite rule just
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1986
   applied. This is called the `skeleton'. It is decomposed in parallel
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1987
   with the term. Once a Var is encountered, the corresponding term is
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1988
   already in normal form.
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1989
   skel0 is a dummy skeleton that is to enforce complete normalization.
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1990
*)
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1991
val skel0 = Bound 0;
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  1992
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1993
(* Use rhs as skeleton only if the lhs does not contain unnormalized bits.
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1994
   The latter may happen iff there are weak congruence rules for constants
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1995
   in the lhs.
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1996
*)
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1997
fun uncond_skel((_,weak),(lhs,rhs)) =
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1998
  if null weak then rhs (* optimization *)
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  1999
  else if exists_Const (fn (c,_) => c mem weak) lhs then skel0
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2000
       else rhs;
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2001
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2002
(* Behaves like unconditional rule if rhs does not contain vars not in the lhs.
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2003
   Otherwise those vars may become instantiated with unnormalized terms
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2004
   while the premises are solved.
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2005
*)
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2006
fun cond_skel(args as (congs,(lhs,rhs))) =
7070
893e5a8a8d46 tuned add_term_varnames;
wenzelm
parents: 6928
diff changeset
  2007
  if term_varnames rhs subset term_varnames lhs then uncond_skel(args)
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2008
  else skel0;
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2009
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2010
(*
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2011
  we try in order:
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2012
    (1) beta reduction
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2013
    (2) unconditional rewrite rules
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2014
    (3) conditional rewrite rules
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  2015
    (4) simplification procedures
4116
42606637f87f logic: loops -> rewrite_rule_ok
nipkow
parents: 4045
diff changeset
  2016
42606637f87f logic: loops -> rewrite_rule_ok
nipkow
parents: 4045
diff changeset
  2017
  IMPORTANT: rewrite rules must not introduce new Vars or TVars!
42606637f87f logic: loops -> rewrite_rule_ok
nipkow
parents: 4045
diff changeset
  2018
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2019
*)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2020
4116
42606637f87f logic: loops -> rewrite_rule_ok
nipkow
parents: 4045
diff changeset
  2021
fun rewritec (prover,sign_reft,maxt)
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2022
             (mss as Mss{rules, procs, termless, prems, congs, ...}) 
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2023
             (t:term,etc as (shypst,hypst,ders)) =
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  2024
  let
6539
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2025
    val eta_t = Pattern.eta_contract t;
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2026
    val signt = Sign.deref sign_reft;
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2027
    val tsigt = Sign.tsig_of signt;
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  2028
    fun rew{thm as Thm{sign_ref,der,shyps,hyps,prop,maxidx,...},
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  2029
            lhs, elhs, fo, perm} =
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2030
      let
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2031
        val _ = if Sign.subsig (Sign.deref sign_ref, signt) then ()
5342
3be51e9b33c8 The warning "Rewrite rule from different theory" is ALWAYS printed, even if
paulson
parents: 4999
diff changeset
  2032
                else (prthm true "Rewrite rule from different theory:" thm;
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2033
                      raise Pattern.MATCH);
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2034
        val rprop = if maxt = ~1 then prop
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2035
                    else Logic.incr_indexes([],maxt+1) prop;
6539
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2036
        val insts = if fo then Pattern.first_order_match tsigt (elhs,eta_t)
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2037
                          else Pattern.match             tsigt (elhs,eta_t);
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  2038
        val insts = if maxt = ~1 then insts else incr_insts (maxt+1) insts
6539
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2039
        val prop' = ren_inst(insts,rprop,lhs,eta_t);
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2040
        val hyps' = union_term(hyps,hypst);
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2041
        val shyps' = add_insts_sorts (insts, union_sort(shyps,shypst));
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2042
        val unconditional = (Logic.count_prems(prop',0) = 0);
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2043
        val maxidx' = if unconditional then maxt else maxidx+maxt+1
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2044
        val ct' = Cterm{sign_ref = sign_reft,       (*used for deriv only*)
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2045
                        t = prop', T = propT, maxidx = maxidx'}
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2046
        val der' = infer_derivs (RewriteC ct', [der]);
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2047
        val thm' = Thm{sign_ref = sign_reft, der = der', shyps = shyps',
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2048
                       hyps = hyps', prop = prop', maxidx = maxidx'}
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2049
        val (lhs',rhs') = Logic.dest_equals(Logic.strip_imp_concl prop')
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2050
      in
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2051
        if perm andalso not(termless(rhs',lhs')) then None
5624
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2052
        else
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2053
          (trace_thm false "Applying instance of rewrite rule:" thm;
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2054
           if unconditional
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2055
           then
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2056
             (trace_thm false "Rewriting:" thm';
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2057
              let val lr = Logic.dest_equals prop
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2058
                  val trec' = (rhs', (shyps', hyps', der'::ders))
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2059
              in Some(trec',uncond_skel(congs,lr)) end)
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2060
           else
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2061
             (trace_thm false "Trying to rewrite:" thm';
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2062
              case prover mss thm' of
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2063
                None       => (trace_thm false "FAILED" thm'; None)
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2064
              | Some(thm2) =>
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2065
                  (case check_conv(thm2,prop',ders) of
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2066
                     None => None |
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2067
                     Some trec =>
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2068
                       let val concl = Logic.strip_imp_concl prop
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2069
                           val lr = Logic.dest_equals concl
4813dd0fe6e5 Further improvement of the simplifier.
nipkow
parents: 5623
diff changeset
  2070
                       in Some(trec,cond_skel(congs,lr)) end)))
1659
41e37e5211f2 *** empty log message ***
oheimb
parents: 1634
diff changeset
  2071
      end
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2072
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2073
    fun rews [] = None
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2074
      | rews (rrule :: rrules) =
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2075
          let val opt = rew rrule handle Pattern.MATCH => None
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2076
          in case opt of None => rews rrules | some => some end;
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2077
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2078
    fun sort_rrules rrs = let
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4785
diff changeset
  2079
      fun is_simple({thm as Thm{prop,...}, ...}:rrule) = case prop of 
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2080
                                      Const("==",_) $ _ $ _ => true
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2081
                                      | _                   => false 
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2082
      fun sort []        (re1,re2) = re1 @ re2
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2083
        | sort (rr::rrs) (re1,re2) = if is_simple rr 
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2084
                                     then sort rrs (rr::re1,re2)
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2085
                                     else sort rrs (re1,rr::re2)
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2086
    in sort rrs ([],[]) end
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2087
6539
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2088
    fun proc_rews ([]:simproc list) = None
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2089
      | proc_rews ({name, proc, lhs = Cterm {t = plhs, ...}, ...} :: ps) =
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2090
          if Pattern.matches tsigt (plhs, t) then
7921
56a84b4d04b1 debug_simp;
wenzelm
parents: 7642
diff changeset
  2091
            (debug_term false ("Trying procedure " ^ quote name ^ " on:") signt eta_t;
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2092
             case proc signt prems eta_t of
7921
56a84b4d04b1 debug_simp;
wenzelm
parents: 7642
diff changeset
  2093
               None => (debug false "FAILED"; proc_rews ps)
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2094
             | Some raw_thm =>
4397
7f760385a3a5 tuned msg;
wenzelm
parents: 4315
diff changeset
  2095
                 (trace_thm false ("Procedure " ^ quote name ^ " produced rewrite rule:") raw_thm;
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2096
                  (case rews (mk_procrule raw_thm) of
6539
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2097
                    None => (trace false "IGNORED"; proc_rews ps)
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2098
                  | some => some)))
6539
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2099
          else proc_rews ps;
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2100
  in case eta_t of
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2101
       Abs (_, _, body) $ u => Some ((subst_bound (u, body), etc),skel0)
6539
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2102
     | _ => (case rews (sort_rrules (Net.match_term rules eta_t)) of
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 6390
diff changeset
  2103
               None => proc_rews (Net.match_term procs eta_t)
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2104
             | some => some)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2105
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2106
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2107
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2108
(* conversion to apply a congruence rule to a term *)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2109
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2110
fun congc (prover,sign_reft,maxt) {thm=cong,lhs=lhs} (t,(shypst,hypst,ders)) =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2111
  let val signt = Sign.deref sign_reft;
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2112
      val tsig = Sign.tsig_of signt;
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2113
      val Thm{sign_ref,der,shyps,hyps,maxidx,prop,...} = cong
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2114
      val _ = if Sign.subsig(Sign.deref sign_ref,signt) then ()
208
342f88d2e8ab optimized simplifier - signature of rewritten term stays constant
nipkow
parents: 200
diff changeset
  2115
                 else error("Congruence rule from different theory")
2147
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
  2116
      val rprop = if maxt = ~1 then prop
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
  2117
                  else Logic.incr_indexes([],maxt+1) prop;
0698ddfbf6e4 Now uses Int.max instead of max
paulson
parents: 2139
diff changeset
  2118
      val rlhs = if maxt = ~1 then lhs
1065
8425cb5acb77 Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents: 1028
diff changeset
  2119
                 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
  2120
      val insts = Pattern.match tsig (rlhs,t)
a89f246dee0e Non-matching congruence rule in rewriter is simply ignored.
nipkow
parents: 1566
diff changeset
  2121
      (* Pattern.match can raise Pattern.MATCH;
a89f246dee0e Non-matching congruence rule in rewriter is simply ignored.
nipkow
parents: 1566
diff changeset
  2122
         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
  2123
      val prop' = ren_inst(insts,rprop,rlhs,t);
2177
8b365a3a6ed1 Changed some mem, ins and union calls to be monomorphic
paulson
parents: 2163
diff changeset
  2124
      val shyps' = add_insts_sorts (insts, union_sort(shyps,shypst))
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  2125
      val maxidx' = maxidx_of_term prop'
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2126
      val ct' = Cterm{sign_ref = sign_reft,     (*used for deriv only*)
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2127
                      t = prop',
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2128
                      T = propT,
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2129
                      maxidx = maxidx'}
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2130
      val thm' = Thm{sign_ref = sign_reft, 
3550
2c833cb21f8d added dest_mss, merge_mss;
wenzelm
parents: 3529
diff changeset
  2131
                     der = infer_derivs (CongC ct', [der]),
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2132
                     shyps = shyps',
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2133
                     hyps = union_term(hyps,hypst),
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  2134
                     prop = prop',
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2135
                     maxidx = maxidx'};
4785
52fa5258db2e tuned trace msgs;
wenzelm
parents: 4740
diff changeset
  2136
      val unit = trace_thm false "Applying congruence rule:" thm';
112
009ae5c85ae9 Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents: 87
diff changeset
  2137
      fun err() = error("Failed congruence proof!")
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2138
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2139
  in case prover thm' of
112
009ae5c85ae9 Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents: 87
diff changeset
  2140
       None => err()
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  2141
     | 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
  2142
                        None => err() | some => some)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2143
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2144
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2145
fun bottomc ((simprem,useprem,mutsimp),prover,sign_ref,maxidx) =
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2146
  let
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2147
    fun botc fail skel mss trec =
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2148
          if is_Var skel then if fail then None else Some(trec)
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2149
          else
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2150
          (case subc skel mss trec of
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2151
             some as Some(trec1) =>
4116
42606637f87f logic: loops -> rewrite_rule_ok
nipkow
parents: 4045
diff changeset
  2152
               (case rewritec (prover,sign_ref,maxidx) mss trec1 of
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2153
                  Some(trec2,skel2) => botc false skel2 mss trec2
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2154
                | None => some)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2155
           | None =>
4116
42606637f87f logic: loops -> rewrite_rule_ok
nipkow
parents: 4045
diff changeset
  2156
               (case rewritec (prover,sign_ref,maxidx) mss trec of
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2157
                  Some(trec2,skel2) => botc false skel2 mss trec2
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2158
                | None => if fail then None else Some(trec)))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2159
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2160
    and try_botc mss trec =
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2161
          (case botc true skel0 mss trec of
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2162
             Some(trec1) => trec1 | None => trec)
405
c97514f63633 Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents: 399
diff changeset
  2163
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2164
    and subc skel
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2165
             (mss as Mss{rules,congs,procs,bounds,prems,mk_rews,termless})
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2166
             (trec as (t0:term,etc:sort list*term list * rule mtree list)) =
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  2167
       (case t0 of
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2168
           Abs(a,T,t) =>
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2169
             let val b = variant bounds a
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2170
                 val v = Free("." ^ b,T)
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2171
                 val mss' = mk_mss (rules, congs, procs, b :: bounds, prems, mk_rews, termless)
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2172
                 val skel' = case skel of Abs(_,_,sk) => sk | _ => skel0
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2173
             in case botc true skel' mss' (subst_bound(v,t),etc) of
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2174
                  Some(t',etc') => Some(Abs(a, T, abstract_over(v,t')), etc')
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2175
                | None => None
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2176
             end
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2177
         | t$u => (case t of
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2178
             Const("==>",_)$s  => Some(impc(s,u,mss,etc))
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2179
           | Abs(_,_,body) =>
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2180
               let val trec = (subst_bound(u,body), etc)
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2181
               in case subc skel0 mss trec of
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2182
                    None => Some(trec)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2183
                  | trec => trec
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2184
               end
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2185
           | _  =>
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2186
               let fun appc() =
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2187
                     let val (tskel,uskel) =
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2188
                                case skel of tskel$uskel => (tskel,uskel)
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2189
                                           | _ => (skel0,skel0)
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2190
                     in
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2191
                     (case botc true tskel mss (t,etc) of
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2192
                        Some(t1,etc1) =>
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2193
                          (case botc true uskel mss (u,etc1) of
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2194
                             Some(u1,etc2) => Some(t1$u1, etc2)
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2195
                           | None => Some(t1$u, etc1))
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2196
                      | None =>
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2197
                          (case botc true uskel mss (u,etc) of
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2198
                             Some(u1,etc1) => Some(t$u1, etc1)
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2199
                           | None => None))
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2200
                     end
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2201
                   val (h,ts) = strip_comb t
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2202
               in case h of
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2203
                    Const(a,_) =>
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2204
                      (case assoc_string(fst congs,a) of
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2205
                         None => appc()
4116
42606637f87f logic: loops -> rewrite_rule_ok
nipkow
parents: 4045
diff changeset
  2206
                       | Some(cong) =>
42606637f87f logic: loops -> rewrite_rule_ok
nipkow
parents: 4045
diff changeset
  2207
                           (congc (prover mss,sign_ref,maxidx) cong trec
42606637f87f logic: loops -> rewrite_rule_ok
nipkow
parents: 4045
diff changeset
  2208
                            handle Pattern.MATCH => appc() ) )
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2209
                  | _ => appc()
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2210
               end)
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2211
         | _ => None)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2212
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2213
    and impc args =
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2214
      if mutsimp
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2215
      then let val (prem, conc, mss, etc) = args
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2216
           in snd(mut_impc([], prem, conc, mss, etc)) end
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2217
      else nonmut_impc args
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2218
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2219
    and mut_impc (prems, prem, conc, mss, etc) =
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2220
      let val (prem1,etc1) = try_botc mss (prem,etc)
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2221
      in mut_impc1(prems, prem1, conc, mss, etc1) end
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2222
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2223
    and mut_impc1(prems, prem1, conc, mss, etc1 as (_,hyps1,_)) =
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2224
      let
7323
16b7e2f1b4e3 Now rewrite rules with flexible heads are allowed.
nipkow
parents: 7318
diff changeset
  2225
        fun uncond({thm,lhs,elhs,perm}) =
7534
30344dde83ab added no_prems;
wenzelm
parents: 7528
diff changeset
  2226
          if no_prems thm then Some lhs else None
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2227
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2228
        val (lhss1,mss1) =
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2229
          if maxidx_of_term prem1 <> ~1
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2230
          then (trace_term true "Cannot add premise as rewrite rule because it contains (type) unknowns:"
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2231
                           (Sign.deref sign_ref) prem1;
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2232
                ([],mss))
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2233
          else let val thm = assume (Cterm{sign_ref=sign_ref, t=prem1, 
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2234
                                           T=propT, maxidx= ~1})
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2235
                   val rrules1 = extract_safe_rrules(mss,thm)
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2236
                   val lhss1 = mapfilter uncond rrules1
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2237
                   val mss1 = foldl insert_rrule (add_prems(mss,[thm]),rrules1)
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2238
               in (lhss1, mss1) end
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2239
4716
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  2240
        fun disch1(conc2,(shyps2,hyps2,ders2)) =
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2241
          let val hyps2' = if gen_mem (op aconv) (prem1, hyps1)
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2242
                           then hyps2 else hyps2\prem1
4716
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  2243
          in (Logic.mk_implies(prem1,conc2),(shyps2,hyps2',ders2)) end
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  2244
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  2245
        fun rebuild trec2 =
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  2246
          let val trec = disch1 trec2
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2247
          in case rewritec (prover,sign_ref,maxidx) mss trec of
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2248
               None => (None,trec)
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2249
             | Some((Const("==>",_)$prem$conc,etc),_) =>
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2250
                 mut_impc(prems,prem,conc,mss,etc)
5623
75b513db9a3a Tuned simplifier not to re-normalized already normalized terms.
nipkow
parents: 5494
diff changeset
  2251
             | Some(trec',_) => (None,trec')
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2252
          end
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2253
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2254
        fun simpconc() =
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2255
          case conc of
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2256
            Const("==>",_)$s$t =>
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2257
              (case mut_impc(prems@[prem1],s,t,mss1,etc1) of
4716
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  2258
                 (Some(i,prem),trec2) =>
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  2259
                    let val trec2' = disch1 trec2
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2260
                    in if i=0 then mut_impc1(prems,prem,fst trec2',mss,snd trec2')
4716
a291e858061c Asm_full_simp_tac now reorients asm c = t to t = c.
nipkow
parents: 4713
diff changeset
  2261
                       else (Some(i-1,prem),trec2')
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2262
                    end
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2263
               | (None,trec) => rebuild(trec))
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2264
          | _ => rebuild(try_botc mss1 (conc,etc1))
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2265
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2266
      in let val sg = Sign.deref sign_ref
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2267
                  val tsig = #tsig(Sign.rep_sg sg)
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2268
                  fun reducible t =
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2269
                    exists (fn lhs => Pattern.matches_subterm tsig (lhs,t))
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2270
                           lhss1;
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2271
              in case dropwhile (not o reducible) prems of
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2272
                   [] => simpconc()
4785
52fa5258db2e tuned trace msgs;
wenzelm
parents: 4740
diff changeset
  2273
                 | red::rest => (trace_term false "Can now reduce premise:" sg
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2274
                                            red;
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2275
                                 (Some(length rest,prem1),(conc,etc1)))
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2276
              end
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2277
      end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2278
4740
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2279
     (* legacy code - only for backwards compatibility *)
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2280
     and nonmut_impc(prem, conc, mss, etc as (_,hyps1,_)) =
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2281
       let val (prem1,etc1) = if simprem then try_botc mss (prem,etc)
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2282
                              else (prem,etc)
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2283
           val maxidx1 = maxidx_of_term prem1
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2284
           val mss1 =
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2285
             if not useprem then mss else
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2286
             if maxidx1 <> ~1
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2287
             then (trace_term true "Cannot add premise as rewrite rule because it contains (type) unknowns:"
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2288
                              (Sign.deref sign_ref) prem1;
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2289
                   mss)
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2290
             else let val thm = assume (Cterm{sign_ref=sign_ref, t=prem1, 
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2291
                                              T=propT, maxidx= ~1})
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2292
                  in add_safe_simp(add_prems(mss,[thm]), thm) end
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2293
           val (conc2,(shyps2,hyps2,ders2)) = try_botc mss1 (conc,etc1)
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2294
           val hyps2' = if prem1 mem hyps1 then hyps2 else hyps2\prem1
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2295
       in (Logic.mk_implies(prem1,conc2), (shyps2, hyps2', ders2)) end
0136b5bbe9fe Made mutual simplification of prems a special case.
nipkow
parents: 4716
diff changeset
  2296
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  2297
 in try_botc end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2298
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2299
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2300
(*** Meta-rewriting: rewrites t to u and returns the theorem t==u ***)
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2301
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2302
(*
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2303
  Parameters:
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2304
    mode = (simplify A,
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2305
            use A in simplifying B,
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2306
            use prems of B (if B is again a meta-impl.) to simplify A)
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2307
           when simplifying A ==> B
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2308
    mss: contains equality theorems of the form [|p1,...|] ==> t==u
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2309
    prover: how to solve premises in conditional rewrites and congruences
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2310
*)
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2311
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2312
(* FIXME: check that #bounds(mss) does not "occur" in ct alread *)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2313
214
ed6a3e2b1a33 added new parameter to the simplification tactics which indicates if
nipkow
parents: 209
diff changeset
  2314
fun rewrite_cterm mode mss prover ct =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2315
  let val Cterm {sign_ref, t, T, maxidx} = ct;
4713
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2316
      val (u,(shyps,hyps,ders)) = bottomc (mode,prover, sign_ref, maxidx) mss 
bea2ab2e360b New simplifier flag for mutual simplification.
nipkow
parents: 4684
diff changeset
  2317
                                          (t, (add_term_sorts(t,[]), [], []));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2318
      val prop = Logic.mk_equals(t,u)
1258
2a2d8c74a756 bicompose_aux: tuned fix_shyps;
wenzelm
parents: 1238
diff changeset
  2319
  in
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2320
      Thm{sign_ref = sign_ref, 
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2321
          der = infer_derivs (Rewrite_cterm ct, ders),
4116
42606637f87f logic: loops -> rewrite_rule_ok
nipkow
parents: 4045
diff changeset
  2322
          maxidx = maxidx,
2386
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2323
          shyps = shyps, 
58f8ff014009 fixed warning;
wenzelm
parents: 2266
diff changeset
  2324
          hyps = hyps, 
1529
09d9ad015269 Addition of proof objects
paulson
parents: 1517
diff changeset
  2325
          prop = prop}
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2326
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2327
1539
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  2328
2509
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2329
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2330
(*** Oracles ***)
0a7169d89b7a added termless parameter;
wenzelm
parents: 2386
diff changeset
  2331
3812
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2332
fun invoke_oracle thy raw_name =
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2333
  let
6390
5d58c100ca3f qualify Theory.sign_of etc.;
wenzelm
parents: 6368
diff changeset
  2334
    val {sign = sg, oracles, ...} = Theory.rep_theory thy;
3812
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2335
    val name = Sign.intern sg Theory.oracleK raw_name;
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2336
    val oracle =
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2337
      (case Symtab.lookup (oracles, name) of
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2338
        None => raise THM ("Unknown oracle: " ^ name, 0, [])
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2339
      | Some (f, _) => f);
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2340
  in
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2341
    fn (sign, exn) =>
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2342
      let
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2343
        val sign_ref' = Sign.merge_refs (Sign.self_ref sg, Sign.self_ref sign);
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2344
        val sign' = Sign.deref sign_ref';
3812
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2345
        val (prop, T, maxidx) = Sign.certify_term sign' (oracle (sign', exn));
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2346
      in
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2347
        if T <> propT then
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2348
          raise THM ("Oracle's result must have type prop: " ^ name, 0, [])
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2349
        else fix_shyps [] []
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3895
diff changeset
  2350
          (Thm {sign_ref = sign_ref', 
4182
47067b5db7ef deriv: eliminated references to theory;
wenzelm
parents: 4124
diff changeset
  2351
            der = Join (Oracle (name, sign, exn), []),
3812
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2352
            maxidx = maxidx,
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2353
            shyps = [], 
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2354
            hyps = [], 
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2355
            prop = prop})
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2356
      end
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2357
  end;
66fa30839377 fixed get_axiom, invoke_oracle;
wenzelm
parents: 3789
diff changeset
  2358
1539
f21c8fab7c3c Addition of oracles
paulson
parents: 1529
diff changeset
  2359
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  2360
end;
1503
7dba648ee25c Elimination of fully-functorial style.
paulson
parents: 1495
diff changeset
  2361
6089
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
  2362
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
  2363
structure BasicThm: BASIC_THM = Thm;
4d2d5556b4f9 signature BASIC_THM;
wenzelm
parents: 5624
diff changeset
  2364
open BasicThm;