| author | huffman | 
| Thu, 04 Dec 2008 13:30:09 -0800 | |
| changeset 28986 | 1ff53ff7041d | 
| parent 28965 | 1de908189869 | 
| child 29265 | 5b4247055bd7 | 
| permissions | -rw-r--r-- | 
| 14620 
1be590fd2422
Minor cleanup of headers and some speedup of the HOL4 import.
 skalberg parents: 
14518diff
changeset | 1 | (* Title: HOL/Import/proof_kernel.ML | 
| 
1be590fd2422
Minor cleanup of headers and some speedup of the HOL4 import.
 skalberg parents: 
14518diff
changeset | 2 | ID: $Id$ | 
| 17490 | 3 | Author: Sebastian Skalberg (TU Muenchen), Steven Obua | 
| 14620 
1be590fd2422
Minor cleanup of headers and some speedup of the HOL4 import.
 skalberg parents: 
14518diff
changeset | 4 | *) | 
| 
1be590fd2422
Minor cleanup of headers and some speedup of the HOL4 import.
 skalberg parents: 
14518diff
changeset | 5 | |
| 14516 | 6 | signature ProofKernel = | 
| 7 | sig | |
| 8 | type hol_type | |
| 9 | type tag | |
| 10 | type term | |
| 11 | type thm | |
| 12 |     type ('a,'b) subst
 | |
| 24707 | 13 | |
| 14516 | 14 | type proof_info | 
| 15 | datatype proof = Proof of proof_info * proof_content | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 16 | and proof_content | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 17 | = PRefl of term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 18 | | PInstT of proof * (hol_type,hol_type) subst | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 19 | | PSubst of proof list * term * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 20 | | PAbs of proof * term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 21 | | PDisch of proof * term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 22 | | PMp of proof * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 23 | | PHyp of term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 24 | | PAxm of string * term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 25 | | PDef of string * string * term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 26 | | PTmSpec of string * string list * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 27 | | PTyDef of string * string * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 28 | | PTyIntro of string * string * string * string * term * term * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 29 | | POracle of tag * term list * term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 30 | | PDisk | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 31 | | PSpec of proof * term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 32 | | PInst of proof * (term,term) subst | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 33 | | PGen of proof * term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 34 | | PGenAbs of proof * term option * term list | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 35 | | PImpAS of proof * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 36 | | PSym of proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 37 | | PTrans of proof * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 38 | | PComb of proof * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 39 | | PEqMp of proof * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 40 | | PEqImp of proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 41 | | PExists of proof * term * term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 42 | | PChoose of term * proof * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 43 | | PConj of proof * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 44 | | PConjunct1 of proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 45 | | PConjunct2 of proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 46 | | PDisj1 of proof * term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 47 | | PDisj2 of proof * term | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 48 | | PDisjCases of proof * proof * proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 49 | | PNotI of proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 50 | | PNotE of proof | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 51 | | PContr of proof * term | 
| 14516 | 52 | |
| 53 | exception PK of string * string | |
| 54 | ||
| 14620 
1be590fd2422
Minor cleanup of headers and some speedup of the HOL4 import.
 skalberg parents: 
14518diff
changeset | 55 | val get_proof_dir: string -> theory -> string option | 
| 17657 | 56 | val disambiguate_frees : Thm.thm -> Thm.thm | 
| 14516 | 57 | val debug : bool ref | 
| 58 | val disk_info_of : proof -> (string * string) option | |
| 59 | val set_disk_info_of : proof -> string -> string -> unit | |
| 60 | val mk_proof : proof_content -> proof | |
| 61 | val content_of : proof -> proof_content | |
| 62 | val import_proof : string -> string -> theory -> (theory -> term) option * (theory -> proof) | |
| 63 | ||
| 64 | val rewrite_hol4_term: Term.term -> theory -> Thm.thm | |
| 65 | ||
| 66 | val type_of : term -> hol_type | |
| 67 | ||
| 68 | val get_thm : string -> string -> theory -> (theory * thm option) | |
| 69 | val get_def : string -> string -> term -> theory -> (theory * thm option) | |
| 70 | val get_axiom: string -> string -> theory -> (theory * thm option) | |
| 71 | ||
| 72 | val store_thm : string -> string -> thm -> theory -> theory * thm | |
| 73 | ||
| 74 | val to_isa_thm : thm -> (term * term) list * Thm.thm | |
| 75 | val to_isa_term: term -> Term.term | |
| 19064 | 76 | val to_hol_thm : Thm.thm -> thm | 
| 14516 | 77 | |
| 78 | val REFL : term -> theory -> theory * thm | |
| 79 | val ASSUME : term -> theory -> theory * thm | |
| 80 | val INST_TYPE : (hol_type,hol_type) subst -> thm -> theory -> theory * thm | |
| 81 | val INST : (term,term)subst -> thm -> theory -> theory * thm | |
| 82 | val EQ_MP : thm -> thm -> theory -> theory * thm | |
| 83 | val EQ_IMP_RULE : thm -> theory -> theory * thm | |
| 84 | val SUBST : thm list -> term -> thm -> theory -> theory * thm | |
| 85 | val DISJ_CASES : thm -> thm -> thm -> theory -> theory * thm | |
| 86 | val DISJ1: thm -> term -> theory -> theory * thm | |
| 87 | val DISJ2: term -> thm -> theory -> theory * thm | |
| 88 | val IMP_ANTISYM: thm -> thm -> theory -> theory * thm | |
| 89 | val SYM : thm -> theory -> theory * thm | |
| 90 | val MP : thm -> thm -> theory -> theory * thm | |
| 91 | val GEN : term -> thm -> theory -> theory * thm | |
| 92 | val CHOOSE : term -> thm -> thm -> theory -> theory * thm | |
| 93 | val EXISTS : term -> term -> thm -> theory -> theory * thm | |
| 94 | val ABS : term -> thm -> theory -> theory * thm | |
| 95 | val GEN_ABS : term option -> term list -> thm -> theory -> theory * thm | |
| 96 | val TRANS : thm -> thm -> theory -> theory * thm | |
| 97 | val CCONTR : term -> thm -> theory -> theory * thm | |
| 98 | val CONJ : thm -> thm -> theory -> theory * thm | |
| 99 | val CONJUNCT1: thm -> theory -> theory * thm | |
| 100 | val CONJUNCT2: thm -> theory -> theory * thm | |
| 101 | val NOT_INTRO: thm -> theory -> theory * thm | |
| 102 | val NOT_ELIM : thm -> theory -> theory * thm | |
| 103 | val SPEC : term -> thm -> theory -> theory * thm | |
| 104 | val COMB : thm -> thm -> theory -> theory * thm | |
| 105 | val DISCH: term -> thm -> theory -> theory * thm | |
| 106 | ||
| 107 | val type_introduction: string -> string -> string -> string -> string -> term * term -> thm -> theory -> theory * thm | |
| 108 | ||
| 109 | val new_definition : string -> string -> term -> theory -> theory * thm | |
| 110 | val new_specification : string -> string -> string list -> thm -> theory -> theory * thm | |
| 111 | val new_type_definition : string -> string -> string -> thm -> theory -> theory * thm | |
| 112 | val new_axiom : string -> term -> theory -> theory * thm | |
| 113 | ||
| 24707 | 114 | val prin : term -> unit | 
| 115 | val protect_factname : string -> string | |
| 19067 | 116 | val replay_protect_varname : string -> string -> unit | 
| 19068 | 117 | val replay_add_dump : string -> theory -> theory | 
| 14516 | 118 | end | 
| 119 | ||
| 120 | structure ProofKernel :> ProofKernel = | |
| 121 | struct | |
| 122 | type hol_type = Term.typ | |
| 123 | type term = Term.term | |
| 124 | datatype tag = Tag of string list | |
| 125 | type ('a,'b) subst = ('a * 'b) list
 | |
| 126 | datatype thm = HOLThm of (Term.term * Term.term) list * Thm.thm | |
| 127 | ||
| 24707 | 128 | fun hthm2thm (HOLThm (_, th)) = th | 
| 17324 | 129 | |
| 19064 | 130 | fun to_hol_thm th = HOLThm ([], th) | 
| 17328 | 131 | |
| 19068 | 132 | val replay_add_dump = add_dump | 
| 133 | fun add_dump s thy = (ImportRecorder.add_dump s; replay_add_dump s thy) | |
| 134 | ||
| 14516 | 135 | datatype proof_info | 
| 136 |   = Info of {disk_info: (string * string) option ref}
 | |
| 24707 | 137 | |
| 14516 | 138 | datatype proof = Proof of proof_info * proof_content | 
| 139 | and proof_content | |
| 140 | = PRefl of term | |
| 141 | | PInstT of proof * (hol_type,hol_type) subst | |
| 142 | | PSubst of proof list * term * proof | |
| 143 | | PAbs of proof * term | |
| 144 | | PDisch of proof * term | |
| 145 | | PMp of proof * proof | |
| 146 | | PHyp of term | |
| 147 | | PAxm of string * term | |
| 148 | | PDef of string * string * term | |
| 149 | | PTmSpec of string * string list * proof | |
| 150 | | PTyDef of string * string * proof | |
| 151 | | PTyIntro of string * string * string * string * term * term * proof | |
| 152 | | POracle of tag * term list * term | |
| 153 | | PDisk | |
| 154 | | PSpec of proof * term | |
| 155 | | PInst of proof * (term,term) subst | |
| 156 | | PGen of proof * term | |
| 157 | | PGenAbs of proof * term option * term list | |
| 158 | | PImpAS of proof * proof | |
| 159 | | PSym of proof | |
| 160 | | PTrans of proof * proof | |
| 161 | | PComb of proof * proof | |
| 162 | | PEqMp of proof * proof | |
| 163 | | PEqImp of proof | |
| 164 | | PExists of proof * term * term | |
| 165 | | PChoose of term * proof * proof | |
| 166 | | PConj of proof * proof | |
| 167 | | PConjunct1 of proof | |
| 168 | | PConjunct2 of proof | |
| 169 | | PDisj1 of proof * term | |
| 170 | | PDisj2 of proof * term | |
| 171 | | PDisjCases of proof * proof * proof | |
| 172 | | PNotI of proof | |
| 173 | | PNotE of proof | |
| 174 | | PContr of proof * term | |
| 175 | ||
| 176 | exception PK of string * string | |
| 177 | fun ERR f mesg = PK (f,mesg) | |
| 178 | ||
| 24707 | 179 | fun print_exn e = | 
| 14516 | 180 | case e of | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 181 |         PK (m,s) => (writeln ("PK (" ^ m ^ "): " ^ s); raise e)
 | 
| 17959 | 182 | | _ => OldGoals.print_exn e | 
| 14516 | 183 | |
| 184 | (* Compatibility. *) | |
| 185 | ||
| 19264 | 186 | val string_of_mixfix = Pretty.string_of o Syntax.pretty_mixfix; | 
| 187 | ||
| 14685 | 188 | fun mk_syn thy c = | 
| 16427 | 189 | if Syntax.is_identifier c andalso not (Syntax.is_keyword (Sign.syn_of thy) c) then NoSyn | 
| 14685 | 190 | else Syntax.literal c | 
| 14516 | 191 | |
| 14673 | 192 | fun quotename c = | 
| 27353 
71c4dd53d4cb
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
 wenzelm parents: 
27187diff
changeset | 193 | if Syntax.is_identifier c andalso not (OuterKeyword.is_keyword c) then c else quote c | 
| 14516 | 194 | |
| 17652 | 195 | fun simple_smart_string_of_cterm ct = | 
| 196 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 197 | val thy = Thm.theory_of_cterm ct; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 198 |         val {t,T,...} = rep_cterm ct
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 199 | (* Hack to avoid parse errors with Trueprop *) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 200 | val ct = (cterm_of thy (HOLogic.dest_Trueprop t) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 201 | handle TERM _ => ct) | 
| 17652 | 202 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 203 | quote( | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 204 | PrintMode.setmp [] ( | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 205 | Library.setmp show_brackets false ( | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 206 | Library.setmp show_all_types true ( | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 207 | Library.setmp Syntax.ambiguity_is_error false ( | 
| 26928 | 208 | Library.setmp show_sorts true Display.string_of_cterm)))) | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 209 | ct) | 
| 17652 | 210 | end | 
| 211 | ||
| 19064 | 212 | exception SMART_STRING | 
| 213 | ||
| 14516 | 214 | fun smart_string_of_cterm ct = | 
| 215 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 216 | val thy = Thm.theory_of_cterm ct | 
| 24707 | 217 | val ctxt = ProofContext.init thy | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 218 |         val {t,T,...} = rep_cterm ct
 | 
| 14516 | 219 | (* Hack to avoid parse errors with Trueprop *) | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 220 | val ct = (cterm_of thy (HOLogic.dest_Trueprop t) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 221 | handle TERM _ => ct) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 222 | fun match u = t aconv u | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 223 | fun G 0 = Library.setmp show_types true (Library.setmp show_sorts true) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 224 | | G 1 = Library.setmp show_brackets true (G 0) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 225 | | G 2 = Library.setmp show_all_types true (G 0) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 226 | | G 3 = Library.setmp show_brackets true (G 2) | 
| 24707 | 227 | | G _ = raise SMART_STRING | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 228 | fun F n = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 229 | let | 
| 26928 | 230 | val str = Library.setmp show_brackets false (G n Display.string_of_cterm) ct | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 231 | val u = Syntax.parse_term ctxt str | 
| 24707 | 232 | |> TypeInfer.constrain T |> Syntax.check_term ctxt | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 233 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 234 | if match u | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 235 | then quote str | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 236 | else F (n+1) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 237 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 238 | handle ERROR mesg => F (n+1) | 
| 27187 | 239 |                  | SMART_STRING => error ("smart_string failed for: "^(G 0 Display.string_of_cterm ct))
 | 
| 14516 | 240 | in | 
| 24634 | 241 | PrintMode.setmp [] (Library.setmp Syntax.ambiguity_is_error true F) 0 | 
| 14516 | 242 | end | 
| 18678 | 243 | handle ERROR mesg => simple_smart_string_of_cterm ct | 
| 24707 | 244 | |
| 14516 | 245 | val smart_string_of_thm = smart_string_of_cterm o cprop_of | 
| 246 | ||
| 26928 | 247 | fun prth th = writeln (PrintMode.setmp [] Display.string_of_thm th) | 
| 248 | fun prc ct = writeln (PrintMode.setmp [] Display.string_of_cterm ct) | |
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26928diff
changeset | 249 | fun prin t = writeln (PrintMode.setmp [] (fn () => Syntax.string_of_term_global (the_context ()) t) ()); | 
| 14516 | 250 | fun pth (HOLThm(ren,thm)) = | 
| 251 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 252 | (*val _ = writeln "Renaming:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 253 | val _ = app (fn(v,w) => (prin v; writeln " -->"; prin w)) ren*) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 254 | val _ = prth thm | 
| 14516 | 255 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 256 | () | 
| 14516 | 257 | end | 
| 258 | ||
| 259 | fun disk_info_of (Proof(Info{disk_info,...},_)) = !disk_info
 | |
| 15531 | 260 | fun mk_proof p = Proof(Info{disk_info = ref NONE},p)
 | 
| 14516 | 261 | fun content_of (Proof(_,p)) = p | 
| 262 | ||
| 263 | fun set_disk_info_of (Proof(Info{disk_info,...},_)) thyname thmname =
 | |
| 15531 | 264 | disk_info := SOME(thyname,thmname) | 
| 14516 | 265 | |
| 266 | structure Lib = | |
| 267 | struct | |
| 268 | fun wrap b e s = String.concat[b,s,e] | |
| 269 | ||
| 270 | fun assoc x = | |
| 271 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 272 |         fun F [] = raise PK("Lib.assoc","Not found")
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 273 | | F ((x',y)::rest) = if x = x' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 274 | then y | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 275 | else F rest | 
| 14516 | 276 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 277 | F | 
| 14516 | 278 | end | 
| 24707 | 279 | fun i mem L = | 
| 280 | let fun itr [] = false | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 281 | | itr (a::rst) = i=a orelse itr rst | 
| 14516 | 282 | in itr L end; | 
| 24707 | 283 | |
| 14516 | 284 | fun insert i L = if i mem L then L else i::L | 
| 24707 | 285 | |
| 14516 | 286 | fun mk_set [] = [] | 
| 287 | | mk_set (a::rst) = insert a (mk_set rst) | |
| 24707 | 288 | |
| 14516 | 289 | fun [] union S = S | 
| 290 | | S union [] = S | |
| 291 | | (a::rst) union S2 = rst union (insert a S2) | |
| 24707 | 292 | |
| 14516 | 293 | fun implode_subst [] = [] | 
| 294 | | implode_subst (x::r::rest) = ((x,r)::(implode_subst rest)) | |
| 295 | | implode_subst _ = raise ERR "implode_subst" "malformed substitution list" | |
| 296 | ||
| 297 | end | |
| 298 | open Lib | |
| 299 | ||
| 300 | structure Tag = | |
| 301 | struct | |
| 302 | val empty_tag = Tag [] | |
| 303 | fun read name = Tag [name] | |
| 304 | fun merge (Tag tag1) (Tag tag2) = Tag (Lib.union(tag1,tag2)) | |
| 305 | end | |
| 306 | ||
| 24707 | 307 | (* Actual code. *) | 
| 14516 | 308 | |
| 309 | fun get_segment thyname l = (Lib.assoc "s" l | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 310 | handle PK _ => thyname) | 
| 14518 
c3019a66180f
Added a number of explicit type casts and delayed evaluations (all seemingly
 skalberg parents: 
14516diff
changeset | 311 | val get_name : (string * string) list -> string = Lib.assoc "n" | 
| 14516 | 312 | |
| 313 | local | |
| 314 | open LazyScan | |
| 315 | infix 7 |-- --| | |
| 316 | infix 5 :-- -- ^^ | |
| 317 | infix 3 >> | |
| 318 | infix 0 || | |
| 319 | in | |
| 320 | exception XML of string | |
| 321 | ||
| 322 | datatype xml = Elem of string * (string * string) list * xml list | |
| 323 | datatype XMLtype = XMLty of xml | FullType of hol_type | |
| 324 | datatype XMLterm = XMLtm of xml | FullTerm of term | |
| 325 | ||
| 326 | fun pair x y = (x,y) | |
| 327 | ||
| 328 | fun scan_id toks = | |
| 329 | let | |
| 330 | val (x,toks2) = one Char.isAlpha toks | |
| 331 | val (xs,toks3) = any Char.isAlphaNum toks2 | |
| 332 | in | |
| 333 | (String.implode (x::xs),toks3) | |
| 334 | end | |
| 335 | ||
| 336 | fun scan_string str c = | |
| 337 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 338 | fun F [] toks = (c,toks) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 339 | | F (c::cs) toks = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 340 | case LazySeq.getItem toks of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 341 | SOME(c',toks') => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 342 | if c = c' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 343 | then F cs toks' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 344 | else raise SyntaxError | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 345 | | NONE => raise SyntaxError | 
| 14516 | 346 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 347 | F (String.explode str) | 
| 14516 | 348 | end | 
| 349 | ||
| 350 | local | |
| 351 | val scan_entity = | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 352 | (scan_string "amp;" #"&") | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 353 | || scan_string "quot;" #"\"" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 354 | || scan_string "gt;" #">" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 355 | || scan_string "lt;" #"<" | 
| 14620 
1be590fd2422
Minor cleanup of headers and some speedup of the HOL4 import.
 skalberg parents: 
14518diff
changeset | 356 | || scan_string "apos;" #"'" | 
| 14516 | 357 | in | 
| 358 | fun scan_nonquote toks = | |
| 359 | case LazySeq.getItem toks of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 360 | SOME (c,toks') => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 361 | (case c of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 362 | #"\"" => raise SyntaxError | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 363 | | #"&" => scan_entity toks' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 364 | | c => (c,toks')) | 
| 15531 | 365 | | NONE => raise SyntaxError | 
| 14516 | 366 | end | 
| 367 | ||
| 368 | val scan_string = $$ #"\"" |-- repeat scan_nonquote --| $$ #"\"" >> | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 369 | String.implode | 
| 14516 | 370 | |
| 371 | val scan_attribute = scan_id -- $$ #"=" |-- scan_string | |
| 372 | ||
| 373 | val scan_start_of_tag = $$ #"<" |-- scan_id -- | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 374 | repeat ($$ #" " |-- scan_attribute) | 
| 14516 | 375 | |
| 14518 
c3019a66180f
Added a number of explicit type casts and delayed evaluations (all seemingly
 skalberg parents: 
14516diff
changeset | 376 | (* The evaluation delay introduced through the 'toks' argument is needed | 
| 
c3019a66180f
Added a number of explicit type casts and delayed evaluations (all seemingly
 skalberg parents: 
14516diff
changeset | 377 | for the sake of the SML/NJ (110.9.1) compiler. Either that or an explicit | 
| 
c3019a66180f
Added a number of explicit type casts and delayed evaluations (all seemingly
 skalberg parents: 
14516diff
changeset | 378 | type :-( *) | 
| 
c3019a66180f
Added a number of explicit type casts and delayed evaluations (all seemingly
 skalberg parents: 
14516diff
changeset | 379 | fun scan_end_of_tag toks = ($$ #"/" |-- $$ #">" |-- succeed []) toks | 
| 
c3019a66180f
Added a number of explicit type casts and delayed evaluations (all seemingly
 skalberg parents: 
14516diff
changeset | 380 | |
| 14516 | 381 | val scan_end_tag = $$ #"<" |-- $$ #"/" |-- scan_id --| $$ #">" | 
| 382 | ||
| 383 | fun scan_children id = $$ #">" |-- repeat scan_tag -- scan_end_tag >> | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 384 | (fn (chldr,id') => if id = id' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 385 | then chldr | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 386 | else raise XML "Tag mismatch") | 
| 14516 | 387 | and scan_tag toks = | 
| 388 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 389 | val ((id,atts),toks2) = scan_start_of_tag toks | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 390 | val (chldr,toks3) = (scan_children id || scan_end_of_tag) toks2 | 
| 14516 | 391 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 392 | (Elem (id,atts,chldr),toks3) | 
| 14516 | 393 | end | 
| 394 | end | |
| 395 | ||
| 396 | val type_of = Term.type_of | |
| 397 | ||
| 398 | val boolT = Type("bool",[])
 | |
| 399 | val propT = Type("prop",[])
 | |
| 400 | ||
| 401 | fun mk_defeq name rhs thy = | |
| 402 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 403 | val ty = type_of rhs | 
| 14516 | 404 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 405 | Logic.mk_equals (Const(Sign.intern_const thy name,ty),rhs) | 
| 14516 | 406 | end | 
| 407 | ||
| 408 | fun mk_teq name rhs thy = | |
| 409 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 410 | val ty = type_of rhs | 
| 14516 | 411 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 412 | HOLogic.mk_eq (Const(Sign.intern_const thy name,ty),rhs) | 
| 14516 | 413 | end | 
| 414 | ||
| 415 | fun intern_const_name thyname const thy = | |
| 416 | case get_hol4_const_mapping thyname const thy of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 417 | SOME (_,cname,_) => cname | 
| 15531 | 418 | | NONE => (case get_hol4_const_renaming thyname const thy of | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 419 | SOME cname => Sign.intern_const thy (thyname ^ "." ^ cname) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 420 | | NONE => Sign.intern_const thy (thyname ^ "." ^ const)) | 
| 14516 | 421 | |
| 422 | fun intern_type_name thyname const thy = | |
| 423 | case get_hol4_type_mapping thyname const thy of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 424 | SOME (_,cname) => cname | 
| 17894 | 425 | | NONE => Sign.intern_const thy (thyname ^ "." ^ const) | 
| 14516 | 426 | |
| 427 | fun mk_vartype name = TFree(name,["HOL.type"]) | |
| 428 | fun mk_thy_type thy Thy Tyop Args = Type(intern_type_name Thy Tyop thy,Args) | |
| 429 | ||
| 430 | val mk_var = Free | |
| 431 | ||
| 432 | fun dom_rng (Type("fun",[dom,rng])) = (dom,rng)
 | |
| 433 | | dom_rng _ = raise ERR "dom_rng" "Not a functional type" | |
| 434 | ||
| 16486 | 435 | fun mk_thy_const thy Thy Nam Ty = Const(intern_const_name Thy Nam thy,Ty) | 
| 14516 | 436 | |
| 24707 | 437 | local | 
| 438 | fun get_const sg thyname name = | |
| 17894 | 439 | (case Sign.const_type sg name of | 
| 440 | SOME ty => Const (name, ty) | |
| 441 | | NONE => raise ERR "get_type" (name ^ ": No such constant")) | |
| 14516 | 442 | in | 
| 16486 | 443 | fun prim_mk_const thy Thy Nam = | 
| 14516 | 444 | let | 
| 17894 | 445 | val name = intern_const_name Thy Nam thy | 
| 446 | val cmaps = HOL4ConstMaps.get thy | |
| 14516 | 447 | in | 
| 17894 | 448 | case StringPair.lookup cmaps (Thy,Nam) of | 
| 449 | SOME(_,_,SOME ty) => Const(name,ty) | |
| 450 | | _ => get_const thy Thy name | |
| 14516 | 451 | end | 
| 452 | end | |
| 453 | ||
| 454 | fun mk_comb(f,a) = f $ a | |
| 455 | ||
| 456 | (* Needed for HOL Light *) | |
| 457 | fun protect_tyvarname s = | |
| 458 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 459 | fun no_quest s = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 460 | if Char.contains s #"?" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 461 | then String.translate (fn #"?" => "q_" | c => Char.toString c) s | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 462 | else s | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 463 | fun beg_prime s = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 464 | if String.isPrefix "'" s | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 465 | then s | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 466 | else "'" ^ s | 
| 14516 | 467 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 468 | s |> no_quest |> beg_prime | 
| 14516 | 469 | end | 
| 17440 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 470 | |
| 17444 | 471 | val protected_varnames = ref (Symtab.empty:string Symtab.table) | 
| 24630 
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
 wenzelm parents: 
22709diff
changeset | 472 | val invented_isavar = ref 0 | 
| 17444 | 473 | |
| 17490 | 474 | fun innocent_varname s = Syntax.is_identifier s andalso not (String.isPrefix "u_" s) | 
| 475 | ||
| 18678 | 476 | val check_name_thy = theory "Main" | 
| 17592 | 477 | |
| 18678 | 478 | fun valid_boundvarname s = | 
| 24707 | 479 |   can (fn () => Syntax.read_term_global check_name_thy ("SOME "^s^". True")) ();
 | 
| 18678 | 480 | |
| 481 | fun valid_varname s = | |
| 24707 | 482 | can (fn () => Syntax.read_term_global check_name_thy s) (); | 
| 17490 | 483 | |
| 14516 | 484 | fun protect_varname s = | 
| 17490 | 485 | if innocent_varname s andalso valid_varname s then s else | 
| 17444 | 486 | case Symtab.lookup (!protected_varnames) s of | 
| 487 | SOME t => t | |
| 24707 | 488 | | NONE => | 
| 17444 | 489 | let | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 490 | val _ = inc invented_isavar | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 491 | val t = "u_" ^ string_of_int (!invented_isavar) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 492 | val _ = ImportRecorder.protect_varname s t | 
| 17444 | 493 | val _ = protected_varnames := Symtab.update (s, t) (!protected_varnames) | 
| 494 | in | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 495 | t | 
| 17444 | 496 | end | 
| 14516 | 497 | |
| 19067 | 498 | exception REPLAY_PROTECT_VARNAME of string*string*string | 
| 499 | ||
| 24707 | 500 | fun replay_protect_varname s t = | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 501 | case Symtab.lookup (!protected_varnames) s of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 502 | SOME t' => raise REPLAY_PROTECT_VARNAME (s, t, t') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 503 | | NONE => | 
| 19067 | 504 | let | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 505 | val _ = inc invented_isavar | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 506 | val t = "u_" ^ string_of_int (!invented_isavar) | 
| 19067 | 507 | val _ = protected_varnames := Symtab.update (s, t) (!protected_varnames) | 
| 508 | in | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 509 | () | 
| 24707 | 510 | end | 
| 511 | ||
| 17490 | 512 | fun protect_boundvarname s = if innocent_varname s andalso valid_boundvarname s then s else "u" | 
| 17440 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 513 | |
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 514 | fun mk_lambda (v as Free (x, T)) t = Abs (protect_boundvarname x, T, abstract_over (v, t)) | 
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 515 | | mk_lambda (v as Var ((x, _), T)) t = Abs (protect_boundvarname x, T, abstract_over (v, t)) | 
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 516 |   | mk_lambda v t = raise TERM ("lambda", [v, t]);
 | 
| 24707 | 517 | |
| 518 | fun replacestr x y s = | |
| 17440 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 519 | let | 
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 520 | val xl = explode x | 
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 521 | val yl = explode y | 
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 522 | fun isprefix [] ys = true | 
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 523 | | isprefix (x::xs) (y::ys) = if x = y then isprefix xs ys else false | 
| 24707 | 524 | | isprefix _ _ = false | 
| 17440 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 525 | fun isp s = isprefix xl s | 
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 526 | fun chg s = yl@(List.drop (s, List.length xl)) | 
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 527 | fun r [] = [] | 
| 24707 | 528 | | r (S as (s::ss)) = if isp S then r (chg S) else s::(r ss) | 
| 17440 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 529 | in | 
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 530 | implode(r (explode s)) | 
| 24707 | 531 | end | 
| 17440 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 532 | |
| 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 533 | fun protect_factname s = replacestr "." "_dot_" s | 
| 24707 | 534 | fun unprotect_factname s = replacestr "_dot_" "." s | 
| 17440 
df77edc4f5d0
fixed HOL-light/Isabelle syntax incompatability via more protect_xxx functions
 obua parents: 
17412diff
changeset | 535 | |
| 17322 | 536 | val ty_num_prefix = "N_" | 
| 537 | ||
| 538 | fun startsWithDigit s = Char.isDigit (hd (String.explode s)) | |
| 539 | ||
| 24707 | 540 | fun protect_tyname tyn = | 
| 17322 | 541 | let | 
| 24707 | 542 | val tyn' = | 
| 543 |       if String.isPrefix ty_num_prefix tyn then raise (ERR "protect_ty_name" ("type name '"^tyn^"' is reserved")) else
 | |
| 17322 | 544 | (if startsWithDigit tyn then ty_num_prefix^tyn else tyn) | 
| 545 | in | |
| 546 | tyn' | |
| 547 | end | |
| 548 | ||
| 24707 | 549 | fun protect_constname tcn = tcn | 
| 17444 | 550 | (* if tcn = ".." then "dotdot" | 
| 551 | else if tcn = "==" then "eqeq" | |
| 552 | else tcn*) | |
| 17322 | 553 | |
| 14516 | 554 | structure TypeNet = | 
| 555 | struct | |
| 17322 | 556 | |
| 14516 | 557 | fun get_type_from_index thy thyname types is = | 
| 558 | case Int.fromString is of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 559 | SOME i => (case Array.sub(types,i) of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 560 | FullType ty => ty | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 561 | | XMLty xty => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 562 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 563 | val ty = get_type_from_xml thy thyname types xty | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 564 | val _ = Array.update(types,i,FullType ty) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 565 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 566 | ty | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 567 | end) | 
| 14516 | 568 | | NONE => raise ERR "get_type_from_index" "Bad index" | 
| 569 | and get_type_from_xml thy thyname types = | |
| 570 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 571 |         fun gtfx (Elem("tyi",[("i",iS)],[])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 572 | get_type_from_index thy thyname types iS | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 573 |           | gtfx (Elem("tyc",atts,[])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 574 | mk_thy_type thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 575 | (get_segment thyname atts) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 576 | (protect_tyname (get_name atts)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 577 | [] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 578 |           | gtfx (Elem("tyv",[("n",s)],[])) = mk_vartype (protect_tyvarname s)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 579 |           | gtfx (Elem("tya",[],(Elem("tyc",atts,[]))::tys)) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 580 | mk_thy_type thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 581 | (get_segment thyname atts) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 582 | (protect_tyname (get_name atts)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 583 | (map gtfx tys) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 584 | | gtfx _ = raise ERR "get_type" "Bad type" | 
| 14516 | 585 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 586 | gtfx | 
| 14516 | 587 | end | 
| 588 | ||
| 589 | fun input_types thyname (Elem("tylist",[("i",i)],xtys)) =
 | |
| 590 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 591 |         val types = Array.array(valOf (Int.fromString i),XMLty (Elem("",[],[])))
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 592 | fun IT _ [] = () | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 593 | | IT n (xty::xtys) = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 594 | (Array.update(types,n,XMLty xty); | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 595 | IT (n+1) xtys) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 596 | val _ = IT 0 xtys | 
| 14516 | 597 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 598 | types | 
| 14516 | 599 | end | 
| 600 | | input_types _ _ = raise ERR "input_types" "Bad type list" | |
| 601 | end | |
| 602 | ||
| 603 | structure TermNet = | |
| 604 | struct | |
| 17322 | 605 | |
| 14516 | 606 | fun get_term_from_index thy thyname types terms is = | 
| 607 | case Int.fromString is of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 608 | SOME i => (case Array.sub(terms,i) of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 609 | FullTerm tm => tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 610 | | XMLtm xtm => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 611 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 612 | val tm = get_term_from_xml thy thyname types terms xtm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 613 | val _ = Array.update(terms,i,FullTerm tm) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 614 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 615 | tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 616 | end) | 
| 14516 | 617 | | NONE => raise ERR "get_term_from_index" "Bad index" | 
| 618 | and get_term_from_xml thy thyname types terms = | |
| 619 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 620 | fun get_type [] = NONE | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 621 | | get_type [ty] = SOME (TypeNet.get_type_from_xml thy thyname types ty) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 622 | | get_type _ = raise ERR "get_term" "Bad type" | 
| 14516 | 623 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 624 |         fun gtfx (Elem("tmv",[("n",name),("t",tyi)],[])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 625 | mk_var(protect_varname name,TypeNet.get_type_from_index thy thyname types tyi) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 626 |           | gtfx (Elem("tmc",atts,[])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 627 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 628 | val segment = get_segment thyname atts | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 629 | val name = protect_constname(get_name atts) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 630 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 631 | mk_thy_const thy segment name (TypeNet.get_type_from_index thy thyname types (Lib.assoc "t" atts)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 632 | handle PK _ => prim_mk_const thy segment name | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 633 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 634 |           | gtfx (Elem("tma",[("f",tmf),("a",tma)],[])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 635 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 636 | val f = get_term_from_index thy thyname types terms tmf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 637 | val a = get_term_from_index thy thyname types terms tma | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 638 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 639 | mk_comb(f,a) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 640 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 641 |           | gtfx (Elem("tml",[("x",tmx),("a",tma)],[])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 642 | let | 
| 24707 | 643 | val x = get_term_from_index thy thyname types terms tmx | 
| 17490 | 644 | val a = get_term_from_index thy thyname types terms tma | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 645 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 646 | mk_lambda x a | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 647 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 648 |           | gtfx (Elem("tmi",[("i",iS)],[])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 649 | get_term_from_index thy thyname types terms iS | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 650 | | gtfx (Elem(tag,_,_)) = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 651 |             raise ERR "get_term" ("Not a term: "^tag)
 | 
| 14516 | 652 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 653 | gtfx | 
| 14516 | 654 | end | 
| 655 | ||
| 656 | fun input_terms thyname types (Elem("tmlist",[("i",i)],xtms)) =
 | |
| 657 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 658 |         val terms = Array.array(valOf(Int.fromString i),XMLtm (Elem("",[],[])))
 | 
| 14516 | 659 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 660 | fun IT _ [] = () | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 661 | | IT n (xtm::xtms) = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 662 | (Array.update(terms,n,XMLtm xtm); | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 663 | IT (n+1) xtms) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 664 | val _ = IT 0 xtms | 
| 14516 | 665 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 666 | terms | 
| 14516 | 667 | end | 
| 668 | | input_terms _ _ _ = raise ERR "input_terms" "Bad term list" | |
| 669 | end | |
| 670 | ||
| 671 | fun get_proof_dir (thyname:string) thy = | |
| 672 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 673 | val import_segment = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 674 | case get_segment2 thyname thy of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 675 | SOME seg => seg | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 676 | | NONE => get_import_segment thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 677 | val path = space_explode ":" (getenv "HOL4_PROOFS") | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 678 | fun find [] = NONE | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 679 | | find (p::ps) = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 680 | (let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 681 |                  val dir = OS.Path.joinDirFile {dir = p,file=import_segment}
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 682 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 683 | if OS.FileSys.isDir dir | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 684 | then SOME dir | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 685 | else find ps | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 686 | end) handle OS.SysErr _ => find ps | 
| 14516 | 687 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 688 |         Option.map (fn p => OS.Path.joinDirFile {dir = p, file = thyname}) (find path)
 | 
| 14516 | 689 | end | 
| 24707 | 690 | |
| 14516 | 691 | fun proof_file_name thyname thmname thy = | 
| 692 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 693 | val path = case get_proof_dir thyname thy of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 694 | SOME p => p | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 695 | | NONE => error "Cannot find proof files" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 696 | val _ = OS.FileSys.mkDir path handle OS.SysErr _ => () | 
| 14516 | 697 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 698 |         OS.Path.joinDirFile {dir = path, file = OS.Path.joinBaseExt {base = (unprotect_factname thmname), ext = SOME "prf"}}
 | 
| 14516 | 699 | end | 
| 24707 | 700 | |
| 14516 | 701 | fun xml_to_proof thyname types terms prf thy = | 
| 702 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 703 | val xml_to_hol_type = TypeNet.get_type_from_xml thy thyname types | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 704 | val xml_to_term = TermNet.get_term_from_xml thy thyname types terms | 
| 14516 | 705 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 706 | fun index_to_term is = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 707 | TermNet.get_term_from_index thy thyname types terms is | 
| 14516 | 708 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 709 |         fun x2p (Elem("prefl",[("i",is)],[])) = mk_proof (PRefl (index_to_term is))
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 710 |           | x2p (Elem("pinstt",[],p::lambda)) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 711 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 712 | val p = x2p p | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 713 | val lambda = implode_subst (map xml_to_hol_type lambda) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 714 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 715 | mk_proof (PInstT(p,lambda)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 716 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 717 |           | x2p (Elem("psubst",[("i",is)],prf::prfs)) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 718 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 719 | val tm = index_to_term is | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 720 | val prf = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 721 | val prfs = map x2p prfs | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 722 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 723 | mk_proof (PSubst(prfs,tm,prf)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 724 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 725 |           | x2p (Elem("pabs",[("i",is)],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 726 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 727 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 728 | val t = index_to_term is | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 729 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 730 | mk_proof (PAbs (p,t)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 731 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 732 |           | x2p (Elem("pdisch",[("i",is)],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 733 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 734 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 735 | val t = index_to_term is | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 736 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 737 | mk_proof (PDisch (p,t)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 738 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 739 |           | x2p (Elem("pmp",[],[prf1,prf2])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 740 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 741 | val p1 = x2p prf1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 742 | val p2 = x2p prf2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 743 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 744 | mk_proof (PMp(p1,p2)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 745 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 746 |           | x2p (Elem("phyp",[("i",is)],[])) = mk_proof (PHyp (index_to_term is))
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 747 |           | x2p (Elem("paxiom",[("n",n),("i",is)],[])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 748 | mk_proof (PAxm(n,index_to_term is)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 749 |           | x2p (Elem("pfact",atts,[])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 750 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 751 | val thyname = get_segment thyname atts | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 752 | val thmname = protect_factname (get_name atts) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 753 | val p = mk_proof PDisk | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 754 | val _ = set_disk_info_of p thyname thmname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 755 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 756 | p | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 757 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 758 |           | x2p (Elem("pdef",[("s",seg),("n",name),("i",is)],[])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 759 | mk_proof (PDef(seg,protect_constname name,index_to_term is)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 760 |           | x2p (Elem("ptmspec",[("s",seg)],p::names)) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 761 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 762 |                 val names = map (fn Elem("name",[("n",name)],[]) => name
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 763 | | _ => raise ERR "x2p" "Bad proof (ptmspec)") names | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 764 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 765 | mk_proof (PTmSpec(seg,names,x2p p)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 766 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 767 |           | x2p (Elem("ptyintro",[("s",seg),("n",name),("a",abs_name),("r",rep_name)],[xP,xt,p])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 768 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 769 | val P = xml_to_term xP | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 770 | val t = xml_to_term xt | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 771 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 772 | mk_proof (PTyIntro(seg,protect_tyname name,protect_constname abs_name,protect_constname rep_name,P,t,x2p p)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 773 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 774 |           | x2p (Elem("ptydef",[("s",seg),("n",name)],[p])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 775 | mk_proof (PTyDef(seg,protect_tyname name,x2p p)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 776 |           | x2p (xml as Elem("poracle",[],chldr)) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 777 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 778 |                 val (oracles,terms) = List.partition (fn (Elem("oracle",_,_)) => true | _ => false) chldr
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 779 |                 val ors = map (fn (Elem("oracle",[("n",name)],[])) => name | xml => raise ERR "x2p" "bad oracle") oracles
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 780 | val (c,asl) = case terms of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 781 | [] => raise ERR "x2p" "Bad oracle description" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 782 | | (hd::tl) => (hd,tl) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 783 | val tg = foldr (fn (oracle,tg) => Tag.merge (Tag.read oracle) tg) Tag.empty_tag ors | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 784 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 785 | mk_proof (POracle(tg,map xml_to_term asl,xml_to_term c)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 786 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 787 |           | x2p (Elem("pspec",[("i",is)],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 788 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 789 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 790 | val tm = index_to_term is | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 791 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 792 | mk_proof (PSpec(p,tm)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 793 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 794 |           | x2p (Elem("pinst",[],p::theta)) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 795 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 796 | val p = x2p p | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 797 | val theta = implode_subst (map xml_to_term theta) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 798 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 799 | mk_proof (PInst(p,theta)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 800 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 801 |           | x2p (Elem("pgen",[("i",is)],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 802 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 803 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 804 | val tm = index_to_term is | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 805 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 806 | mk_proof (PGen(p,tm)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 807 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 808 |           | x2p (Elem("pgenabs",[],prf::tms)) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 809 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 810 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 811 | val tml = map xml_to_term tms | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 812 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 813 | mk_proof (PGenAbs(p,NONE,tml)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 814 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 815 |           | x2p (Elem("pgenabs",[("i",is)],prf::tms)) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 816 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 817 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 818 | val tml = map xml_to_term tms | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 819 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 820 | mk_proof (PGenAbs(p,SOME (index_to_term is),tml)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 821 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 822 |           | x2p (Elem("pimpas",[],[prf1,prf2])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 823 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 824 | val p1 = x2p prf1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 825 | val p2 = x2p prf2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 826 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 827 | mk_proof (PImpAS(p1,p2)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 828 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 829 |           | x2p (Elem("psym",[],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 830 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 831 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 832 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 833 | mk_proof (PSym p) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 834 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 835 |           | x2p (Elem("ptrans",[],[prf1,prf2])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 836 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 837 | val p1 = x2p prf1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 838 | val p2 = x2p prf2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 839 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 840 | mk_proof (PTrans(p1,p2)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 841 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 842 |           | x2p (Elem("pcomb",[],[prf1,prf2])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 843 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 844 | val p1 = x2p prf1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 845 | val p2 = x2p prf2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 846 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 847 | mk_proof (PComb(p1,p2)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 848 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 849 |           | x2p (Elem("peqmp",[],[prf1,prf2])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 850 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 851 | val p1 = x2p prf1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 852 | val p2 = x2p prf2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 853 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 854 | mk_proof (PEqMp(p1,p2)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 855 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 856 |           | x2p (Elem("peqimp",[],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 857 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 858 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 859 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 860 | mk_proof (PEqImp p) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 861 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 862 |           | x2p (Elem("pexists",[("e",ise),("w",isw)],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 863 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 864 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 865 | val ex = index_to_term ise | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 866 | val w = index_to_term isw | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 867 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 868 | mk_proof (PExists(p,ex,w)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 869 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 870 |           | x2p (Elem("pchoose",[("i",is)],[prf1,prf2])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 871 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 872 | val v = index_to_term is | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 873 | val p1 = x2p prf1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 874 | val p2 = x2p prf2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 875 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 876 | mk_proof (PChoose(v,p1,p2)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 877 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 878 |           | x2p (Elem("pconj",[],[prf1,prf2])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 879 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 880 | val p1 = x2p prf1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 881 | val p2 = x2p prf2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 882 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 883 | mk_proof (PConj(p1,p2)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 884 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 885 |           | x2p (Elem("pconjunct1",[],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 886 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 887 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 888 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 889 | mk_proof (PConjunct1 p) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 890 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 891 |           | x2p (Elem("pconjunct2",[],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 892 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 893 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 894 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 895 | mk_proof (PConjunct2 p) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 896 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 897 |           | x2p (Elem("pdisj1",[("i",is)],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 898 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 899 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 900 | val t = index_to_term is | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 901 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 902 | mk_proof (PDisj1 (p,t)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 903 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 904 |           | x2p (Elem("pdisj2",[("i",is)],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 905 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 906 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 907 | val t = index_to_term is | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 908 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 909 | mk_proof (PDisj2 (p,t)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 910 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 911 |           | x2p (Elem("pdisjcases",[],[prf1,prf2,prf3])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 912 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 913 | val p1 = x2p prf1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 914 | val p2 = x2p prf2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 915 | val p3 = x2p prf3 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 916 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 917 | mk_proof (PDisjCases(p1,p2,p3)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 918 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 919 |           | x2p (Elem("pnoti",[],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 920 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 921 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 922 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 923 | mk_proof (PNotI p) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 924 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 925 |           | x2p (Elem("pnote",[],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 926 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 927 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 928 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 929 | mk_proof (PNotE p) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 930 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 931 |           | x2p (Elem("pcontr",[("i",is)],[prf])) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 932 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 933 | val p = x2p prf | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 934 | val t = index_to_term is | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 935 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 936 | mk_proof (PContr (p,t)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 937 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 938 | | x2p xml = raise ERR "x2p" "Bad proof" | 
| 14516 | 939 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 940 | x2p prf | 
| 14516 | 941 | end | 
| 942 | ||
| 24707 | 943 | fun import_proof_concl thyname thmname thy = | 
| 17322 | 944 | let | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 945 | val is = TextIO.openIn(proof_file_name thyname thmname thy) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 946 | val (proof_xml,_) = scan_tag (LazySeq.of_instream is) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 947 | val _ = TextIO.closeIn is | 
| 24707 | 948 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 949 | case proof_xml of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 950 |             Elem("proof",[],xtypes::xterms::prf::rest) =>
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 951 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 952 | val types = TypeNet.input_types thyname xtypes | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 953 | val terms = TermNet.input_terms thyname types xterms | 
| 24707 | 954 | fun f xtm thy = TermNet.get_term_from_xml thy thyname types terms xtm | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 955 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 956 | case rest of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 957 | [] => NONE | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 958 | | [xtm] => SOME (f xtm) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 959 | | _ => raise ERR "import_proof" "Bad argument list" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 960 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 961 | | _ => raise ERR "import_proof" "Bad proof" | 
| 17322 | 962 | end | 
| 963 | ||
| 14516 | 964 | fun import_proof thyname thmname thy = | 
| 965 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 966 | val is = TextIO.openIn(proof_file_name thyname thmname thy) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 967 | val (proof_xml,_) = scan_tag (LazySeq.of_instream is) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 968 | val _ = TextIO.closeIn is | 
| 24707 | 969 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 970 | case proof_xml of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 971 |             Elem("proof",[],xtypes::xterms::prf::rest) =>
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 972 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 973 | val types = TypeNet.input_types thyname xtypes | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 974 | val terms = TermNet.input_terms thyname types xterms | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 975 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 976 | (case rest of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 977 | [] => NONE | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 978 | | [xtm] => SOME (fn thy => TermNet.get_term_from_xml thy thyname types terms xtm) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 979 | | _ => raise ERR "import_proof" "Bad argument list", | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 980 | xml_to_proof thyname types terms prf) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 981 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 982 | | _ => raise ERR "import_proof" "Bad proof" | 
| 14516 | 983 | end | 
| 984 | ||
| 985 | fun uniq_compose m th i st = | |
| 986 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 987 | val res = bicompose false (false,th,m) i st | 
| 14516 | 988 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 989 | case Seq.pull res of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 990 | SOME (th,rest) => (case Seq.pull rest of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 991 | SOME _ => raise ERR "uniq_compose" "Not unique!" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 992 | | NONE => th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 993 | | NONE => raise ERR "uniq_compose" "No result" | 
| 14516 | 994 | end | 
| 995 | ||
| 996 | val reflexivity_thm = thm "refl" | |
| 997 | val substitution_thm = thm "subst" | |
| 998 | val mp_thm = thm "mp" | |
| 999 | val imp_antisym_thm = thm "light_imp_as" | |
| 1000 | val disch_thm = thm "impI" | |
| 1001 | val ccontr_thm = thm "ccontr" | |
| 1002 | ||
| 1003 | val meta_eq_to_obj_eq_thm = thm "meta_eq_to_obj_eq" | |
| 1004 | ||
| 1005 | val gen_thm = thm "HOLallI" | |
| 1006 | val choose_thm = thm "exE" | |
| 1007 | val exists_thm = thm "exI" | |
| 1008 | val conj_thm = thm "conjI" | |
| 1009 | val conjunct1_thm = thm "conjunct1" | |
| 1010 | val conjunct2_thm = thm "conjunct2" | |
| 1011 | val spec_thm = thm "spec" | |
| 1012 | val disj_cases_thm = thm "disjE" | |
| 1013 | val disj1_thm = thm "disjI1" | |
| 1014 | val disj2_thm = thm "disjI2" | |
| 1015 | ||
| 1016 | local | |
| 1017 | val th = thm "not_def" | |
| 17894 | 1018 | val thy = theory_of_thm th | 
| 1019 |     val pp = reflexive (cterm_of thy (Const("Trueprop",boolT-->propT)))
 | |
| 14516 | 1020 | in | 
| 1021 | val not_elim_thm = combination pp th | |
| 1022 | end | |
| 1023 | ||
| 1024 | val not_intro_thm = symmetric not_elim_thm | |
| 1025 | val abs_thm = thm "ext" | |
| 1026 | val trans_thm = thm "trans" | |
| 1027 | val symmetry_thm = thm "sym" | |
| 1028 | val transitivity_thm = thm "trans" | |
| 1029 | val eqmp_thm = thm "iffD1" | |
| 1030 | val eqimp_thm = thm "HOL4Setup.eq_imp" | |
| 1031 | val comb_thm = thm "cong" | |
| 1032 | ||
| 1033 | (* Beta-eta normalizes a theorem (only the conclusion, not the * | |
| 1034 | hypotheses!) *) | |
| 1035 | ||
| 1036 | fun beta_eta_thm th = | |
| 1037 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1038 | val th1 = Thm.equal_elim (Thm.beta_conversion true (cprop_of th)) th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1039 | val th2 = Thm.equal_elim (Thm.eta_conversion (cprop_of th1)) th1 | 
| 14516 | 1040 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1041 | th2 | 
| 14516 | 1042 | end | 
| 1043 | ||
| 1044 | fun implies_elim_all th = | |
| 15570 | 1045 | Library.foldl (fn (th,p) => implies_elim th (assume p)) (th,cprems_of th) | 
| 14516 | 1046 | |
| 1047 | fun norm_hyps th = | |
| 1048 | th |> beta_eta_thm | |
| 1049 | |> implies_elim_all | |
| 1050 | |> implies_intr_hyps | |
| 1051 | ||
| 1052 | fun mk_GEN v th sg = | |
| 1053 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1054 | val c = HOLogic.dest_Trueprop (concl_of th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1055 | val cv = cterm_of sg v | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1056 | val lc = Term.lambda v c | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1057 | val clc = Thm.cterm_of sg lc | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1058 | val cvty = ctyp_of_term cv | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1059 | val th1 = implies_elim_all th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1060 | val th2 = beta_eta_thm (forall_intr cv th1) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1061 | val th3 = th2 COMP (beta_eta_thm (Drule.instantiate' [SOME cvty] [SOME clc] gen_thm)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1062 | val c = prop_of th3 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1063 | val vname = fst(dest_Free v) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1064 | val (cold,cnew) = case c of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1065 |                               tpc $ (Const("All",allT) $ Abs(oldname,ty,body)) =>
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1066 | (Abs(oldname,dummyT,Bound 0),Abs(vname,dummyT,Bound 0)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1067 |                             | tpc $ (Const("All",allT) $ rest) => (tpc,tpc)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1068 | | _ => raise ERR "mk_GEN" "Unknown conclusion" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1069 | val th4 = Thm.rename_boundvars cold cnew th3 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1070 | val res = implies_intr_hyps th4 | 
| 14516 | 1071 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1072 | res | 
| 14516 | 1073 | end | 
| 1074 | ||
| 24707 | 1075 | val permute_prems = Thm.permute_prems | 
| 14516 | 1076 | |
| 1077 | fun rearrange sg tm th = | |
| 1078 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1079 | val tm' = Envir.beta_eta_contract tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1080 | fun find [] n = permute_prems 0 1 (implies_intr (Thm.cterm_of sg tm) th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1081 | | find (p::ps) n = if tm' aconv (Envir.beta_eta_contract p) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1082 | then permute_prems n 1 th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1083 | else find ps (n+1) | 
| 14516 | 1084 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1085 | find (prems_of th) 0 | 
| 14516 | 1086 | end | 
| 1087 | ||
| 1088 | fun zip (x::xs) (y::ys) = (x,y)::(zip xs ys) | |
| 1089 | | zip [] [] = [] | |
| 1090 | | zip _ _ = raise ERR "zip" "arguments not of same length" | |
| 1091 | ||
| 1092 | fun mk_INST dom rng th = | |
| 1093 | th |> forall_intr_list dom | |
| 1094 | |> forall_elim_list rng | |
| 1095 | ||
| 1096 | val collect_vars = | |
| 1097 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1098 | fun F vars (Bound _) = vars | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1099 | | F vars (tm as Free _) = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1100 | if tm mem vars | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1101 | then vars | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1102 | else (tm::vars) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1103 | | F vars (Const _) = vars | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1104 | | F vars (tm1 $ tm2) = F (F vars tm1) tm2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1105 | | F vars (Abs(_,_,body)) = F vars body | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1106 | | F vars (Var _) = raise ERR "collect_vars" "Schematic variable found" | 
| 14516 | 1107 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1108 | F [] | 
| 14516 | 1109 | end | 
| 1110 | ||
| 1111 | (* Code for disambiguating variablenames (wrt. types) *) | |
| 1112 | ||
| 1113 | val disamb_info_empty = {vars=[],rens=[]}
 | |
| 1114 | ||
| 1115 | fun rens_of {vars,rens} = rens
 | |
| 1116 | ||
| 1117 | fun name_of_var (Free(vname,_)) = vname | |
| 1118 | | name_of_var _ = raise ERR "name_of_var" "Not a variable" | |
| 1119 | ||
| 17322 | 1120 | fun disamb_term_from info tm = (info, tm) | 
| 14516 | 1121 | |
| 1122 | fun swap (x,y) = (y,x) | |
| 1123 | ||
| 17322 | 1124 | fun has_ren (HOLThm _) = false | 
| 14516 | 1125 | |
| 1126 | fun prinfo {vars,rens} = (writeln "Vars:";
 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1127 | app prin vars; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1128 | writeln "Renaming:"; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1129 | app (fn(x,y)=>(prin x; writeln " -->"; prin y)) rens) | 
| 14516 | 1130 | |
| 17322 | 1131 | fun disamb_thm_from info (HOLThm (_,thm)) = (info, thm) | 
| 14516 | 1132 | |
| 17322 | 1133 | fun disamb_terms_from info tms = (info, tms) | 
| 14516 | 1134 | |
| 17324 | 1135 | fun disamb_thms_from info hthms = (info, map hthm2thm hthms) | 
| 14516 | 1136 | |
| 1137 | fun disamb_term tm = disamb_term_from disamb_info_empty tm | |
| 1138 | fun disamb_terms tms = disamb_terms_from disamb_info_empty tms | |
| 1139 | fun disamb_thm thm = disamb_thm_from disamb_info_empty thm | |
| 1140 | fun disamb_thms thms = disamb_thms_from disamb_info_empty thms | |
| 1141 | ||
| 17322 | 1142 | fun norm_hthm sg (hth as HOLThm _) = hth | 
| 14516 | 1143 | |
| 1144 | (* End of disambiguating code *) | |
| 1145 | ||
| 17657 | 1146 | fun disambiguate_frees thm = | 
| 1147 | let | |
| 1148 |       fun ERR s = error ("Drule.disambiguate_frees: "^s)
 | |
| 1149 | val ct = cprop_of thm | |
| 1150 | val t = term_of ct | |
| 1151 | val thy = theory_of_cterm ct | |
| 1152 | val frees = term_frees t | |
| 1153 | val freenames = add_term_free_names (t, []) | |
| 1154 | fun is_old_name n = n mem_string freenames | |
| 1155 | fun name_of (Free (n, _)) = n | |
| 1156 | | name_of _ = ERR "name_of" | |
| 1157 | fun new_name' bump map n = | |
| 1158 | let val n' = n^bump in | |
| 24707 | 1159 | if is_old_name n' orelse Symtab.lookup map n' <> NONE then | 
| 17657 | 1160 | new_name' (Symbol.bump_string bump) map n | 
| 1161 | else | |
| 1162 | n' | |
| 24707 | 1163 | end | 
| 17657 | 1164 | val new_name = new_name' "a" | 
| 1165 | fun replace_name n' (Free (n, t)) = Free (n', t) | |
| 1166 | | replace_name n' _ = ERR "replace_name" | |
| 24707 | 1167 | (* map: old or fresh name -> old free, | 
| 17657 | 1168 | invmap: old free which has fresh name assigned to it -> fresh name *) | 
| 1169 | fun dis (v, mapping as (map,invmap)) = | |
| 1170 | let val n = name_of v in | |
| 1171 | case Symtab.lookup map n of | |
| 1172 | NONE => (Symtab.update (n, v) map, invmap) | |
| 24707 | 1173 | | SOME v' => | 
| 1174 | if v=v' then | |
| 1175 | mapping | |
| 17657 | 1176 | else | 
| 1177 | let val n' = new_name map n in | |
| 24707 | 1178 | (Symtab.update (n', v) map, | 
| 17657 | 1179 | Termtab.update (v, n') invmap) | 
| 1180 | end | |
| 1181 | end | |
| 1182 | in | |
| 1183 | if (length freenames = length frees) then | |
| 1184 | thm | |
| 1185 | else | |
| 24707 | 1186 | let | 
| 1187 | val (_, invmap) = | |
| 1188 | List.foldl dis (Symtab.empty, Termtab.empty) frees | |
| 17657 | 1189 | fun make_subst ((oldfree, newname), (intros, elims)) = | 
| 24707 | 1190 | (cterm_of thy oldfree :: intros, | 
| 17657 | 1191 | cterm_of thy (replace_name newname oldfree) :: elims) | 
| 1192 | val (intros, elims) = List.foldl make_subst ([], []) (Termtab.dest invmap) | |
| 24707 | 1193 | in | 
| 17657 | 1194 | forall_elim_list elims (forall_intr_list intros thm) | 
| 24707 | 1195 | end | 
| 17657 | 1196 | end | 
| 1197 | ||
| 14516 | 1198 | val debug = ref false | 
| 1199 | ||
| 1200 | fun if_debug f x = if !debug then f x else () | |
| 1201 | val message = if_debug writeln | |
| 1202 | ||
| 19064 | 1203 | val conjE_helper = permute_prems 0 1 conjE | 
| 14516 | 1204 | |
| 1205 | fun get_hol4_thm thyname thmname thy = | |
| 1206 | case get_hol4_theorem thyname thmname thy of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1207 | SOME hth => SOME (HOLThm hth) | 
| 24707 | 1208 | | NONE => | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1209 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1210 | val pending = HOL4Pending.get thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1211 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1212 | case StringPair.lookup pending (thyname,thmname) of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1213 | SOME hth => SOME (HOLThm hth) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1214 | | NONE => NONE | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1215 | end | 
| 14516 | 1216 | |
| 1217 | fun non_trivial_term_consts tm = | |
| 15570 | 1218 | List.filter (fn c => not (c = "Trueprop" orelse | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1219 | c = "All" orelse | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1220 | c = "op -->" orelse | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1221 | c = "op &" orelse | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1222 | c = "op =")) (Term.term_consts tm) | 
| 14516 | 1223 | |
| 1224 | fun match_consts t (* th *) = | |
| 1225 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1226 | fun add_consts (Const (c, _), cs) = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1227 | (case c of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1228 | "op =" => Library.insert (op =) "==" cs | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1229 | | "op -->" => Library.insert (op =) "==>" cs | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1230 | | "All" => cs | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1231 | | "all" => cs | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1232 | | "op &" => cs | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1233 | | "Trueprop" => cs | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1234 | | _ => Library.insert (op =) c cs) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1235 | | add_consts (t $ u, cs) = add_consts (t, add_consts (u, cs)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1236 | | add_consts (Abs (_, _, t), cs) = add_consts (t, cs) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1237 | | add_consts (_, cs) = cs | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1238 | val t_consts = add_consts(t,[]) | 
| 14516 | 1239 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1240 | fn th => eq_set(t_consts,add_consts(prop_of th,[])) | 
| 14516 | 1241 | end | 
| 1242 | ||
| 1243 | fun split_name str = | |
| 1244 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1245 | val sub = Substring.full str | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1246 | val (f,idx) = apsnd Substring.string (Substring.splitr Char.isDigit sub) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1247 | val (newstr,u) = pairself Substring.string (Substring.splitr (fn c => c = #"_") f) | 
| 14516 | 1248 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1249 | if not (idx = "") andalso u = "_" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1250 | then SOME (newstr,valOf(Int.fromString idx)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1251 | else NONE | 
| 14516 | 1252 | end | 
| 28397 
389c5e494605
handle _ should be avoided (spurious Interrupt will spoil the game);
 wenzelm parents: 
27691diff
changeset | 1253 | handle _ => NONE (* FIXME avoid handle _ *) | 
| 14516 | 1254 | |
| 1255 | fun rewrite_hol4_term t thy = | |
| 1256 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1257 | val hol4rews1 = map (Thm.transfer thy) (HOL4Rewrites.get thy) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1258 | val hol4ss = Simplifier.theory_context thy empty_ss | 
| 17894 | 1259 | setmksimps single addsimps hol4rews1 | 
| 14516 | 1260 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1261 | Thm.transfer thy (Simplifier.full_rewrite hol4ss (cterm_of thy t)) | 
| 14516 | 1262 | end | 
| 1263 | ||
| 1264 | fun get_isabelle_thm thyname thmname hol4conc thy = | |
| 1265 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1266 | val (info,hol4conc') = disamb_term hol4conc | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1267 | val i2h_conc = symmetric (rewrite_hol4_term (HOLogic.mk_Trueprop hol4conc') thy) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1268 | val isaconc = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1269 | case concl_of i2h_conc of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1270 |                 Const("==",_) $ lhs $ _ => lhs
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1271 | | _ => error "get_isabelle_thm" "Bad rewrite rule" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1272 | val _ = (message "Original conclusion:"; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1273 | if_debug prin hol4conc'; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1274 | message "Modified conclusion:"; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1275 | if_debug prin isaconc) | 
| 14516 | 1276 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1277 | fun mk_res th = HOLThm(rens_of info,equal_elim i2h_conc th) | 
| 14516 | 1278 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1279 | case get_hol4_mapping thyname thmname thy of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1280 | SOME (SOME thmname) => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1281 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1282 | val th1 = (SOME (PureThy.get_thm thy thmname) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1283 | handle ERROR _ => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1284 | (case split_name thmname of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1285 | SOME (listname,idx) => (SOME (List.nth(PureThy.get_thms thy listname,idx-1)) | 
| 28397 
389c5e494605
handle _ should be avoided (spurious Interrupt will spoil the game);
 wenzelm parents: 
27691diff
changeset | 1286 | handle _ => NONE) (* FIXME avoid handle _ *) | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1287 | | NONE => NONE)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1288 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1289 | case th1 of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1290 | SOME th2 => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1291 | (case Shuffler.set_prop thy isaconc [(thmname,th2)] of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1292 | SOME (_,th) => (message "YES";(thy, SOME (mk_res th))) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1293 | | NONE => (message "NO2";error "get_isabelle_thm" "Bad mapping")) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1294 | | NONE => (message "NO1";error "get_isabelle_thm" "Bad mapping") | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1295 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1296 |           | SOME NONE => error ("Trying to access ignored theorem " ^ thmname)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1297 | | NONE => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1298 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1299 | val _ = (message "Looking for conclusion:"; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1300 | if_debug prin isaconc) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1301 | val cs = non_trivial_term_consts isaconc | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1302 | val _ = (message "Looking for consts:"; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1303 | message (commas cs)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1304 | val pot_thms = Shuffler.find_potential thy isaconc | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1305 | val _ = message ((Int.toString (length pot_thms)) ^ " potential theorems") | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1306 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1307 | case Shuffler.set_prop thy isaconc pot_thms of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1308 | SOME (isaname,th) => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1309 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1310 | val hth as HOLThm args = mk_res th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1311 | val thy' = thy |> add_hol4_theorem thyname thmname args | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1312 | |> add_hol4_mapping thyname thmname isaname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1313 | val _ = ImportRecorder.add_hol_theorem thyname thmname (snd args) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1314 | val _ = ImportRecorder.add_hol_mapping thyname thmname isaname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1315 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1316 | (thy',SOME hth) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1317 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1318 | | NONE => (thy,NONE) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1319 | end | 
| 14516 | 1320 | end | 
| 15647 | 1321 | handle e => (message "Exception in get_isabelle_thm"; if_debug print_exn e handle _ => (); (thy,NONE)) | 
| 14516 | 1322 | |
| 17322 | 1323 | fun get_isabelle_thm_and_warn thyname thmname hol4conc thy = | 
| 1324 | let | |
| 1325 | val (a, b) = get_isabelle_thm thyname thmname hol4conc thy | |
| 1326 | fun warn () = | |
| 1327 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1328 | val (info,hol4conc') = disamb_term hol4conc | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1329 | val i2h_conc = symmetric (rewrite_hol4_term (HOLogic.mk_Trueprop hol4conc') thy) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1330 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1331 | case concl_of i2h_conc of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1332 |                 Const("==",_) $ lhs $ _ =>
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1333 |                 (warning ("Failed lookup of theorem '"^thmname^"':");
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1334 | writeln "Original conclusion:"; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1335 | prin hol4conc'; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1336 | writeln "Modified conclusion:"; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1337 | prin lhs) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1338 | | _ => () | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1339 | end | 
| 17322 | 1340 | in | 
| 24707 | 1341 | case b of | 
| 28397 
389c5e494605
handle _ should be avoided (spurious Interrupt will spoil the game);
 wenzelm parents: 
27691diff
changeset | 1342 | NONE => (warn () handle _ => (); (a,b)) (* FIXME avoid handle _ *) | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1343 | | _ => (a, b) | 
| 24707 | 1344 | end | 
| 17322 | 1345 | |
| 14516 | 1346 | fun get_thm thyname thmname thy = | 
| 1347 | case get_hol4_thm thyname thmname thy of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1348 | SOME hth => (thy,SOME hth) | 
| 17322 | 1349 | | NONE => ((case import_proof_concl thyname thmname thy of | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1350 | SOME f => get_isabelle_thm_and_warn thyname thmname (f thy) thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1351 | | NONE => (message "No conclusion"; (thy,NONE))) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1352 | handle e as IO.Io _ => (message "IO exception"; (thy,NONE)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1353 | | e as PK _ => (message "PK exception"; (thy,NONE))) | 
| 14516 | 1354 | |
| 1355 | fun rename_const thyname thy name = | |
| 1356 | case get_hol4_const_renaming thyname name thy of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1357 | SOME cname => cname | 
| 15531 | 1358 | | NONE => name | 
| 14516 | 1359 | |
| 1360 | fun get_def thyname constname rhs thy = | |
| 1361 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1362 | val constname = rename_const thyname thy constname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1363 | val (thmname,thy') = get_defname thyname constname thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1364 |         val _ = message ("Looking for definition " ^ thyname ^ "." ^ thmname)
 | 
| 14516 | 1365 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1366 | get_isabelle_thm_and_warn thyname thmname (mk_teq (thyname ^ "." ^ constname) rhs thy') thy' | 
| 14516 | 1367 | end | 
| 1368 | ||
| 1369 | fun get_axiom thyname axname thy = | |
| 1370 | case get_thm thyname axname thy of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1371 | arg as (_,SOME _) => arg | 
| 14516 | 1372 |       | _ => raise ERR "get_axiom" ("Trying to retrieve axiom (" ^ axname ^ ")")
 | 
| 1373 | ||
| 1374 | fun intern_store_thm gen_output thyname thmname hth thy = | |
| 1375 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1376 | val (hth' as HOLThm (args as (_,th))) = norm_hthm thy hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1377 | val rew = rewrite_hol4_term (concl_of th) thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1378 | val th = equal_elim rew th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1379 | val thy' = add_hol4_pending thyname thmname args thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1380 | val _ = ImportRecorder.add_hol_pending thyname thmname (hthm2thm hth') | 
| 17657 | 1381 | val th = disambiguate_frees th | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1382 | val thy2 = if gen_output | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1383 |                    then add_dump ("lemma " ^ (quotename thmname) ^ ": " ^
 | 
| 24707 | 1384 | (smart_string_of_thm th) ^ "\n by (import " ^ | 
| 17644 | 1385 | thyname ^ " " ^ (quotename thmname) ^ ")") thy' | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1386 | else thy' | 
| 14516 | 1387 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1388 | (thy2,hth') | 
| 14516 | 1389 | end | 
| 1390 | ||
| 1391 | val store_thm = intern_store_thm true | |
| 1392 | ||
| 1393 | fun mk_REFL ctm = | |
| 1394 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1395 | val cty = Thm.ctyp_of_term ctm | 
| 14516 | 1396 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1397 | Drule.instantiate' [SOME cty] [SOME ctm] reflexivity_thm | 
| 14516 | 1398 | end | 
| 1399 | ||
| 1400 | fun REFL tm thy = | |
| 1401 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1402 | val _ = message "REFL:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1403 | val (info,tm') = disamb_term tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1404 | val ctm = Thm.cterm_of thy tm' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1405 | val res = HOLThm(rens_of info,mk_REFL ctm) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1406 | val _ = if_debug pth res | 
| 14516 | 1407 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1408 | (thy,res) | 
| 14516 | 1409 | end | 
| 1410 | ||
| 1411 | fun ASSUME tm thy = | |
| 1412 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1413 | val _ = message "ASSUME:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1414 | val (info,tm') = disamb_term tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1415 | val ctm = Thm.cterm_of thy (HOLogic.mk_Trueprop tm') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1416 | val th = Thm.trivial ctm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1417 | val res = HOLThm(rens_of info,th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1418 | val _ = if_debug pth res | 
| 14516 | 1419 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1420 | (thy,res) | 
| 14516 | 1421 | end | 
| 1422 | ||
| 1423 | fun INST_TYPE lambda (hth as HOLThm(rens,th)) thy = | |
| 1424 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1425 | val _ = message "INST_TYPE:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1426 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1427 | val tys_before = add_term_tfrees (prop_of th,[]) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1428 | val th1 = Thm.varifyT th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1429 | val tys_after = add_term_tvars (prop_of th1,[]) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1430 | val tyinst = map (fn (bef, iS) => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1431 | (case try (Lib.assoc (TFree bef)) lambda of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1432 | SOME ty => (ctyp_of thy (TVar iS), ctyp_of thy ty) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1433 | | NONE => (ctyp_of thy (TVar iS), ctyp_of thy (TFree bef)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1434 | )) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1435 | (zip tys_before tys_after) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1436 | val res = Drule.instantiate (tyinst,[]) th1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1437 | val hth = HOLThm([],res) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1438 | val res = norm_hthm thy hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1439 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1440 | val _ = if_debug pth res | 
| 14516 | 1441 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1442 | (thy,res) | 
| 14516 | 1443 | end | 
| 1444 | ||
| 1445 | fun INST sigma hth thy = | |
| 1446 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1447 | val _ = message "INST:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1448 | val _ = if_debug (app (fn (x,y) => (prin x; prin y))) sigma | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1449 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1450 | val (sdom,srng) = ListPair.unzip (rev sigma) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1451 | val th = hthm2thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1452 | val th1 = mk_INST (map (cterm_of thy) sdom) (map (cterm_of thy) srng) th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1453 | val res = HOLThm([],th1) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1454 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1455 | val _ = if_debug pth res | 
| 14516 | 1456 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1457 | (thy,res) | 
| 14516 | 1458 | end | 
| 1459 | ||
| 1460 | fun EQ_IMP_RULE (hth as HOLThm(rens,th)) thy = | |
| 1461 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1462 | val _ = message "EQ_IMP_RULE:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1463 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1464 | val res = HOLThm(rens,th RS eqimp_thm) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1465 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1466 | val _ = if_debug pth res | 
| 14516 | 1467 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1468 | (thy,res) | 
| 14516 | 1469 | end | 
| 1470 | ||
| 17322 | 1471 | fun mk_EQ_MP th1 th2 = [beta_eta_thm th1, beta_eta_thm th2] MRS eqmp_thm | 
| 14516 | 1472 | |
| 1473 | fun EQ_MP hth1 hth2 thy = | |
| 1474 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1475 | val _ = message "EQ_MP:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1476 | val _ = if_debug pth hth1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1477 | val _ = if_debug pth hth2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1478 | val (info,[th1,th2]) = disamb_thms [hth1,hth2] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1479 | val res = HOLThm(rens_of info,mk_EQ_MP th1 th2) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1480 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1481 | val _ = if_debug pth res | 
| 14516 | 1482 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1483 | (thy,res) | 
| 14516 | 1484 | end | 
| 1485 | ||
| 17894 | 1486 | fun mk_COMB th1 th2 thy = | 
| 14516 | 1487 | let | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1488 | val (f,g) = case concl_of th1 of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1489 |                         _ $ (Const("op =",_) $ f $ g) => (f,g)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1490 | | _ => raise ERR "mk_COMB" "First theorem not an equality" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1491 | val (x,y) = case concl_of th2 of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1492 |                         _ $ (Const("op =",_) $ x $ y) => (x,y)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1493 | | _ => raise ERR "mk_COMB" "Second theorem not an equality" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1494 | val fty = type_of f | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1495 | val (fd,fr) = dom_rng fty | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1496 | val comb_thm' = Drule.instantiate' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1497 | [SOME (ctyp_of thy fd),SOME (ctyp_of thy fr)] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1498 | [SOME (cterm_of thy f),SOME (cterm_of thy g), | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1499 | SOME (cterm_of thy x),SOME (cterm_of thy y)] comb_thm | 
| 14516 | 1500 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1501 | [th1,th2] MRS comb_thm' | 
| 14516 | 1502 | end | 
| 1503 | ||
| 1504 | fun SUBST rews ctxt hth thy = | |
| 1505 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1506 | val _ = message "SUBST:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1507 | val _ = if_debug (app pth) rews | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1508 | val _ = if_debug prin ctxt | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1509 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1510 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1511 | val (info1,ctxt') = disamb_term_from info ctxt | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1512 | val (info2,rews') = disamb_thms_from info1 rews | 
| 14516 | 1513 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1514 | val cctxt = cterm_of thy ctxt' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1515 | fun subst th [] = th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1516 | | subst th (rew::rews) = subst (mk_COMB th rew thy) rews | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1517 | val res = HOLThm(rens_of info2,mk_EQ_MP (subst (mk_REFL cctxt) rews') th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1518 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1519 | val _ = if_debug pth res | 
| 14516 | 1520 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1521 | (thy,res) | 
| 14516 | 1522 | end | 
| 1523 | ||
| 1524 | fun DISJ_CASES hth hth1 hth2 thy = | |
| 1525 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1526 | val _ = message "DISJ_CASES:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1527 | val _ = if_debug (app pth) [hth,hth1,hth2] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1528 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1529 | val (info1,th1) = disamb_thm_from info hth1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1530 | val (info2,th2) = disamb_thm_from info1 hth2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1531 | val th1 = norm_hyps th1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1532 | val th2 = norm_hyps th2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1533 | val (l,r) = case concl_of th of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1534 |                         _ $ (Const("op |",_) $ l $ r) => (l,r)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1535 | | _ => raise ERR "DISJ_CASES" "Conclusion not a disjunction" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1536 | val th1' = rearrange thy (HOLogic.mk_Trueprop l) th1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1537 | val th2' = rearrange thy (HOLogic.mk_Trueprop r) th2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1538 | val res1 = th RS disj_cases_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1539 | val res2 = uniq_compose ((nprems_of th1')-1) th1' ((nprems_of th)+1) res1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1540 | val res3 = uniq_compose ((nprems_of th2')-1) th2' (nprems_of res2) res2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1541 | val res = HOLThm(rens_of info2,res3) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1542 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1543 | val _ = if_debug pth res | 
| 14516 | 1544 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1545 | (thy,res) | 
| 14516 | 1546 | end | 
| 1547 | ||
| 1548 | fun DISJ1 hth tm thy = | |
| 1549 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1550 | val _ = message "DISJ1:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1551 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1552 | val _ = if_debug prin tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1553 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1554 | val (info',tm') = disamb_term_from info tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1555 | val ct = Thm.cterm_of thy tm' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1556 | val disj1_thm' = Drule.instantiate' [] [NONE,SOME ct] disj1_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1557 | val res = HOLThm(rens_of info',th RS disj1_thm') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1558 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1559 | val _ = if_debug pth res | 
| 14516 | 1560 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1561 | (thy,res) | 
| 14516 | 1562 | end | 
| 1563 | ||
| 1564 | fun DISJ2 tm hth thy = | |
| 1565 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1566 | val _ = message "DISJ1:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1567 | val _ = if_debug prin tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1568 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1569 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1570 | val (info',tm') = disamb_term_from info tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1571 | val ct = Thm.cterm_of thy tm' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1572 | val disj2_thm' = Drule.instantiate' [] [NONE,SOME ct] disj2_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1573 | val res = HOLThm(rens_of info',th RS disj2_thm') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1574 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1575 | val _ = if_debug pth res | 
| 14516 | 1576 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1577 | (thy,res) | 
| 14516 | 1578 | end | 
| 1579 | ||
| 1580 | fun IMP_ANTISYM hth1 hth2 thy = | |
| 1581 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1582 | val _ = message "IMP_ANTISYM:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1583 | val _ = if_debug pth hth1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1584 | val _ = if_debug pth hth2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1585 | val (info,[th1,th2]) = disamb_thms [hth1,hth2] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1586 | val th = [beta_eta_thm th1,beta_eta_thm th2] MRS imp_antisym_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1587 | val res = HOLThm(rens_of info,th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1588 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1589 | val _ = if_debug pth res | 
| 14516 | 1590 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1591 | (thy,res) | 
| 14516 | 1592 | end | 
| 1593 | ||
| 1594 | fun SYM (hth as HOLThm(rens,th)) thy = | |
| 1595 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1596 | val _ = message "SYM:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1597 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1598 | val th = th RS symmetry_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1599 | val res = HOLThm(rens,th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1600 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1601 | val _ = if_debug pth res | 
| 14516 | 1602 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1603 | (thy,res) | 
| 14516 | 1604 | end | 
| 1605 | ||
| 1606 | fun MP hth1 hth2 thy = | |
| 1607 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1608 | val _ = message "MP:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1609 | val _ = if_debug pth hth1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1610 | val _ = if_debug pth hth2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1611 | val (info,[th1,th2]) = disamb_thms [hth1,hth2] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1612 | val th = [beta_eta_thm th1,beta_eta_thm th2] MRS mp_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1613 | val res = HOLThm(rens_of info,th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1614 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1615 | val _ = if_debug pth res | 
| 14516 | 1616 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1617 | (thy,res) | 
| 14516 | 1618 | end | 
| 1619 | ||
| 1620 | fun CONJ hth1 hth2 thy = | |
| 1621 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1622 | val _ = message "CONJ:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1623 | val _ = if_debug pth hth1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1624 | val _ = if_debug pth hth2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1625 | val (info,[th1,th2]) = disamb_thms [hth1,hth2] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1626 | val th = [th1,th2] MRS conj_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1627 | val res = HOLThm(rens_of info,th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1628 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1629 | val _ = if_debug pth res | 
| 14516 | 1630 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1631 | (thy,res) | 
| 14516 | 1632 | end | 
| 1633 | ||
| 1634 | fun CONJUNCT1 (hth as HOLThm(rens,th)) thy = | |
| 1635 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1636 | val _ = message "CONJUNCT1:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1637 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1638 | val res = HOLThm(rens,th RS conjunct1_thm) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1639 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1640 | val _ = if_debug pth res | 
| 14516 | 1641 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1642 | (thy,res) | 
| 14516 | 1643 | end | 
| 1644 | ||
| 1645 | fun CONJUNCT2 (hth as HOLThm(rens,th)) thy = | |
| 1646 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1647 | val _ = message "CONJUNCT1:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1648 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1649 | val res = HOLThm(rens,th RS conjunct2_thm) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1650 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1651 | val _ = if_debug pth res | 
| 14516 | 1652 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1653 | (thy,res) | 
| 14516 | 1654 | end | 
| 1655 | ||
| 1656 | fun EXISTS ex wit hth thy = | |
| 1657 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1658 | val _ = message "EXISTS:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1659 | val _ = if_debug prin ex | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1660 | val _ = if_debug prin wit | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1661 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1662 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1663 | val (info',[ex',wit']) = disamb_terms_from info [ex,wit] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1664 | val cwit = cterm_of thy wit' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1665 | val cty = ctyp_of_term cwit | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1666 | val a = case ex' of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1667 |                     (Const("Ex",_) $ a) => a
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1668 | | _ => raise ERR "EXISTS" "Argument not existential" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1669 | val ca = cterm_of thy a | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1670 | val exists_thm' = beta_eta_thm (Drule.instantiate' [SOME cty] [SOME ca,SOME cwit] exists_thm) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1671 | val th1 = beta_eta_thm th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1672 | val th2 = implies_elim_all th1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1673 | val th3 = th2 COMP exists_thm' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1674 | val th = implies_intr_hyps th3 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1675 | val res = HOLThm(rens_of info',th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1676 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1677 | val _ = if_debug pth res | 
| 14516 | 1678 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1679 | (thy,res) | 
| 14516 | 1680 | end | 
| 1681 | ||
| 1682 | fun CHOOSE v hth1 hth2 thy = | |
| 1683 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1684 | val _ = message "CHOOSE:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1685 | val _ = if_debug prin v | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1686 | val _ = if_debug pth hth1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1687 | val _ = if_debug pth hth2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1688 | val (info,[th1,th2]) = disamb_thms [hth1,hth2] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1689 | val (info',v') = disamb_term_from info v | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1690 | fun strip 0 _ th = th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1691 | | strip n (p::ps) th = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1692 | strip (n-1) ps (implies_elim th (assume p)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1693 | | strip _ _ _ = raise ERR "CHOOSE" "strip error" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1694 | val cv = cterm_of thy v' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1695 | val th2 = norm_hyps th2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1696 | val cvty = ctyp_of_term cv | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1697 | val c = HOLogic.dest_Trueprop (concl_of th2) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1698 | val cc = cterm_of thy c | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1699 | val a = case concl_of th1 of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1700 |                     _ $ (Const("Ex",_) $ a) => a
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1701 | | _ => raise ERR "CHOOSE" "Conclusion not existential" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1702 | val ca = cterm_of (theory_of_thm th1) a | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1703 | val choose_thm' = beta_eta_thm (Drule.instantiate' [SOME cvty] [SOME ca,SOME cc] choose_thm) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1704 | val th21 = rearrange thy (HOLogic.mk_Trueprop (a $ v')) th2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1705 | val th22 = strip ((nprems_of th21)-1) (cprems_of th21) th21 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1706 | val th23 = beta_eta_thm (forall_intr cv th22) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1707 | val th11 = implies_elim_all (beta_eta_thm th1) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1708 | val th' = th23 COMP (th11 COMP choose_thm') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1709 | val th = implies_intr_hyps th' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1710 | val res = HOLThm(rens_of info',th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1711 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1712 | val _ = if_debug pth res | 
| 14516 | 1713 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1714 | (thy,res) | 
| 14516 | 1715 | end | 
| 1716 | ||
| 1717 | fun GEN v hth thy = | |
| 1718 | let | |
| 17594 | 1719 | val _ = message "GEN:" | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1720 | val _ = if_debug prin v | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1721 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1722 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1723 | val (info',v') = disamb_term_from info v | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1724 | val res = HOLThm(rens_of info',mk_GEN v' th thy) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1725 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1726 | val _ = if_debug pth res | 
| 14516 | 1727 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1728 | (thy,res) | 
| 14516 | 1729 | end | 
| 1730 | ||
| 1731 | fun SPEC tm hth thy = | |
| 1732 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1733 | val _ = message "SPEC:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1734 | val _ = if_debug prin tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1735 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1736 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1737 | val (info',tm') = disamb_term_from info tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1738 | val ctm = Thm.cterm_of thy tm' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1739 | val cty = Thm.ctyp_of_term ctm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1740 | val spec' = Drule.instantiate' [SOME cty] [NONE,SOME ctm] spec_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1741 | val th = th RS spec' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1742 | val res = HOLThm(rens_of info',th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1743 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1744 | val _ = if_debug pth res | 
| 14516 | 1745 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1746 | (thy,res) | 
| 14516 | 1747 | end | 
| 1748 | ||
| 1749 | fun COMB hth1 hth2 thy = | |
| 1750 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1751 | val _ = message "COMB:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1752 | val _ = if_debug pth hth1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1753 | val _ = if_debug pth hth2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1754 | val (info,[th1,th2]) = disamb_thms [hth1,hth2] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1755 | val res = HOLThm(rens_of info,mk_COMB th1 th2 thy) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1756 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1757 | val _ = if_debug pth res | 
| 14516 | 1758 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1759 | (thy,res) | 
| 14516 | 1760 | end | 
| 1761 | ||
| 1762 | fun TRANS hth1 hth2 thy = | |
| 1763 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1764 | val _ = message "TRANS:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1765 | val _ = if_debug pth hth1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1766 | val _ = if_debug pth hth2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1767 | val (info,[th1,th2]) = disamb_thms [hth1,hth2] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1768 | val th = [th1,th2] MRS trans_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1769 | val res = HOLThm(rens_of info,th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1770 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1771 | val _ = if_debug pth res | 
| 14516 | 1772 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1773 | (thy,res) | 
| 14516 | 1774 | end | 
| 24707 | 1775 | |
| 14516 | 1776 | |
| 1777 | fun CCONTR tm hth thy = | |
| 1778 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1779 | val _ = message "SPEC:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1780 | val _ = if_debug prin tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1781 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1782 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1783 | val (info',tm') = disamb_term_from info tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1784 | val th = norm_hyps th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1785 | val ct = cterm_of thy tm' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1786 |         val th1 = rearrange thy (HOLogic.mk_Trueprop (Const("Not",boolT-->boolT) $ tm')) th
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1787 | val ccontr_thm' = Drule.instantiate' [] [SOME ct] ccontr_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1788 | val res1 = uniq_compose ((nprems_of th1) - 1) th1 1 ccontr_thm' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1789 | val res = HOLThm(rens_of info',res1) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1790 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1791 | val _ = if_debug pth res | 
| 14516 | 1792 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1793 | (thy,res) | 
| 14516 | 1794 | end | 
| 1795 | ||
| 17894 | 1796 | fun mk_ABS v th thy = | 
| 14516 | 1797 | let | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1798 | val cv = cterm_of thy v | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1799 | val th1 = implies_elim_all (beta_eta_thm th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1800 | val (f,g) = case concl_of th1 of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1801 |                         _ $ (Const("op =",_) $ f $ g) => (Term.lambda v f,Term.lambda v g)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1802 | | _ => raise ERR "mk_ABS" "Bad conclusion" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1803 | val (fd,fr) = dom_rng (type_of f) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1804 | val abs_thm' = Drule.instantiate' [SOME (ctyp_of thy fd), SOME (ctyp_of thy fr)] [SOME (cterm_of thy f), SOME (cterm_of thy g)] abs_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1805 | val th2 = forall_intr cv th1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1806 | val th3 = th2 COMP abs_thm' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1807 | val res = implies_intr_hyps th3 | 
| 14516 | 1808 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1809 | res | 
| 14516 | 1810 | end | 
| 1811 | ||
| 1812 | fun ABS v hth thy = | |
| 1813 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1814 | val _ = message "ABS:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1815 | val _ = if_debug prin v | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1816 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1817 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1818 | val (info',v') = disamb_term_from info v | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1819 | val res = HOLThm(rens_of info',mk_ABS v' th thy) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1820 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1821 | val _ = if_debug pth res | 
| 14516 | 1822 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1823 | (thy,res) | 
| 14516 | 1824 | end | 
| 1825 | ||
| 1826 | fun GEN_ABS copt vlist hth thy = | |
| 1827 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1828 | val _ = message "GEN_ABS:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1829 | val _ = case copt of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1830 | SOME c => if_debug prin c | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1831 | | NONE => () | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1832 | val _ = if_debug (app prin) vlist | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1833 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1834 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1835 | val (info',vlist') = disamb_terms_from info vlist | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1836 | val th1 = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1837 | case copt of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1838 | SOME (c as Const(cname,cty)) => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1839 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1840 | fun inst_type ty1 ty2 (TVar _) = raise ERR "GEN_ABS" "Type variable found!" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1841 | | inst_type ty1 ty2 (ty as TFree _) = if ty1 = ty | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1842 | then ty2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1843 | else ty | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1844 | | inst_type ty1 ty2 (ty as Type(name,tys)) = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1845 | Type(name,map (inst_type ty1 ty2) tys) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1846 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1847 | foldr (fn (v,th) => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1848 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1849 | val cdom = fst (dom_rng (fst (dom_rng cty))) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1850 | val vty = type_of v | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1851 | val newcty = inst_type cdom vty cty | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1852 | val cc = cterm_of thy (Const(cname,newcty)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1853 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1854 | mk_COMB (mk_REFL cc) (mk_ABS v th thy) thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1855 | end) th vlist' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1856 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1857 | | SOME _ => raise ERR "GEN_ABS" "Bad constant" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1858 | | NONE => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1859 | foldr (fn (v,th) => mk_ABS v th thy) th vlist' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1860 | val res = HOLThm(rens_of info',th1) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1861 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1862 | val _ = if_debug pth res | 
| 14516 | 1863 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1864 | (thy,res) | 
| 14516 | 1865 | end | 
| 1866 | ||
| 1867 | fun NOT_INTRO (hth as HOLThm(rens,th)) thy = | |
| 1868 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1869 | val _ = message "NOT_INTRO:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1870 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1871 | val th1 = implies_elim_all (beta_eta_thm th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1872 | val a = case concl_of th1 of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1873 |                     _ $ (Const("op -->",_) $ a $ Const("False",_)) => a
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1874 | | _ => raise ERR "NOT_INTRO" "Conclusion of bad form" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1875 | val ca = cterm_of thy a | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1876 | val th2 = equal_elim (Drule.instantiate' [] [SOME ca] not_intro_thm) th1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1877 | val res = HOLThm(rens,implies_intr_hyps th2) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1878 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1879 | val _ = if_debug pth res | 
| 14516 | 1880 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1881 | (thy,res) | 
| 14516 | 1882 | end | 
| 1883 | ||
| 1884 | fun NOT_ELIM (hth as HOLThm(rens,th)) thy = | |
| 1885 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1886 | val _ = message "NOT_INTRO:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1887 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1888 | val th1 = implies_elim_all (beta_eta_thm th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1889 | val a = case concl_of th1 of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1890 |                     _ $ (Const("Not",_) $ a) => a
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1891 | | _ => raise ERR "NOT_ELIM" "Conclusion of bad form" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1892 | val ca = cterm_of thy a | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1893 | val th2 = equal_elim (Drule.instantiate' [] [SOME ca] not_elim_thm) th1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1894 | val res = HOLThm(rens,implies_intr_hyps th2) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1895 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1896 | val _ = if_debug pth res | 
| 14516 | 1897 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1898 | (thy,res) | 
| 14516 | 1899 | end | 
| 1900 | ||
| 1901 | fun DISCH tm hth thy = | |
| 1902 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1903 | val _ = message "DISCH:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1904 | val _ = if_debug prin tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1905 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1906 | val (info,th) = disamb_thm hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1907 | val (info',tm') = disamb_term_from info tm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1908 | val prems = prems_of th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1909 | val th1 = beta_eta_thm th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1910 | val th2 = implies_elim_all th1 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1911 | val th3 = implies_intr (cterm_of thy (HOLogic.mk_Trueprop tm')) th2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1912 | val th4 = th3 COMP disch_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1913 | val res = HOLThm(rens_of info',implies_intr_hyps th4) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1914 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1915 | val _ = if_debug pth res | 
| 14516 | 1916 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1917 | (thy,res) | 
| 14516 | 1918 | end | 
| 1919 | ||
| 1920 | val spaces = String.concat o separate " " | |
| 1921 | ||
| 1922 | fun new_definition thyname constname rhs thy = | |
| 1923 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1924 | val constname = rename_const thyname thy constname | 
| 17894 | 1925 | val redeclared = isSome (Sign.const_type thy (Sign.intern_const thy constname)); | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1926 |         val _ = warning ("Introducing constant " ^ constname)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1927 | val (thmname,thy) = get_defname thyname constname thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1928 | val (info,rhs') = disamb_term rhs | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1929 | val ctype = type_of rhs' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1930 | val csyn = mk_syn thy constname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1931 | val thy1 = case HOL4DefThy.get thy of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1932 | Replaying _ => thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1933 | | _ => (ImportRecorder.add_consts [(constname, ctype, csyn)]; Sign.add_consts_i [(constname,ctype,csyn)] thy) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1934 | val eq = mk_defeq constname rhs' thy1 | 
| 27691 
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
 haftmann parents: 
27353diff
changeset | 1935 | val (thms, thy2) = PureThy.add_defs false [((thmname,eq),[])] thy1 | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1936 | val _ = ImportRecorder.add_defs thmname eq | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1937 | val def_thm = hd thms | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1938 | val thm' = def_thm RS meta_eq_to_obj_eq_thm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1939 | val (thy',th) = (thy2, thm') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1940 | val fullcname = Sign.intern_const thy' constname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1941 | val thy'' = add_hol4_const_mapping thyname constname true fullcname thy' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1942 | val _ = ImportRecorder.add_hol_const_mapping thyname constname fullcname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1943 | val (linfo,tm24) = disamb_term (mk_teq constname rhs' thy'') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1944 | val rew = rewrite_hol4_term eq thy'' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1945 | val crhs = cterm_of thy'' (#2 (Logic.dest_equals (prop_of rew))) | 
| 28677 | 1946 | val thy22 = if Thm.def_name constname = thmname andalso not redeclared andalso csyn = NoSyn | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1947 | then | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1948 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1949 | val p1 = quotename constname | 
| 26928 | 1950 | val p2 = Display.string_of_ctyp (ctyp_of thy'' ctype) | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1951 | val p3 = string_of_mixfix csyn | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1952 | val p4 = smart_string_of_cterm crhs | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1953 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1954 |                             add_dump ("constdefs\n  " ^p1^ " :: \"" ^p2^ "\" "^p3^ "\n  " ^p4) thy''
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1955 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1956 | else | 
| 26928 | 1957 |                         (add_dump ("consts\n  " ^ (quotename constname) ^ " :: \"" ^ Display.string_of_ctyp (ctyp_of thy'' ctype) ^
 | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1958 | "\" " ^ (string_of_mixfix csyn) ^ "\n\ndefs\n " ^ (quotename thmname) ^ ": " ^ (smart_string_of_cterm crhs)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1959 | thy'') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1960 |         val hth = case Shuffler.set_prop thy22 (HOLogic.mk_Trueprop tm24) [("",th)] of
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1961 | SOME (_,res) => HOLThm(rens_of linfo,res) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1962 | | NONE => raise ERR "new_definition" "Bad conclusion" | 
| 28965 | 1963 | val fullname = Sign.full_bname thy22 thmname | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1964 | val thy22' = case opt_get_output_thy thy22 of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1965 | "" => (ImportRecorder.add_hol_mapping thyname thmname fullname; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1966 | add_hol4_mapping thyname thmname fullname thy22) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1967 | | output_thy => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1968 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1969 | val moved_thmname = output_thy ^ "." ^ thyname ^ "." ^ thmname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1970 | val _ = ImportRecorder.add_hol_move fullname moved_thmname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1971 | val _ = ImportRecorder.add_hol_mapping thyname thmname moved_thmname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1972 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1973 | thy22 |> add_hol4_move fullname moved_thmname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1974 | |> add_hol4_mapping thyname thmname moved_thmname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1975 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1976 | val _ = message "new_definition:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1977 | val _ = if_debug pth hth | 
| 14516 | 1978 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1979 | (thy22',hth) | 
| 14516 | 1980 | end | 
| 1981 | handle e => (message "exception in new_definition"; print_exn e) | |
| 1982 | ||
| 1983 | local | |
| 1984 | val helper = thm "termspec_help" | |
| 1985 | in | |
| 1986 | fun new_specification thyname thmname names hth thy = | |
| 1987 | case HOL4DefThy.get thy of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1988 | Replaying _ => (thy,hth) | 
| 24707 | 1989 | | _ => | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1990 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1991 | val _ = message "NEW_SPEC:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1992 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1993 | val names = map (rename_const thyname thy) names | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1994 |             val _ = warning ("Introducing constants " ^ commas names)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1995 | val (HOLThm(rens,th)) = norm_hthm thy hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1996 | val thy1 = case HOL4DefThy.get thy of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1997 | Replaying _ => thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1998 | | _ => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 1999 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2000 | fun dest_eta_abs (Abs(x,xT,body)) = (x,xT,body) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2001 | | dest_eta_abs body = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2002 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2003 | val (dT,rT) = dom_rng (type_of body) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2004 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2005 |                                        ("x",dT,body $ Bound 0)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2006 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2007 | handle TYPE _ => raise ERR "new_specification" "not an abstraction type" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2008 |                                fun dest_exists (Const("Ex",_) $ abody) =
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2009 | dest_eta_abs abody | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2010 | | dest_exists tm = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2011 | raise ERR "new_specification" "Bad existential formula" | 
| 24707 | 2012 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2013 | val (consts,_) = Library.foldl (fn ((cs,ex),cname) => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2014 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2015 | val (_,cT,p) = dest_exists ex | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2016 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2017 | ((cname,cT,mk_syn thy cname)::cs,p) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2018 | end) (([],HOLogic.dest_Trueprop (concl_of th)),names) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2019 | val str = Library.foldl (fn (acc,(c,T,csyn)) => | 
| 26928 | 2020 |                                                    acc ^ "\n  " ^ (quotename c) ^ " :: \"" ^ Display.string_of_ctyp (ctyp_of thy T) ^ "\" " ^ (string_of_mixfix csyn)) ("consts",consts)
 | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2021 | val thy' = add_dump str thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2022 | val _ = ImportRecorder.add_consts consts | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2023 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2024 | Sign.add_consts_i consts thy' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2025 | end | 
| 14516 | 2026 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2027 | val thy1 = foldr (fn(name,thy)=> | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2028 | snd (get_defname thyname name thy)) thy1 names | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2029 | fun new_name name = fst (get_defname thyname name thy1) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2030 | val names' = map (fn name => (new_name name,name,false)) names | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2031 | val (thy',res) = SpecificationPackage.add_specification NONE | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2032 | names' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2033 | (thy1,th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2034 | val _ = ImportRecorder.add_specification names' th | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2035 | val res' = Thm.unvarify res | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2036 | val hth = HOLThm(rens,res') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2037 | val rew = rewrite_hol4_term (concl_of res') thy' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2038 | val th = equal_elim rew res' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2039 | fun handle_const (name,thy) = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2040 | let | 
| 28677 | 2041 | val defname = Thm.def_name name | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2042 | val (newname,thy') = get_defname thyname name thy | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2043 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2044 | (if defname = newname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2045 | then quotename name | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2046 | else (quotename newname) ^ ": " ^ (quotename name),thy') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2047 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2048 | val (new_names,thy') = foldr (fn(name,(names,thy)) => | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2049 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2050 | val (name',thy') = handle_const (name,thy) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2051 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2052 | (name'::names,thy') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2053 | end) ([],thy') names | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2054 |             val thy'' = add_dump ("specification (" ^ (spaces new_names) ^ ") " ^ thmname ^ ": " ^ (smart_string_of_thm th) ^
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2055 | "\n by (import " ^ thyname ^ " " ^ thmname ^ ")") | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2056 | thy' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2057 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2058 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2059 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2060 | intern_store_thm false thyname thmname hth thy'' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2061 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2062 | handle e => (message "exception in new_specification"; print_exn e) | 
| 24707 | 2063 | |
| 14516 | 2064 | end | 
| 24707 | 2065 | |
| 14516 | 2066 | fun new_axiom name tm thy = raise ERR "new_axiom" ("Oh, no you don't! (" ^ name ^ ")")
 | 
| 24707 | 2067 | |
| 14516 | 2068 | fun to_isa_thm (hth as HOLThm(_,th)) = | 
| 2069 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2070 | val (HOLThm args) = norm_hthm (theory_of_thm th) hth | 
| 14516 | 2071 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2072 | apsnd strip_shyps args | 
| 14516 | 2073 | end | 
| 2074 | ||
| 2075 | fun to_isa_term tm = tm | |
| 2076 | ||
| 2077 | local | |
| 2078 | val light_nonempty = thm "light_ex_imp_nonempty" | |
| 2079 | val ex_imp_nonempty = thm "ex_imp_nonempty" | |
| 2080 | val typedef_hol2hol4 = thm "typedef_hol2hol4" | |
| 2081 | val typedef_hol2hollight = thm "typedef_hol2hollight" | |
| 2082 | in | |
| 2083 | fun new_type_definition thyname thmname tycname hth thy = | |
| 2084 | case HOL4DefThy.get thy of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2085 | Replaying _ => (thy,hth) | 
| 24707 | 2086 | | _ => | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2087 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2088 | val _ = message "TYPE_DEF:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2089 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2090 |             val _ = warning ("Introducing type " ^ tycname)
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2091 | val (HOLThm(rens,td_th)) = norm_hthm thy hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2092 | val th2 = beta_eta_thm (td_th RS ex_imp_nonempty) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2093 | val c = case concl_of th2 of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2094 |                         _ $ (Const("Ex",_) $ Abs(_,_,Const("op :",_) $ _ $ c)) => c
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2095 | | _ => raise ERR "new_type_definition" "Bad type definition theorem" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2096 | val tfrees = term_tfrees c | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2097 | val tnames = map fst tfrees | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2098 | val tsyn = mk_syn thy tycname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2099 | val typ = (tycname,tnames,tsyn) | 
| 28662 | 2100 | val ((_, typedef_info), thy') = TypedefPackage.add_typedef false (SOME thmname) typ c NONE (rtac th2 1) thy | 
| 19064 | 2101 | val _ = ImportRecorder.add_typedef (SOME thmname) typ c NONE th2 | 
| 24707 | 2102 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2103 | val th3 = (#type_definition typedef_info) RS typedef_hol2hol4 | 
| 14516 | 2104 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2105 | val fulltyname = Sign.intern_type thy' tycname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2106 | val thy'' = add_hol4_type_mapping thyname tycname true fulltyname thy' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2107 | val _ = ImportRecorder.add_hol_type_mapping thyname tycname fulltyname | 
| 14516 | 2108 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2109 | val (hth' as HOLThm args) = norm_hthm thy'' (HOLThm(rens,th3)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2110 |             val _ = if has_ren hth' then warning ("Theorem " ^ thmname ^ " needs variable-disambiguating")
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2111 | else () | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2112 | val thy4 = add_hol4_pending thyname thmname args thy'' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2113 | val _ = ImportRecorder.add_hol_pending thyname thmname (hthm2thm hth') | 
| 14516 | 2114 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2115 | val rew = rewrite_hol4_term (concl_of td_th) thy4 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2116 | val th = equal_elim rew (Thm.transfer thy4 td_th) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2117 | val c = case HOLogic.dest_Trueprop (prop_of th) of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2118 |                           Const("Ex",exT) $ P =>
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2119 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2120 | val PT = domain_type exT | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2121 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2122 |                               Const("Collect",PT-->HOLogic.mk_setT (domain_type PT)) $ P
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2123 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2124 | | _ => error "Internal error in ProofKernel.new_typedefinition" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2125 | val tnames_string = if null tnames | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2126 | then "" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2127 |                                 else "(" ^ commas tnames ^ ") "
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2128 | val proc_prop = if null tnames | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2129 | then smart_string_of_cterm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2130 | else Library.setmp show_all_types true smart_string_of_cterm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2131 |             val thy5 = add_dump ("typedef (open) " ^ tnames_string ^ (quotename tycname) ^ " = " ^ (proc_prop (cterm_of thy4 c)) ^ " "
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2132 | ^ (string_of_mixfix tsyn) ^ "\n by (rule typedef_helper,import " ^ thyname ^ " " ^ thmname ^ ")") thy4 | 
| 24707 | 2133 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2134 |             val thy6 = add_dump ("lemmas " ^ thmname ^ " = typedef_hol2hol4 [OF type_definition_" ^ tycname ^ "]") thy5
 | 
| 24707 | 2135 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2136 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2137 | val _ = if_debug pth hth' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2138 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2139 | (thy6,hth') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2140 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2141 | handle e => (message "exception in new_type_definition"; print_exn e) | 
| 14516 | 2142 | |
| 17490 | 2143 | fun add_dump_constdefs thy defname constname rhs ty = | 
| 2144 | let | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2145 | val n = quotename constname | 
| 26928 | 2146 | val t = Display.string_of_ctyp (ctyp_of thy ty) | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2147 | val syn = string_of_mixfix (mk_syn thy constname) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2148 | (*val eq = smart_string_of_cterm (cterm_of thy (Const(rhs, ty)))*) | 
| 17490 | 2149 | val eq = quote (constname ^ " == "^rhs) | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2150 | val d = case defname of NONE => "" | SOME defname => (quotename defname)^" : " | 
| 17490 | 2151 | in | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2152 |         add_dump ("constdefs\n  " ^ n ^ " :: \"" ^ t ^ "\" " ^ syn ^ "\n  " ^ d ^ eq) thy
 | 
| 17490 | 2153 | end | 
| 2154 | ||
| 24707 | 2155 | fun add_dump_syntax thy name = | 
| 17594 | 2156 | let | 
| 2157 | val n = quotename name | |
| 19264 | 2158 | val syn = string_of_mixfix (mk_syn thy name) | 
| 17594 | 2159 | in | 
| 2160 |       add_dump ("syntax\n  "^n^" :: _ "^syn) thy
 | |
| 2161 | end | |
| 24707 | 2162 | |
| 14516 | 2163 | fun type_introduction thyname thmname tycname abs_name rep_name (P,t) hth thy = | 
| 2164 | case HOL4DefThy.get thy of | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2165 | Replaying _ => (thy, | 
| 26343 
0dd2eab7b296
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 2166 | HOLThm([], PureThy.get_thm thy (thmname^"_@intern")) handle ERROR _ => hth) | 
| 24707 | 2167 | | _ => | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2168 | let | 
| 17322 | 2169 | val _ = message "TYPE_INTRO:" | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2170 | val _ = if_debug pth hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2171 |             val _ = warning ("Introducing type " ^ tycname ^ " (with morphisms " ^ abs_name ^ " and " ^ rep_name ^ ")")
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2172 | val (HOLThm(rens,td_th)) = norm_hthm thy hth | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2173 | val tT = type_of t | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2174 | val light_nonempty' = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2175 | Drule.instantiate' [SOME (ctyp_of thy tT)] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2176 | [SOME (cterm_of thy P), | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2177 | SOME (cterm_of thy t)] light_nonempty | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2178 | val th2 = beta_eta_thm (td_th RS (beta_eta_thm light_nonempty')) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2179 | val c = case concl_of th2 of | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2180 |                         _ $ (Const("Ex",_) $ Abs(_,_,Const("op :",_) $ _ $ c)) => c
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2181 | | _ => raise ERR "type_introduction" "Bad type definition theorem" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2182 | val tfrees = term_tfrees c | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2183 | val tnames = sort string_ord (map fst tfrees) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2184 | val tsyn = mk_syn thy tycname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2185 | val typ = (tycname,tnames,tsyn) | 
| 28662 | 2186 | val ((_, typedef_info), thy') = TypedefPackage.add_typedef false NONE typ c (SOME(rep_name,abs_name)) (rtac th2 1) thy | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2187 | val _ = ImportRecorder.add_typedef NONE typ c (SOME(rep_name,abs_name)) th2 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2188 | val fulltyname = Sign.intern_type thy' tycname | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2189 | val aty = Type (fulltyname, map mk_vartype tnames) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2190 | val abs_ty = tT --> aty | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2191 | val rep_ty = aty --> tT | 
| 24707 | 2192 | val typedef_hol2hollight' = | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2193 | Drule.instantiate' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2194 | [SOME (ctyp_of thy' aty), SOME (ctyp_of thy' tT)] | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2195 |                     [NONE, NONE, NONE, SOME (cterm_of thy' (Free ("a", aty))), SOME (cterm_of thy' (Free ("r", tT)))]
 | 
| 17379 
85109eec887b
Fixed Importer bug in type_introduction: instantiate type variables in rep-abs theorems exactly as it is done in HOL-light.
 obua parents: 
17335diff
changeset | 2196 | typedef_hol2hollight | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2197 | val th4 = (#type_definition typedef_info) RS typedef_hol2hollight' | 
| 22691 | 2198 | val _ = null (Thm.fold_terms Term.add_tvars th4 []) orelse | 
| 20286 | 2199 | raise ERR "type_introduction" "no type variables expected any more" | 
| 22691 | 2200 | val _ = null (Thm.fold_terms Term.add_vars th4 []) orelse | 
| 20286 | 2201 | raise ERR "type_introduction" "no term variables expected any more" | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2202 |             val _ = message ("step 3: thyname="^thyname^", tycname="^tycname^", fulltyname="^fulltyname)
 | 
| 17322 | 2203 | val thy'' = add_hol4_type_mapping thyname tycname true fulltyname thy' | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2204 | val _ = ImportRecorder.add_hol_type_mapping thyname tycname fulltyname | 
| 17322 | 2205 | val _ = message "step 4" | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2206 | val (hth' as HOLThm args) = norm_hthm thy'' (HOLThm(rens,th4)) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2207 | val thy4 = add_hol4_pending thyname thmname args thy'' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2208 | val _ = ImportRecorder.add_hol_pending thyname thmname (hthm2thm hth') | 
| 24707 | 2209 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2210 | val P' = P (* why !? #2 (Logic.dest_equals (concl_of (rewrite_hol4_term P thy4))) *) | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2211 | val c = | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2212 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2213 | val PT = type_of P' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2214 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2215 |                     Const("Collect",PT-->HOLogic.mk_setT (domain_type PT)) $ P'
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2216 | end | 
| 24707 | 2217 | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2218 | val tnames_string = if null tnames | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2219 | then "" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2220 |                                 else "(" ^ commas tnames ^ ") "
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2221 | val proc_prop = if null tnames | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2222 | then smart_string_of_cterm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2223 | else Library.setmp show_all_types true smart_string_of_cterm | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2224 |             val thy = add_dump ("typedef (open) " ^ tnames_string ^ (quotename tycname) ^
 | 
| 24707 | 2225 | " = " ^ (proc_prop (cterm_of thy4 c)) ^ " " ^ | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2226 | (string_of_mixfix tsyn) ^ " morphisms "^ | 
| 24707 | 2227 | (quote rep_name)^" "^(quote abs_name)^"\n"^ | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2228 |               ("  apply (rule light_ex_imp_nonempty[where t="^
 | 
| 24707 | 2229 | (proc_prop (cterm_of thy4 t))^"])\n"^ | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2230 |               ("  by (import " ^ thyname ^ " " ^ (quotename thmname) ^ ")"))) thy4
 | 
| 26928 | 2231 | val str_aty = Display.string_of_ctyp (ctyp_of thy aty) | 
| 24707 | 2232 | val thy = add_dump_syntax thy rep_name | 
| 17594 | 2233 | val thy = add_dump_syntax thy abs_name | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2234 |             val thy = add_dump ("lemmas " ^ (quote (thmname^"_@intern")) ^
 | 
| 17594 | 2235 | " = typedef_hol2hollight \n"^ | 
| 2236 | " [where a=\"a :: "^str_aty^"\" and r=r" ^ | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2237 |               " ,\n   OF "^(quotename ("type_definition_" ^ tycname)) ^ "]") thy
 | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2238 | val _ = message "RESULT:" | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2239 | val _ = if_debug pth hth' | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2240 | in | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2241 | (thy,hth') | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2242 | end | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26343diff
changeset | 2243 | handle e => (message "exception in type_introduction"; print_exn e) | 
| 14516 | 2244 | end | 
| 2245 | ||
| 17322 | 2246 | val prin = prin | 
| 2247 | ||
| 14516 | 2248 | end |