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