| author | paulson | 
| Tue, 23 May 2000 12:30:29 +0200 | |
| changeset 8927 | 1cf815412d78 | 
| parent 8605 | 625fbbe5c6b4 | 
| child 9288 | 06a55195741b | 
| permissions | -rw-r--r-- | 
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 1 | (* Title: Pure/drule.ML | 
| 0 | 2 | ID: $Id$ | 
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 3 | Author: Lawrence C Paulson, Cambridge University Computer Laboratory | 
| 0 | 4 | Copyright 1993 University of Cambridge | 
| 5 | ||
| 3766 | 6 | Derived rules and other operations on theorems. | 
| 0 | 7 | *) | 
| 8 | ||
| 11 
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML.  These support forward proof, resolving a
 lcp parents: 
0diff
changeset | 9 | infix 0 RS RSN RL RLN MRS MRL COMP; | 
| 0 | 10 | |
| 5903 | 11 | signature BASIC_DRULE = | 
| 3766 | 12 | sig | 
| 4285 | 13 | val dest_implies : cterm -> cterm * cterm | 
| 8328 | 14 | val skip_flexpairs : cterm -> cterm | 
| 15 | val strip_imp_prems : cterm -> cterm list | |
| 16 | val cprems_of : thm -> cterm list | |
| 17 | val read_insts : | |
| 4285 | 18 | Sign.sg -> (indexname -> typ option) * (indexname -> sort option) | 
| 19 | -> (indexname -> typ option) * (indexname -> sort option) | |
| 20 | -> string list -> (string*string)list | |
| 21 | -> (indexname*ctyp)list * (cterm*cterm)list | |
| 22 | val types_sorts: thm -> (indexname-> typ option) * (indexname-> sort option) | |
| 7636 | 23 | val strip_shyps_warning : thm -> thm | 
| 8328 | 24 | val forall_intr_list : cterm list -> thm -> thm | 
| 25 | val forall_intr_frees : thm -> thm | |
| 26 | val forall_intr_vars : thm -> thm | |
| 27 | val forall_elim_list : cterm list -> thm -> thm | |
| 28 | val forall_elim_var : int -> thm -> thm | |
| 29 | val forall_elim_vars : int -> thm -> thm | |
| 30 | val freeze_thaw : thm -> thm * (thm -> thm) | |
| 31 | val implies_elim_list : thm -> thm list -> thm | |
| 32 | val implies_intr_list : cterm list -> thm -> thm | |
| 8129 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 33 | val instantiate : | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 34 | (indexname * ctyp) list * (cterm * cterm) list -> thm -> thm | 
| 8328 | 35 | val zero_var_indexes : thm -> thm | 
| 36 | val standard : thm -> thm | |
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 37 | val rotate_prems : int -> thm -> thm | 
| 8328 | 38 | val assume_ax : theory -> string -> thm | 
| 39 | val RSN : thm * (int * thm) -> thm | |
| 40 | val RS : thm * thm -> thm | |
| 41 | val RLN : thm list * (int * thm list) -> thm list | |
| 42 | val RL : thm list * thm list -> thm list | |
| 43 | val MRS : thm list * thm -> thm | |
| 44 | val MRL : thm list list * thm list -> thm list | |
| 45 | val compose : thm * int * thm -> thm list | |
| 46 | val COMP : thm * thm -> thm | |
| 0 | 47 | val read_instantiate_sg: Sign.sg -> (string*string)list -> thm -> thm | 
| 8328 | 48 | val read_instantiate : (string*string)list -> thm -> thm | 
| 49 | val cterm_instantiate : (cterm*cterm)list -> thm -> thm | |
| 50 | val weak_eq_thm : thm * thm -> bool | |
| 51 | val eq_thm_sg : thm * thm -> bool | |
| 52 | val size_of_thm : thm -> int | |
| 53 | val reflexive_thm : thm | |
| 54 | val symmetric_thm : thm | |
| 55 | val transitive_thm : thm | |
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 56 | val refl_implies : thm | 
| 4679 | 57 | val symmetric_fun : thm -> thm | 
| 8328 | 58 | val rewrite_rule_aux : (meta_simpset -> thm -> thm option) -> thm list -> thm -> thm | 
| 59 | val rewrite_thm : bool * bool * bool | |
| 4713 | 60 | -> (meta_simpset -> thm -> thm option) | 
| 61 | -> meta_simpset -> thm -> thm | |
| 8328 | 62 | val rewrite_cterm : bool * bool * bool | 
| 5079 | 63 | -> (meta_simpset -> thm -> thm option) | 
| 64 | -> meta_simpset -> cterm -> thm | |
| 4285 | 65 | val rewrite_goals_rule_aux: (meta_simpset -> thm -> thm option) -> thm list -> thm -> thm | 
| 8328 | 66 | val rewrite_goal_rule : bool* bool * bool | 
| 4713 | 67 | -> (meta_simpset -> thm -> thm option) | 
| 68 | -> meta_simpset -> int -> thm -> thm | |
| 8328 | 69 | val equal_abs_elim : cterm -> thm -> thm | 
| 4285 | 70 | val equal_abs_elim_list: cterm list -> thm -> thm | 
| 71 | val flexpair_abs_elim_list: cterm list -> thm -> thm | |
| 8328 | 72 | val asm_rl : thm | 
| 73 | val cut_rl : thm | |
| 74 | val revcut_rl : thm | |
| 75 | val thin_rl : thm | |
| 4285 | 76 | val triv_forall_equality: thm | 
| 1756 | 77 | val swap_prems_rl : thm | 
| 4285 | 78 | val equal_intr_rule : thm | 
| 8550 
b44c185f8018
new meta-rule "inst", a shorthand for read_instantiate_sg
 paulson parents: 
8496diff
changeset | 79 | val inst : string -> string -> thm -> thm | 
| 8328 | 80 | val instantiate' : ctyp option list -> cterm option list -> thm -> thm | 
| 81 | val incr_indexes : int -> thm -> thm | |
| 82 | val incr_indexes_wrt : int list -> ctyp list -> cterm list -> thm list -> thm -> thm | |
| 5903 | 83 | end; | 
| 84 | ||
| 85 | signature DRULE = | |
| 86 | sig | |
| 87 | include BASIC_DRULE | |
| 8328 | 88 | val compose_single : thm * int * thm -> thm | 
| 89 | val triv_goal : thm | |
| 90 | val rev_triv_goal : thm | |
| 91 | val freeze_all : thm -> thm | |
| 5311 
f3f71669878e
Rule mk_triv_goal for making instances of triv_goal
 paulson parents: 
5079diff
changeset | 92 | val mk_triv_goal : cterm -> thm | 
| 8328 | 93 | val mk_cgoal : cterm -> cterm | 
| 94 | val assume_goal : cterm -> thm | |
| 95 | val tvars_of_terms : term list -> (indexname * sort) list | |
| 96 | val vars_of_terms : term list -> (indexname * typ) list | |
| 97 | val tvars_of : thm -> (indexname * sort) list | |
| 98 | val vars_of : thm -> (indexname * typ) list | |
| 99 | val unvarifyT : thm -> thm | |
| 100 | val unvarify : thm -> thm | |
| 8605 | 101 | val tvars_intr_list : string list -> thm -> thm | 
| 8328 | 102 |   val rule_attribute    : ('a -> thm -> thm) -> 'a attribute
 | 
| 8365 | 103 | val tag_rule : tag -> thm -> thm | 
| 8496 | 104 | val untag_rule : string -> thm -> thm | 
| 8328 | 105 | val tag : tag -> 'a attribute | 
| 8496 | 106 | val untag : string -> 'a attribute | 
| 8328 | 107 | val tag_lemma : 'a attribute | 
| 108 | val tag_assumption : 'a attribute | |
| 109 | val tag_internal : 'a attribute | |
| 3766 | 110 | end; | 
| 0 | 111 | |
| 5903 | 112 | structure Drule: DRULE = | 
| 0 | 113 | struct | 
| 114 | ||
| 3991 | 115 | |
| 708 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 116 | (** some cterm->cterm operations: much faster than calling cterm_of! **) | 
| 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 117 | |
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 118 | (** SAME NAMES as in structure Logic: use compound identifiers! **) | 
| 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 119 | |
| 1703 
e22ad43bab5f
moved dest_cimplies to drule.ML; added adjust_maxidx
 clasohm parents: 
1596diff
changeset | 120 | (*dest_implies for cterms. Note T=prop below*) | 
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 121 | fun dest_implies ct = | 
| 8328 | 122 | case term_of ct of | 
| 123 |         (Const("==>", _) $ _ $ _) =>
 | |
| 124 | let val (ct1,ct2) = dest_comb ct | |
| 125 | in (#2 (dest_comb ct1), ct2) end | |
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 126 |       | _ => raise TERM ("dest_implies", [term_of ct]) ;
 | 
| 1703 
e22ad43bab5f
moved dest_cimplies to drule.ML; added adjust_maxidx
 clasohm parents: 
1596diff
changeset | 127 | |
| 
e22ad43bab5f
moved dest_cimplies to drule.ML; added adjust_maxidx
 clasohm parents: 
1596diff
changeset | 128 | |
| 708 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 129 | (*Discard flexflex pairs; return a cterm*) | 
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 130 | fun skip_flexpairs ct = | 
| 708 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 131 | case term_of ct of | 
| 8328 | 132 |         (Const("==>", _) $ (Const("=?=",_)$_$_) $ _) =>
 | 
| 133 | skip_flexpairs (#2 (dest_implies ct)) | |
| 708 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 134 | | _ => ct; | 
| 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 135 | |
| 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 136 | (* A1==>...An==>B goes to [A1,...,An], where B is not an implication *) | 
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 137 | fun strip_imp_prems ct = | 
| 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 138 | let val (cA,cB) = dest_implies ct | 
| 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 139 | in cA :: strip_imp_prems cB end | 
| 708 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 140 | handle TERM _ => []; | 
| 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 141 | |
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 142 | (* A1==>...An==>B goes to B, where B is not an implication *) | 
| 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 143 | fun strip_imp_concl ct = | 
| 8328 | 144 |     case term_of ct of (Const("==>", _) $ _ $ _) =>
 | 
| 145 | strip_imp_concl (#2 (dest_comb ct)) | |
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 146 | | _ => ct; | 
| 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 147 | |
| 708 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 148 | (*The premises of a theorem, as a cterm list*) | 
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 149 | val cprems_of = strip_imp_prems o skip_flexpairs o cprop_of; | 
| 708 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 150 | |
| 
8422e50adce0
Pure/drule/cprems_of, cskip_flexpairs, cstrip_imp_prems: new cterm operations
 lcp parents: 
668diff
changeset | 151 | |
| 229 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 152 | (** reading of instantiations **) | 
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 153 | |
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 154 | fun absent ixn = | 
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 155 |   error("No such variable in term: " ^ Syntax.string_of_vname ixn);
 | 
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 156 | |
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 157 | fun inst_failure ixn = | 
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 158 |   error("Instantiation of " ^ Syntax.string_of_vname ixn ^ " fails");
 | 
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 159 | |
| 4281 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 160 | fun read_insts sign (rtypes,rsorts) (types,sorts) used insts = | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 161 | let val {tsig,...} = Sign.rep_sg sign
 | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 162 | fun split([],tvs,vs) = (tvs,vs) | 
| 4691 | 163 | | split((sv,st)::l,tvs,vs) = (case Symbol.explode sv of | 
| 164 | "'"::cs => split(l,(Syntax.indexname cs,st)::tvs,vs) | |
| 165 | | cs => split(l,tvs,(Syntax.indexname cs,st)::vs)); | |
| 4281 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 166 | val (tvs,vs) = split(insts,[],[]); | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 167 | fun readT((a,i),st) = | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 168 |         let val ixn = ("'" ^ a,i);
 | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 169 | val S = case rsorts ixn of Some S => S | None => absent ixn; | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 170 | val T = Sign.read_typ (sign,sorts) st; | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 171 | in if Type.typ_instance(tsig,T,TVar(ixn,S)) then (ixn,T) | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 172 | else inst_failure ixn | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 173 | end | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 174 | val tye = map readT tvs; | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 175 | fun mkty(ixn,st) = (case rtypes ixn of | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 176 | Some T => (ixn,(st,typ_subst_TVars tye T)) | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 177 | | None => absent ixn); | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 178 | val ixnsTs = map mkty vs; | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 179 | val ixns = map fst ixnsTs | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 180 | and sTs = map snd ixnsTs | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 181 | val (cts,tye2) = read_def_cterms(sign,types,sorts) used false sTs; | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 182 | fun mkcVar(ixn,T) = | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 183 | let val U = typ_subst_TVars tye2 T | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 184 | in cterm_of sign (Var(ixn,U)) end | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 185 | val ixnTs = ListPair.zip(ixns, map snd sTs) | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 186 | in (map (fn (ixn,T) => (ixn,ctyp_of sign T)) (tye2 @ tye), | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 187 | ListPair.zip(map mkcVar ixnTs,cts)) | 
| 
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
 nipkow parents: 
4270diff
changeset | 188 | end; | 
| 229 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 189 | |
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 190 | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 191 | (*** Find the type (sort) associated with a (T)Var or (T)Free in a term | 
| 0 | 192 | Used for establishing default types (of variables) and sorts (of | 
| 193 | type variables) when reading another term. | |
| 194 | Index -1 indicates that a (T)Free rather than a (T)Var is wanted. | |
| 195 | ***) | |
| 196 | ||
| 197 | fun types_sorts thm = | |
| 198 |     let val {prop,hyps,...} = rep_thm thm;
 | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 199 | val big = list_comb(prop,hyps); (* bogus term! *) | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 200 | val vars = map dest_Var (term_vars big); | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 201 | val frees = map dest_Free (term_frees big); | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 202 | val tvars = term_tvars big; | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 203 | val tfrees = term_tfrees big; | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 204 | fun typ(a,i) = if i<0 then assoc(frees,a) else assoc(vars,(a,i)); | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 205 | fun sort(a,i) = if i<0 then assoc(tfrees,a) else assoc(tvars,(a,i)); | 
| 0 | 206 | in (typ,sort) end; | 
| 207 | ||
| 7636 | 208 | |
| 0 | 209 | (** Standardization of rules **) | 
| 210 | ||
| 7636 | 211 | (*Strip extraneous shyps as far as possible*) | 
| 212 | fun strip_shyps_warning thm = | |
| 213 | let | |
| 214 | val str_of_sort = Sign.str_of_sort (Thm.sign_of_thm thm); | |
| 215 | val thm' = Thm.strip_shyps thm; | |
| 216 | val xshyps = Thm.extra_shyps thm'; | |
| 217 | in | |
| 218 | if null xshyps then () | |
| 219 |     else warning ("Pending sort hypotheses: " ^ commas (map str_of_sort xshyps));
 | |
| 220 | thm' | |
| 221 | end; | |
| 222 | ||
| 0 | 223 | (*Generalization over a list of variables, IGNORING bad ones*) | 
| 224 | fun forall_intr_list [] th = th | |
| 225 | | forall_intr_list (y::ys) th = | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 226 | let val gth = forall_intr_list ys th | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 227 | in forall_intr y gth handle THM _ => gth end; | 
| 0 | 228 | |
| 229 | (*Generalization over all suitable Free variables*) | |
| 230 | fun forall_intr_frees th = | |
| 231 |     let val {prop,sign,...} = rep_thm th
 | |
| 232 | in forall_intr_list | |
| 4440 | 233 | (map (cterm_of sign) (sort (make_ord atless) (term_frees prop))) | 
| 0 | 234 | th | 
| 235 | end; | |
| 236 | ||
| 7898 | 237 | val forall_elim_var = PureThy.forall_elim_var; | 
| 238 | val forall_elim_vars = PureThy.forall_elim_vars; | |
| 0 | 239 | |
| 240 | (*Specialization over a list of cterms*) | |
| 241 | fun forall_elim_list cts th = foldr (uncurry forall_elim) (rev cts, th); | |
| 242 | ||
| 243 | (* maps [A1,...,An], B to [| A1;...;An |] ==> B *) | |
| 244 | fun implies_intr_list cAs th = foldr (uncurry implies_intr) (cAs,th); | |
| 245 | ||
| 246 | (* maps [| A1;...;An |] ==> B and [A1,...,An] to B *) | |
| 247 | fun implies_elim_list impth ths = foldl (uncurry implies_elim) (impth,ths); | |
| 248 | ||
| 249 | (*Reset Var indexes to zero, renaming to preserve distinctness*) | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 250 | fun zero_var_indexes th = | 
| 0 | 251 |     let val {prop,sign,...} = rep_thm th;
 | 
| 252 | val vars = term_vars prop | |
| 253 | val bs = foldl add_new_id ([], map (fn Var((a,_),_)=>a) vars) | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 254 | val inrs = add_term_tvars(prop,[]); | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 255 | val nms' = rev(foldl add_new_id ([], map (#1 o #1) inrs)); | 
| 2266 | 256 | val tye = ListPair.map (fn ((v,rs),a) => (v, TVar((a,0),rs))) | 
| 8328 | 257 | (inrs, nms') | 
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 258 | val ctye = map (fn (v,T) => (v,ctyp_of sign T)) tye; | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 259 | fun varpairs([],[]) = [] | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 260 | | varpairs((var as Var(v,T)) :: vars, b::bs) = | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 261 | let val T' = typ_subst_TVars tye T | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 262 | in (cterm_of sign (Var(v,T')), | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 263 | cterm_of sign (Var((b,0),T'))) :: varpairs(vars,bs) | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 264 | end | 
| 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 265 |           | varpairs _ = raise TERM("varpairs", []);
 | 
| 8129 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 266 | in Thm.instantiate (ctye, varpairs(vars,rev bs)) th end; | 
| 0 | 267 | |
| 268 | ||
| 269 | (*Standard form of object-rule: no hypotheses, Frees, or outer quantifiers; | |
| 270 | all generality expressed by Vars having index 0.*) | |
| 271 | fun standard th = | |
| 1218 
59ed8ef1a3a1
modified pretty_thm, standard, eq_thm to handle shyps;
 wenzelm parents: 
1194diff
changeset | 272 |   let val {maxidx,...} = rep_thm th
 | 
| 1237 | 273 | in | 
| 1218 
59ed8ef1a3a1
modified pretty_thm, standard, eq_thm to handle shyps;
 wenzelm parents: 
1194diff
changeset | 274 | th |> implies_intr_hyps | 
| 1412 | 275 | |> forall_intr_frees |> forall_elim_vars (maxidx + 1) | 
| 7636 | 276 | |> strip_shyps_warning | 
| 1412 | 277 | |> zero_var_indexes |> Thm.varifyT |> Thm.compress | 
| 1218 
59ed8ef1a3a1
modified pretty_thm, standard, eq_thm to handle shyps;
 wenzelm parents: 
1194diff
changeset | 278 | end; | 
| 
59ed8ef1a3a1
modified pretty_thm, standard, eq_thm to handle shyps;
 wenzelm parents: 
1194diff
changeset | 279 | |
| 0 | 280 | |
| 8328 | 281 | (*Convert all Vars in a theorem to Frees. Also return a function for | 
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 282 | reversing that operation. DOES NOT WORK FOR TYPE VARIABLES. | 
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 283 | Similar code in type/freeze_thaw*) | 
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 284 | fun freeze_thaw th = | 
| 7248 
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
 paulson parents: 
6995diff
changeset | 285 | let val fth = freezeT th | 
| 
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
 paulson parents: 
6995diff
changeset | 286 |      val {prop,sign,...} = rep_thm fth
 | 
| 
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
 paulson parents: 
6995diff
changeset | 287 | in | 
| 
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
 paulson parents: 
6995diff
changeset | 288 | case term_vars prop of | 
| 
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
 paulson parents: 
6995diff
changeset | 289 | [] => (fth, fn x => x) | 
| 
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
 paulson parents: 
6995diff
changeset | 290 | | vars => | 
| 8328 | 291 | let fun newName (Var(ix,_), (pairs,used)) = | 
| 292 | let val v = variant used (string_of_indexname ix) | |
| 293 | in ((ix,v)::pairs, v::used) end; | |
| 294 | val (alist, _) = foldr newName | |
| 295 | (vars, ([], add_term_names (prop, []))) | |
| 296 | fun mk_inst (Var(v,T)) = | |
| 297 | (cterm_of sign (Var(v,T)), | |
| 298 | cterm_of sign (Free(the (assoc(alist,v)), T))) | |
| 299 | val insts = map mk_inst vars | |
| 300 | fun thaw th' = | |
| 301 | th' |> forall_intr_list (map #2 insts) | |
| 302 | |> forall_elim_list (map #1 insts) | |
| 303 | in (Thm.instantiate ([],insts) fth, thaw) end | |
| 7248 
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
 paulson parents: 
6995diff
changeset | 304 | end; | 
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 305 | |
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 306 | |
| 7248 
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
 paulson parents: 
6995diff
changeset | 307 | (*Rotates a rule's premises to the left by k*) | 
| 
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
 paulson parents: 
6995diff
changeset | 308 | val rotate_prems = permute_prems 0; | 
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 309 | |
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 310 | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 311 | (*Assume a new formula, read following the same conventions as axioms. | 
| 0 | 312 | Generalizes over Free variables, | 
| 313 | creates the assumption, and then strips quantifiers. | |
| 314 | Example is [| ALL x:?A. ?P(x) |] ==> [| ?P(?a) |] | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 315 | [ !(A,P,a)[| ALL x:A. P(x) |] ==> [| P(a) |] ] *) | 
| 0 | 316 | fun assume_ax thy sP = | 
| 6390 | 317 | let val sign = Theory.sign_of thy | 
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 318 | val prop = Logic.close_form (term_of (read_cterm sign (sP, propT))) | 
| 229 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 319 | in forall_elim_vars 0 (assume (cterm_of sign prop)) end; | 
| 0 | 320 | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 321 | (*Resolution: exactly one resolvent must be produced.*) | 
| 0 | 322 | fun tha RSN (i,thb) = | 
| 4270 | 323 | case Seq.chop (2, biresolution false [(false,tha)] i thb) of | 
| 0 | 324 | ([th],_) => th | 
| 325 |     | ([],_)   => raise THM("RSN: no unifiers", i, [tha,thb])
 | |
| 326 |     |      _   => raise THM("RSN: multiple unifiers", i, [tha,thb]);
 | |
| 327 | ||
| 328 | (*resolution: P==>Q, Q==>R gives P==>R. *) | |
| 329 | fun tha RS thb = tha RSN (1,thb); | |
| 330 | ||
| 331 | (*For joining lists of rules*) | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 332 | fun thas RLN (i,thbs) = | 
| 0 | 333 | let val resolve = biresolution false (map (pair false) thas) i | 
| 4270 | 334 | fun resb thb = Seq.list_of (resolve thb) handle THM _ => [] | 
| 2672 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2266diff
changeset | 335 | in List.concat (map resb thbs) end; | 
| 0 | 336 | |
| 337 | fun thas RL thbs = thas RLN (1,thbs); | |
| 338 | ||
| 11 
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML.  These support forward proof, resolving a
 lcp parents: 
0diff
changeset | 339 | (*Resolve a list of rules against bottom_rl from right to left; | 
| 
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML.  These support forward proof, resolving a
 lcp parents: 
0diff
changeset | 340 | makes proof trees*) | 
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 341 | fun rls MRS bottom_rl = | 
| 11 
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML.  These support forward proof, resolving a
 lcp parents: 
0diff
changeset | 342 | let fun rs_aux i [] = bottom_rl | 
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 343 | | rs_aux i (rl::rls) = rl RSN (i, rs_aux (i+1) rls) | 
| 11 
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML.  These support forward proof, resolving a
 lcp parents: 
0diff
changeset | 344 | in rs_aux 1 rls end; | 
| 
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML.  These support forward proof, resolving a
 lcp parents: 
0diff
changeset | 345 | |
| 
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML.  These support forward proof, resolving a
 lcp parents: 
0diff
changeset | 346 | (*As above, but for rule lists*) | 
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 347 | fun rlss MRL bottom_rls = | 
| 11 
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML.  These support forward proof, resolving a
 lcp parents: 
0diff
changeset | 348 | let fun rs_aux i [] = bottom_rls | 
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 349 | | rs_aux i (rls::rlss) = rls RLN (i, rs_aux (i+1) rlss) | 
| 11 
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML.  These support forward proof, resolving a
 lcp parents: 
0diff
changeset | 350 | in rs_aux 1 rlss end; | 
| 
d0e17c42dbb4
Added MRS, MRL from ZF/ROOT.ML.  These support forward proof, resolving a
 lcp parents: 
0diff
changeset | 351 | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 352 | (*compose Q and [...,Qi,Q(i+1),...]==>R to [...,Q(i+1),...]==>R | 
| 0 | 353 | with no lifting or renaming! Q may contain ==> or meta-quants | 
| 354 | ALWAYS deletes premise i *) | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 355 | fun compose(tha,i,thb) = | 
| 4270 | 356 | Seq.list_of (bicompose false (false,tha,0) i thb); | 
| 0 | 357 | |
| 6946 | 358 | fun compose_single (tha,i,thb) = | 
| 359 | (case compose (tha,i,thb) of | |
| 360 | [th] => th | |
| 361 |   | _ => raise THM ("compose: unique result expected", i, [tha,thb]));
 | |
| 362 | ||
| 0 | 363 | (*compose Q and [Q1,Q2,...,Qk]==>R to [Q2,...,Qk]==>R getting unique result*) | 
| 364 | fun tha COMP thb = | |
| 365 | case compose(tha,1,thb) of | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 366 | [th] => th | 
| 0 | 367 |       | _ =>   raise THM("COMP", 1, [tha,thb]);
 | 
| 368 | ||
| 4016 | 369 | (** theorem equality **) | 
| 0 | 370 | |
| 371 | (*Do the two theorems have the same signature?*) | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 372 | fun eq_thm_sg (th1,th2) = Sign.eq_sg(#sign(rep_thm th1), #sign(rep_thm th2)); | 
| 0 | 373 | |
| 374 | (*Useful "distance" function for BEST_FIRST*) | |
| 375 | val size_of_thm = size_of_term o #prop o rep_thm; | |
| 376 | ||
| 377 | ||
| 1194 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 378 | (** Mark Staples's weaker version of eq_thm: ignores variable renaming and | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 379 | (some) type variable renaming **) | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 380 | |
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 381 | (* Can't use term_vars, because it sorts the resulting list of variable names. | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 382 | We instead need the unique list noramlised by the order of appearance | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 383 | in the term. *) | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 384 | fun term_vars' (t as Var(v,T)) = [t] | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 385 | | term_vars' (Abs(_,_,b)) = term_vars' b | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 386 | | term_vars' (f$a) = (term_vars' f) @ (term_vars' a) | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 387 | | term_vars' _ = []; | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 388 | |
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 389 | fun forall_intr_vars th = | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 390 |   let val {prop,sign,...} = rep_thm th;
 | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 391 | val vars = distinct (term_vars' prop); | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 392 | in forall_intr_list (map (cterm_of sign) vars) th end; | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 393 | |
| 1237 | 394 | fun weak_eq_thm (tha,thb) = | 
| 1194 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 395 | eq_thm(forall_intr_vars (freezeT tha), forall_intr_vars (freezeT thb)); | 
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 396 | |
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 397 | |
| 
563ecd14c1d8
Added weak_eq_thm and forall_intr_vars (thanks to Mark Staples)
 lcp parents: 
952diff
changeset | 398 | |
| 0 | 399 | (*** Meta-Rewriting Rules ***) | 
| 400 | ||
| 6390 | 401 | val proto_sign = Theory.sign_of ProtoPure.thy; | 
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 402 | |
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 403 | fun read_prop s = read_cterm proto_sign (s, propT); | 
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 404 | |
| 7404 | 405 | fun store_thm name thm = hd (PureThy.smart_store_thms (name, [standard thm])); | 
| 4016 | 406 | |
| 0 | 407 | val reflexive_thm = | 
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 408 |   let val cx = cterm_of proto_sign (Var(("x",0),TVar(("'a",0),logicS)))
 | 
| 4016 | 409 | in store_thm "reflexive" (Thm.reflexive cx) end; | 
| 0 | 410 | |
| 411 | val symmetric_thm = | |
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 412 | let val xy = read_prop "x::'a::logic == y" | 
| 8328 | 413 | in store_thm "symmetric" | 
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 414 | (Thm.implies_intr_hyps(Thm.symmetric(Thm.assume xy))) | 
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 415 | end; | 
| 0 | 416 | |
| 417 | val transitive_thm = | |
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 418 | let val xy = read_prop "x::'a::logic == y" | 
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 419 | val yz = read_prop "y::'a::logic == z" | 
| 0 | 420 | val xythm = Thm.assume xy and yzthm = Thm.assume yz | 
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 421 | in store_thm "transitive" (Thm.implies_intr yz (Thm.transitive xythm yzthm)) | 
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 422 | end; | 
| 0 | 423 | |
| 4679 | 424 | fun symmetric_fun thm = thm RS symmetric_thm; | 
| 425 | ||
| 229 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 426 | (** Below, a "conversion" has type cterm -> thm **) | 
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 427 | |
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 428 | val refl_implies = reflexive (cterm_of proto_sign implies); | 
| 0 | 429 | |
| 430 | (*In [A1,...,An]==>B, rewrite the selected A's only -- for rewrite_goals_tac*) | |
| 214 
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
 nipkow parents: 
211diff
changeset | 431 | (*Do not rewrite flex-flex pairs*) | 
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 432 | fun goals_conv pred cv = | 
| 229 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 433 | let fun gconv i ct = | 
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 434 | let val (A,B) = dest_implies ct | 
| 229 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 435 | val (thA,j) = case term_of A of | 
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 436 |                   Const("=?=",_)$_$_ => (reflexive A, i)
 | 
| 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 437 | | _ => (if pred i then cv A else reflexive A, i+1) | 
| 2004 
3411fe560611
New operations on cterms.  Now same names as in Logic
 paulson parents: 
1906diff
changeset | 438 | in combination (combination refl_implies thA) (gconv j B) end | 
| 229 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 439 | handle TERM _ => reflexive ct | 
| 0 | 440 | in gconv 1 end; | 
| 441 | ||
| 442 | (*Use a conversion to transform a theorem*) | |
| 229 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 443 | fun fconv_rule cv th = equal_elim (cv (cprop_of th)) th; | 
| 0 | 444 | |
| 445 | (*rewriting conversion*) | |
| 229 
4002c4cd450c
Pure:  MAJOR CHANGE.  Moved ML types ctyp and cterm and their associated
 lcp parents: 
214diff
changeset | 446 | fun rew_conv mode prover mss = rewrite_cterm mode mss prover; | 
| 0 | 447 | |
| 448 | (*Rewrite a theorem*) | |
| 3575 
4e9beacb5339
improved rewrite_thm / rewrite_goals to handle conditional eqns;
 wenzelm parents: 
3555diff
changeset | 449 | fun rewrite_rule_aux _ [] th = th | 
| 
4e9beacb5339
improved rewrite_thm / rewrite_goals to handle conditional eqns;
 wenzelm parents: 
3555diff
changeset | 450 | | rewrite_rule_aux prover thms th = | 
| 4713 | 451 | fconv_rule (rew_conv (true,false,false) prover (Thm.mss_of thms)) th; | 
| 0 | 452 | |
| 3555 | 453 | fun rewrite_thm mode prover mss = fconv_rule (rew_conv mode prover mss); | 
| 5079 | 454 | fun rewrite_cterm mode prover mss = Thm.rewrite_cterm mode mss prover; | 
| 3555 | 455 | |
| 0 | 456 | (*Rewrite the subgoals of a proof state (represented by a theorem) *) | 
| 3575 
4e9beacb5339
improved rewrite_thm / rewrite_goals to handle conditional eqns;
 wenzelm parents: 
3555diff
changeset | 457 | fun rewrite_goals_rule_aux _ [] th = th | 
| 
4e9beacb5339
improved rewrite_thm / rewrite_goals to handle conditional eqns;
 wenzelm parents: 
3555diff
changeset | 458 | | rewrite_goals_rule_aux prover thms th = | 
| 4713 | 459 | fconv_rule (goals_conv (K true) (rew_conv (true, true, false) prover | 
| 3575 
4e9beacb5339
improved rewrite_thm / rewrite_goals to handle conditional eqns;
 wenzelm parents: 
3555diff
changeset | 460 | (Thm.mss_of thms))) th; | 
| 0 | 461 | |
| 462 | (*Rewrite the subgoal of a proof state (represented by a theorem) *) | |
| 214 
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
 nipkow parents: 
211diff
changeset | 463 | fun rewrite_goal_rule mode prover mss i thm = | 
| 
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
 nipkow parents: 
211diff
changeset | 464 | if 0 < i andalso i <= nprems_of thm | 
| 
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
 nipkow parents: 
211diff
changeset | 465 | then fconv_rule (goals_conv (fn j => j=i) (rew_conv mode prover mss)) thm | 
| 
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
 nipkow parents: 
211diff
changeset | 466 |   else raise THM("rewrite_goal_rule",i,[thm]);
 | 
| 0 | 467 | |
| 468 | ||
| 469 | (*** Some useful meta-theorems ***) | |
| 470 | ||
| 471 | (*The rule V/V, obtains assumption solving for eresolve_tac*) | |
| 7380 | 472 | val asm_rl = store_thm "asm_rl" (trivial(read_prop "PROP ?psi")); | 
| 473 | val _ = store_thm "_" asm_rl; | |
| 0 | 474 | |
| 475 | (*Meta-level cut rule: [| V==>W; V |] ==> W *) | |
| 4016 | 476 | val cut_rl = | 
| 477 | store_thm "cut_rl" | |
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 478 | (trivial(read_prop "PROP ?psi ==> PROP ?theta")); | 
| 0 | 479 | |
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 480 | (*Generalized elim rule for one conclusion; cut_rl with reversed premises: | 
| 0 | 481 | [| PROP V; PROP V ==> PROP W |] ==> PROP W *) | 
| 482 | val revcut_rl = | |
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 483 | let val V = read_prop "PROP V" | 
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 484 | and VW = read_prop "PROP V ==> PROP W"; | 
| 4016 | 485 | in | 
| 486 | store_thm "revcut_rl" | |
| 487 | (implies_intr V (implies_intr VW (implies_elim (assume VW) (assume V)))) | |
| 0 | 488 | end; | 
| 489 | ||
| 668 | 490 | (*for deleting an unwanted assumption*) | 
| 491 | val thin_rl = | |
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 492 | let val V = read_prop "PROP V" | 
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 493 | and W = read_prop "PROP W"; | 
| 4016 | 494 | in store_thm "thin_rl" (implies_intr V (implies_intr W (assume W))) | 
| 668 | 495 | end; | 
| 496 | ||
| 0 | 497 | (* (!!x. PROP ?V) == PROP ?V Allows removal of redundant parameters*) | 
| 498 | val triv_forall_equality = | |
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 499 | let val V = read_prop "PROP V" | 
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 500 | and QV = read_prop "!!x::'a. PROP V" | 
| 8086 | 501 |       and x  = read_cterm proto_sign ("x", TypeInfer.logicT);
 | 
| 4016 | 502 | in | 
| 503 | store_thm "triv_forall_equality" | |
| 504 | (equal_intr (implies_intr QV (forall_elim x (assume QV))) | |
| 505 | (implies_intr V (forall_intr x (assume V)))) | |
| 0 | 506 | end; | 
| 507 | ||
| 1756 | 508 | (* (PROP ?PhiA ==> PROP ?PhiB ==> PROP ?Psi) ==> | 
| 509 | (PROP ?PhiB ==> PROP ?PhiA ==> PROP ?Psi) | |
| 510 | `thm COMP swap_prems_rl' swaps the first two premises of `thm' | |
| 511 | *) | |
| 512 | val swap_prems_rl = | |
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 513 | let val cmajor = read_prop "PROP PhiA ==> PROP PhiB ==> PROP Psi"; | 
| 1756 | 514 | val major = assume cmajor; | 
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 515 | val cminor1 = read_prop "PROP PhiA"; | 
| 1756 | 516 | val minor1 = assume cminor1; | 
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 517 | val cminor2 = read_prop "PROP PhiB"; | 
| 1756 | 518 | val minor2 = assume cminor2; | 
| 4016 | 519 | in store_thm "swap_prems_rl" | 
| 1756 | 520 | (implies_intr cmajor (implies_intr cminor2 (implies_intr cminor1 | 
| 521 | (implies_elim (implies_elim major minor1) minor2)))) | |
| 522 | end; | |
| 523 | ||
| 3653 | 524 | (* [| PROP ?phi ==> PROP ?psi; PROP ?psi ==> PROP ?phi |] | 
| 525 | ==> PROP ?phi == PROP ?psi | |
| 8328 | 526 | Introduction rule for == as a meta-theorem. | 
| 3653 | 527 | *) | 
| 528 | val equal_intr_rule = | |
| 4610 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 529 | let val PQ = read_prop "PROP phi ==> PROP psi" | 
| 
b1322be47244
Tidying; rotate_prems; moved freeze_thaw from tactic.ML
 paulson parents: 
4588diff
changeset | 530 | and QP = read_prop "PROP psi ==> PROP phi" | 
| 4016 | 531 | in | 
| 532 | store_thm "equal_intr_rule" | |
| 533 | (implies_intr PQ (implies_intr QP (equal_intr (assume PQ) (assume QP)))) | |
| 3653 | 534 | end; | 
| 535 | ||
| 4285 | 536 | |
| 8129 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 537 | (*** Instantiate theorem th, reading instantiations under signature sg ****) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 538 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 539 | (*Version that normalizes the result: Thm.instantiate no longer does that*) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 540 | fun instantiate instpair th = Thm.instantiate instpair th COMP asm_rl; | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 541 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 542 | fun read_instantiate_sg sg sinsts th = | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 543 | let val ts = types_sorts th; | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 544 | val used = add_term_tvarnames(#prop(rep_thm th),[]); | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 545 | in instantiate (read_insts sg ts ts used sinsts) th end; | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 546 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 547 | (*Instantiate theorem th, reading instantiations under theory of th*) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 548 | fun read_instantiate sinsts th = | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 549 | read_instantiate_sg (#sign (rep_thm th)) sinsts th; | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 550 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 551 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 552 | (*Left-to-right replacements: tpairs = [...,(vi,ti),...]. | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 553 | Instantiates distinct Vars by terms, inferring type instantiations. *) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 554 | local | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 555 | fun add_types ((ct,cu), (sign,tye,maxidx)) = | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 556 |     let val {sign=signt, t=t, T= T, maxidx=maxt,...} = rep_cterm ct
 | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 557 |         and {sign=signu, t=u, T= U, maxidx=maxu,...} = rep_cterm cu;
 | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 558 | val maxi = Int.max(maxidx, Int.max(maxt, maxu)); | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 559 | val sign' = Sign.merge(sign, Sign.merge(signt, signu)) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 560 | val (tye',maxi') = Type.unify (#tsig(Sign.rep_sg sign')) maxi tye (T,U) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 561 |           handle Type.TUNIFY => raise TYPE("add_types", [T,U], [t,u])
 | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 562 | in (sign', tye', maxi') end; | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 563 | in | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 564 | fun cterm_instantiate ctpairs0 th = | 
| 8406 
a217b0cd304d
Type.unify and Type.typ_match now use Vartab instead of association lists.
 berghofe parents: 
8365diff
changeset | 565 | let val (sign,tye,_) = foldr add_types (ctpairs0, (#sign(rep_thm th), Vartab.empty, 0)) | 
| 8129 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 566 | val tsig = #tsig(Sign.rep_sg sign); | 
| 8406 
a217b0cd304d
Type.unify and Type.typ_match now use Vartab instead of association lists.
 berghofe parents: 
8365diff
changeset | 567 | fun instT(ct,cu) = let val inst = subst_TVars_Vartab tye | 
| 8129 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 568 | in (cterm_fun inst ct, cterm_fun inst cu) end | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 569 | fun ctyp2 (ix,T) = (ix, ctyp_of sign T) | 
| 8406 
a217b0cd304d
Type.unify and Type.typ_match now use Vartab instead of association lists.
 berghofe parents: 
8365diff
changeset | 570 | in instantiate (map ctyp2 (Vartab.dest tye), map instT ctpairs0) th end | 
| 8129 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 571 | handle TERM _ => | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 572 |            raise THM("cterm_instantiate: incompatible signatures",0,[th])
 | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 573 | | TYPE (msg, _, _) => raise THM(msg, 0, [th]) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 574 | end; | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 575 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 576 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 577 | (** Derived rules mainly for METAHYPS **) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 578 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 579 | (*Given the term "a", takes (%x.t)==(%x.u) to t[a/x]==u[a/x]*) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 580 | fun equal_abs_elim ca eqth = | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 581 |   let val {sign=signa, t=a, ...} = rep_cterm ca
 | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 582 | and combth = combination eqth (reflexive ca) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 583 |       val {sign,prop,...} = rep_thm eqth
 | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 584 | val (abst,absu) = Logic.dest_equals prop | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 585 | val cterm = cterm_of (Sign.merge (sign,signa)) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 586 | in transitive (symmetric (beta_conversion (cterm (abst$a)))) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 587 | (transitive combth (beta_conversion (cterm (absu$a)))) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 588 | end | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 589 |   handle THM _ => raise THM("equal_abs_elim", 0, [eqth]);
 | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 590 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 591 | (*Calling equal_abs_elim with multiple terms*) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 592 | fun equal_abs_elim_list cts th = foldr (uncurry equal_abs_elim) (rev cts, th); | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 593 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 594 | local | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 595 |   val alpha = TVar(("'a",0), [])     (*  type ?'a::{}  *)
 | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 596 |   fun err th = raise THM("flexpair_inst: ", 0, [th])
 | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 597 | fun flexpair_inst def th = | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 598 |     let val {prop = Const _ $ t $ u,  sign,...} = rep_thm th
 | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 599 | val cterm = cterm_of sign | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 600 | fun cvar a = cterm(Var((a,0),alpha)) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 601 | val def' = cterm_instantiate [(cvar"t", cterm t), (cvar"u", cterm u)] | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 602 | def | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 603 | in equal_elim def' th | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 604 | end | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 605 | handle THM _ => err th | Bind => err th | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 606 | in | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 607 | val flexpair_intr = flexpair_inst (symmetric ProtoPure.flexpair_def) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 608 | and flexpair_elim = flexpair_inst ProtoPure.flexpair_def | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 609 | end; | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 610 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 611 | (*Version for flexflex pairs -- this supports lifting.*) | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 612 | fun flexpair_abs_elim_list cts = | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 613 | flexpair_intr o equal_abs_elim_list cts o flexpair_elim; | 
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 614 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 615 | |
| 
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
 paulson parents: 
8086diff
changeset | 616 | (*** GOAL (PROP A) <==> PROP A ***) | 
| 4789 | 617 | |
| 618 | local | |
| 619 | val A = read_prop "PROP A"; | |
| 620 | val G = read_prop "GOAL (PROP A)"; | |
| 621 | val (G_def, _) = freeze_thaw ProtoPure.Goal_def; | |
| 622 | in | |
| 623 | val triv_goal = store_thm "triv_goal" (Thm.equal_elim (Thm.symmetric G_def) (Thm.assume A)); | |
| 624 | val rev_triv_goal = store_thm "rev_triv_goal" (Thm.equal_elim G_def (Thm.assume G)); | |
| 625 | end; | |
| 626 | ||
| 6995 | 627 | val mk_cgoal = Thm.capply (Thm.cterm_of proto_sign (Const ("Goal", propT --> propT)));
 | 
| 628 | fun assume_goal ct = Thm.assume (mk_cgoal ct) RS rev_triv_goal; | |
| 629 | ||
| 4789 | 630 | |
| 4285 | 631 | |
| 5688 | 632 | (** variations on instantiate **) | 
| 4285 | 633 | |
| 8550 
b44c185f8018
new meta-rule "inst", a shorthand for read_instantiate_sg
 paulson parents: 
8496diff
changeset | 634 | (*shorthand for instantiating just one variable in the current theory*) | 
| 
b44c185f8018
new meta-rule "inst", a shorthand for read_instantiate_sg
 paulson parents: 
8496diff
changeset | 635 | fun inst x t = read_instantiate_sg (sign_of (the_context())) [(x,t)]; | 
| 
b44c185f8018
new meta-rule "inst", a shorthand for read_instantiate_sg
 paulson parents: 
8496diff
changeset | 636 | |
| 
b44c185f8018
new meta-rule "inst", a shorthand for read_instantiate_sg
 paulson parents: 
8496diff
changeset | 637 | |
| 4285 | 638 | (* collect vars *) | 
| 639 | ||
| 640 | val add_tvarsT = foldl_atyps (fn (vs, TVar v) => v ins vs | (vs, _) => vs); | |
| 641 | val add_tvars = foldl_types add_tvarsT; | |
| 642 | val add_vars = foldl_aterms (fn (vs, Var v) => v ins vs | (vs, _) => vs); | |
| 643 | ||
| 5903 | 644 | fun tvars_of_terms ts = rev (foldl add_tvars ([], ts)); | 
| 645 | fun vars_of_terms ts = rev (foldl add_vars ([], ts)); | |
| 646 | ||
| 647 | fun tvars_of thm = tvars_of_terms [#prop (Thm.rep_thm thm)]; | |
| 648 | fun vars_of thm = vars_of_terms [#prop (Thm.rep_thm thm)]; | |
| 4285 | 649 | |
| 650 | ||
| 651 | (* instantiate by left-to-right occurrence of variables *) | |
| 652 | ||
| 653 | fun instantiate' cTs cts thm = | |
| 654 | let | |
| 655 | fun err msg = | |
| 656 |       raise TYPE ("instantiate': " ^ msg,
 | |
| 657 | mapfilter (apsome Thm.typ_of) cTs, | |
| 658 | mapfilter (apsome Thm.term_of) cts); | |
| 659 | ||
| 660 | fun inst_of (v, ct) = | |
| 661 | (Thm.cterm_of (#sign (Thm.rep_cterm ct)) (Var v), ct) | |
| 662 | handle TYPE (msg, _, _) => err msg; | |
| 663 | ||
| 664 | fun zip_vars _ [] = [] | |
| 665 | | zip_vars (_ :: vs) (None :: opt_ts) = zip_vars vs opt_ts | |
| 666 | | zip_vars (v :: vs) (Some t :: opt_ts) = (v, t) :: zip_vars vs opt_ts | |
| 667 | | zip_vars [] _ = err "more instantiations than variables in thm"; | |
| 668 | ||
| 669 | (*instantiate types first!*) | |
| 670 | val thm' = | |
| 671 | if forall is_none cTs then thm | |
| 672 | else Thm.instantiate (zip_vars (map fst (tvars_of thm)) cTs, []) thm; | |
| 673 | in | |
| 674 | if forall is_none cts then thm' | |
| 675 | else Thm.instantiate ([], map inst_of (zip_vars (vars_of thm') cts)) thm' | |
| 676 | end; | |
| 677 | ||
| 678 | ||
| 5688 | 679 | (* unvarify(T) *) | 
| 680 | ||
| 681 | (*assume thm in standard form, i.e. no frees, 0 var indexes*) | |
| 682 | ||
| 683 | fun unvarifyT thm = | |
| 684 | let | |
| 685 | val cT = Thm.ctyp_of (Thm.sign_of_thm thm); | |
| 686 | val tfrees = map (fn ((x, _), S) => Some (cT (TFree (x, S)))) (tvars_of thm); | |
| 687 | in instantiate' tfrees [] thm end; | |
| 688 | ||
| 689 | fun unvarify raw_thm = | |
| 690 | let | |
| 691 | val thm = unvarifyT raw_thm; | |
| 692 | val ct = Thm.cterm_of (Thm.sign_of_thm thm); | |
| 693 | val frees = map (fn ((x, _), T) => Some (ct (Free (x, T)))) (vars_of thm); | |
| 694 | in instantiate' [] frees thm end; | |
| 695 | ||
| 696 | ||
| 8605 | 697 | (* tvars_intr_list *) | 
| 698 | ||
| 699 | fun tfrees_of thm = | |
| 700 |   let val {hyps, prop, ...} = Thm.rep_thm thm
 | |
| 701 | in foldr Term.add_term_tfree_names (prop :: hyps, []) end; | |
| 702 | ||
| 703 | fun tvars_intr_list tfrees thm = | |
| 704 | Thm.varifyT' (tfrees_of thm \\ tfrees) thm; | |
| 705 | ||
| 706 | ||
| 6435 | 707 | (* increment var indexes *) | 
| 708 | ||
| 709 | fun incr_indexes 0 thm = thm | |
| 710 | | incr_indexes inc thm = | |
| 711 | let | |
| 712 | val sign = Thm.sign_of_thm thm; | |
| 713 | ||
| 714 | fun inc_tvar ((x, i), S) = Some (Thm.ctyp_of sign (TVar ((x, i + inc), S))); | |
| 715 | fun inc_var ((x, i), T) = Some (Thm.cterm_of sign (Var ((x, i + inc), T))); | |
| 6930 | 716 | val thm' = instantiate' (map inc_tvar (tvars_of thm)) [] thm; | 
| 717 | val thm'' = instantiate' [] (map inc_var (vars_of thm')) thm'; | |
| 718 | in thm'' end; | |
| 6435 | 719 | |
| 720 | fun incr_indexes_wrt is cTs cts thms = | |
| 721 | let | |
| 722 | val maxidx = | |
| 723 | foldl Int.max (~1, is @ | |
| 724 | map (maxidx_of_typ o #T o Thm.rep_ctyp) cTs @ | |
| 725 | map (#maxidx o Thm.rep_cterm) cts @ | |
| 726 | map (#maxidx o Thm.rep_thm) thms); | |
| 727 | in incr_indexes (maxidx + 1) end; | |
| 728 | ||
| 729 | ||
| 8328 | 730 | (* freeze_all *) | 
| 731 | ||
| 732 | (*freeze all (T)Vars; assumes thm in standard form*) | |
| 733 | ||
| 734 | fun freeze_all_TVars thm = | |
| 735 | (case tvars_of thm of | |
| 736 | [] => thm | |
| 737 | | tvars => | |
| 738 | let val cert = Thm.ctyp_of (Thm.sign_of_thm thm) | |
| 739 | in instantiate' (map (fn ((x, _), S) => Some (cert (TFree (x, S)))) tvars) [] thm end); | |
| 740 | ||
| 741 | fun freeze_all_Vars thm = | |
| 742 | (case vars_of thm of | |
| 743 | [] => thm | |
| 744 | | vars => | |
| 745 | let val cert = Thm.cterm_of (Thm.sign_of_thm thm) | |
| 746 | in instantiate' [] (map (fn ((x, _), T) => Some (cert (Free (x, T)))) vars) thm end); | |
| 747 | ||
| 748 | val freeze_all = freeze_all_Vars o freeze_all_TVars; | |
| 749 | ||
| 750 | ||
| 5688 | 751 | (* mk_triv_goal *) | 
| 752 | ||
| 753 | (*make an initial proof state, "PROP A ==> (PROP A)" *) | |
| 5311 
f3f71669878e
Rule mk_triv_goal for making instances of triv_goal
 paulson parents: 
5079diff
changeset | 754 | fun mk_triv_goal ct = instantiate' [] [Some ct] triv_goal; | 
| 
f3f71669878e
Rule mk_triv_goal for making instances of triv_goal
 paulson parents: 
5079diff
changeset | 755 | |
| 5688 | 756 | |
| 6086 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 757 | |
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 758 | (** basic attributes **) | 
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 759 | |
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 760 | (* dependent rules *) | 
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 761 | |
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 762 | fun rule_attribute f (x, thm) = (x, (f x thm)); | 
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 763 | |
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 764 | |
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 765 | (* add / delete tags *) | 
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 766 | |
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 767 | fun map_tags f thm = | 
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 768 | Thm.put_name_tags (Thm.name_of_thm thm, f (#2 (Thm.get_name_tags thm))) thm; | 
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 769 | |
| 8365 | 770 | fun tag_rule tg = map_tags (fn tgs => if tg mem tgs then tgs else tgs @ [tg]); | 
| 8496 | 771 | fun untag_rule s = map_tags (filter_out (equal s o #1)); | 
| 8365 | 772 | |
| 773 | fun tag tg x = rule_attribute (K (tag_rule tg)) x; | |
| 8496 | 774 | fun untag s x = rule_attribute (K (untag_rule s)) x; | 
| 6086 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 775 | |
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 776 | fun simple_tag name x = tag (name, []) x; | 
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 777 | |
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 778 | fun tag_lemma x = simple_tag "lemma" x; | 
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 779 | fun tag_assumption x = simple_tag "assumption" x; | 
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 780 | fun tag_internal x = simple_tag "internal" x; | 
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 781 | |
| 
8cd4190e633a
added rule_attribute: ('a -> thm -> thm) -> 'a attribute;
 wenzelm parents: 
5903diff
changeset | 782 | |
| 0 | 783 | end; | 
| 252 
7532f95d7f44
removed eq_sg, pprint_sg, print_sg (now in sign.ML);
 wenzelm parents: 
229diff
changeset | 784 | |
| 5903 | 785 | |
| 786 | structure BasicDrule: BASIC_DRULE = Drule; | |
| 787 | open BasicDrule; |