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