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