src/HOL/Import/import_rule.ML
author wenzelm
Wed, 25 Jun 2025 16:35:25 +0200
changeset 82768 8f866fd6fae1
parent 81962 e506e636c724
permissions -rw-r--r--
merged
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
     1
(*  Title:      HOL/Import/import_rule.ML
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
     2
    Author:     Cezary Kaliszyk, University of Innsbruck
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
     3
    Author:     Alexander Krauss, QAware GmbH
81933
cb05f8d3fd05 more comments;
wenzelm
parents: 81932
diff changeset
     4
    Author:     Makarius
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
     5
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
     6
Importer proof rules and processing of lines and files.
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
     7
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
     8
Based on earlier code by Steven Obua and Sebastian Skalberg.
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
     9
*)
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    10
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    11
signature IMPORT_RULE =
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    12
sig
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    13
  val trace : bool Config.T
81847
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
    14
  val import_file : Path.T -> theory -> theory
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    15
end
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    16
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    17
structure Import_Rule: IMPORT_RULE =
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    18
struct
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    19
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    20
(* tracing *)
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    21
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    22
val trace = Attrib.setup_config_bool \<^binding>\<open>import_trace\<close> (K false)
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    23
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    24
type name = {hol: string, isabelle: string}
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    25
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    26
fun print_name {hol, isabelle} =
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    27
  if hol = isabelle then quote hol
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    28
  else quote hol ^ " = " ^ quote isabelle
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    29
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    30
fun print_item kind name =
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    31
  Markup.markup Markup.keyword1 kind ^ " " ^ print_name name
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    32
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    33
fun tracing_item thy kind name =
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    34
  if Config.get_global thy trace then tracing (print_item kind name) else ()
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    35
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    36
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
    37
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
    38
(** primitive rules of HOL Light **)
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
    39
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    40
fun to_obj_eq th =
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    41
  let
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    42
    val (t, u) = Thm.dest_equals (Thm.cprop_of th)
81866
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
    43
    val A = Thm.ctyp_of_cterm t
81961
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
    44
    val rl = \<^instantiate>\<open>(no_beta) 'a = A and t and u in lemma \<open>t \<equiv> u \<Longrightarrow> t = u\<close> by simp\<close>
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    45
  in
81866
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
    46
    Thm.implies_elim rl th
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    47
  end
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    48
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    49
fun to_meta_eq th =
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    50
  let
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    51
    val (t, u) = Thm.dest_binop (HOLogic.dest_judgment (Thm.cprop_of th))
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    52
    val A = Thm.ctyp_of_cterm t
81961
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
    53
    val rl = \<^instantiate>\<open>(no_beta) 'a = A and t and u in lemma \<open>t = u \<Longrightarrow> t \<equiv> u\<close> by simp\<close>
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    54
  in
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    55
    Thm.implies_elim rl th
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    56
  end
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    57
81962
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    58
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    59
(* basic logic *)
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    60
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    61
fun refl t =
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    62
  \<^instantiate>\<open>(no_beta) 'a = \<open>Thm.ctyp_of_cterm t\<close> and t in lemma \<open>t = t\<close> by (fact refl)\<close>
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    63
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    64
fun trans th1 th2 =
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    65
  Thm.transitive (to_meta_eq th1) (to_meta_eq th2) |> to_obj_eq
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    66
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    67
fun mk_comb th1 th2 =
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    68
  Thm.combination (to_meta_eq th1) (to_meta_eq th2) |> to_obj_eq
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    69
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    70
fun abs x th =
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    71
  to_meta_eq th |> Thm.abstract_rule (Term.term_name (Thm.term_of x)) x |> to_obj_eq
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    72
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    73
fun beta t = Thm.beta_conversion false t |> to_obj_eq
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    74
81962
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    75
val assume = Thm.assume_cterm o HOLogic.mk_judgment
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    76
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    77
fun eq_mp th1 th2 =
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    78
  let
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    79
    val (Q, P) = Thm.dest_binop (HOLogic.dest_judgment (Thm.cprop_of th1))
81961
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
    80
    val rl = \<^instantiate>\<open>(no_beta) P and Q in lemma \<open>Q = P \<Longrightarrow> Q \<Longrightarrow> P\<close> by (fact iffD1)\<close>
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    81
  in
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    82
    Thm.implies_elim (Thm.implies_elim rl th1) th2
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    83
  end
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    84
81962
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
    85
fun deduct_antisym_rule th1 th2 =
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    86
  let
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    87
    val Q = Thm.cprop_of th1
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    88
    val P = Thm.cprop_of th2
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    89
    val th1' = Thm.implies_intr P th1
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
    90
    val th2' = Thm.implies_intr Q th2
81944
wenzelm
parents: 81943
diff changeset
    91
    val rl =
81961
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
    92
      \<^instantiate>\<open>(no_beta)
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
    93
          P = \<open>HOLogic.dest_judgment P\<close> and
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
    94
          Q = \<open>HOLogic.dest_judgment Q\<close>
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
    95
        in lemma \<open>(P \<Longrightarrow> Q) \<Longrightarrow> (Q \<Longrightarrow> P) \<Longrightarrow> Q = P\<close> by (rule iffI)\<close>
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    96
  in
81961
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
    97
    Thm.implies_elim (Thm.implies_elim rl th1') th2'
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    98
  end
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
    99
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   100
fun conj1 th =
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   101
  let
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   102
    val (P, Q) = Thm.dest_binop (HOLogic.dest_judgment (Thm.cprop_of th))
81961
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
   103
    val rl = \<^instantiate>\<open>(no_beta) P and Q in lemma \<open>P \<and> Q \<Longrightarrow> P\<close> by (fact conjunct1)\<close>
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   104
  in
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   105
    Thm.implies_elim rl th
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   106
  end
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   107
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   108
fun conj2 th =
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   109
  let
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   110
    val (P, Q) = Thm.dest_binop (HOLogic.dest_judgment (Thm.cprop_of th))
81961
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
   111
    val rl = \<^instantiate>\<open>(no_beta) P and Q in lemma \<open>P \<and> Q \<Longrightarrow> Q\<close> by (fact conjunct2)\<close>
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   112
  in
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   113
    Thm.implies_elim rl th
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   114
  end
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   115
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   116
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   117
(* instantiation *)
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   118
81852
c693485575a9 tuned names;
wenzelm
parents: 81851
diff changeset
   119
fun freezeT thy th =
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   120
  let
81857
3ba99477b893 minor performance tuning;
wenzelm
parents: 81856
diff changeset
   121
    fun add (v as ((a, _), S)) tvars =
3ba99477b893 minor performance tuning;
wenzelm
parents: 81856
diff changeset
   122
      if TVars.defined tvars v then tvars
3ba99477b893 minor performance tuning;
wenzelm
parents: 81856
diff changeset
   123
      else TVars.add (v, Thm.global_ctyp_of thy (TFree (a, S))) tvars
3ba99477b893 minor performance tuning;
wenzelm
parents: 81856
diff changeset
   124
    val tyinst =
3ba99477b893 minor performance tuning;
wenzelm
parents: 81856
diff changeset
   125
      TVars.build (Thm.prop_of th |> (fold_types o fold_atyps) (fn TVar v => add v | _ => I))
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   126
  in
81857
3ba99477b893 minor performance tuning;
wenzelm
parents: 81856
diff changeset
   127
    Thm.instantiate (tyinst, Vars.empty) th
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   128
  end
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   129
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   130
fun freeze' th =
81858
81f3adce1eda minor performance tuning: more elementary operations;
wenzelm
parents: 81857
diff changeset
   131
  let
81f3adce1eda minor performance tuning: more elementary operations;
wenzelm
parents: 81857
diff changeset
   132
    val vars = Vars.build (th |> Thm.add_vars)
81f3adce1eda minor performance tuning: more elementary operations;
wenzelm
parents: 81857
diff changeset
   133
    val inst = vars |> Vars.map (fn _ => fn v =>
81f3adce1eda minor performance tuning: more elementary operations;
wenzelm
parents: 81857
diff changeset
   134
      let
81f3adce1eda minor performance tuning: more elementary operations;
wenzelm
parents: 81857
diff changeset
   135
        val Var ((x, _), _) = Thm.term_of v
81f3adce1eda minor performance tuning: more elementary operations;
wenzelm
parents: 81857
diff changeset
   136
        val ty = Thm.ctyp_of_cterm v
81f3adce1eda minor performance tuning: more elementary operations;
wenzelm
parents: 81857
diff changeset
   137
      in Thm.free (x, ty) end)
81f3adce1eda minor performance tuning: more elementary operations;
wenzelm
parents: 81857
diff changeset
   138
  in
81f3adce1eda minor performance tuning: more elementary operations;
wenzelm
parents: 81857
diff changeset
   139
    Thm.instantiate (TVars.empty, inst) th
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   140
  end
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   141
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   142
fun freeze thy = freezeT thy #> freeze';
81858
81f3adce1eda minor performance tuning: more elementary operations;
wenzelm
parents: 81857
diff changeset
   143
81937
372ff330a9d9 tuned names, following HOL Light sources;
wenzelm
parents: 81933
diff changeset
   144
fun inst_type theta =
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   145
  let
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   146
    val tyinst =
81937
372ff330a9d9 tuned names, following HOL Light sources;
wenzelm
parents: 81933
diff changeset
   147
      TFrees.build (theta |> fold (fn (a, b) =>
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   148
        TFrees.add (Term.dest_TFree (Thm.typ_of a), b)))
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   149
  in
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   150
    Thm.instantiate_frees (tyinst, Frees.empty)
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   151
  end
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   152
81937
372ff330a9d9 tuned names, following HOL Light sources;
wenzelm
parents: 81933
diff changeset
   153
fun inst theta th =
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   154
  let
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   155
    val inst =
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   156
      Frees.build (theta |> fold (fn (a, b) =>
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   157
        Frees.add (Term.dest_Free (Thm.term_of a), b)))
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   158
  in
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   159
    Thm.instantiate_frees (TFrees.empty, inst) th
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   160
  end
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   161
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   162
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   163
(* constant definitions *)
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   164
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   165
fun def' (name as {isabelle = c, ...}) rhs thy =
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   166
  let
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   167
    val _ = tracing_item thy "const" name;
81840
345e592792fd misc tuning and clarification;
wenzelm
parents: 81839
diff changeset
   168
    val b = Binding.name c
81852
c693485575a9 tuned names;
wenzelm
parents: 81851
diff changeset
   169
    val ty = type_of rhs
c693485575a9 tuned names;
wenzelm
parents: 81851
diff changeset
   170
    val thy1 = Sign.add_consts [(b, ty, NoSyn)] thy
c693485575a9 tuned names;
wenzelm
parents: 81851
diff changeset
   171
    val eq = Logic.mk_equals (Const (Sign.full_name thy1 b, ty), rhs)
c693485575a9 tuned names;
wenzelm
parents: 81851
diff changeset
   172
    val (th, thy2) = Global_Theory.add_def (Binding.suffix_name "_hldef" b, eq) thy1
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   173
    val def_thm = freezeT thy1 th |> to_obj_eq
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   174
  in
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   175
    (def_thm, thy2)
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   176
  end
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   177
81835
35abb6dd8bd2 clarified signature: more standard Isabelle/ML;
wenzelm
parents: 81831
diff changeset
   178
fun mdef thy name =
81866
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   179
  (case Import_Data.get_const_def thy name of
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   180
    SOME th => th
81866
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   181
  | NONE => error ("Constant mapped, but no definition: " ^ quote name))
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   182
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   183
fun def (name as {isabelle = c, ...}) rhs thy =
81861
1ba251e1847e misc tuning and clarification;
wenzelm
parents: 81860
diff changeset
   184
  if is_some (Import_Data.get_const_def thy c) then
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   185
    (warning ("Const mapped, but def provided: " ^ quote c); (freeze thy (mdef thy c), thy))
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   186
  else def' name (Thm.term_of rhs) thy
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   187
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   188
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   189
(* type definitions *)
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   190
81861
1ba251e1847e misc tuning and clarification;
wenzelm
parents: 81860
diff changeset
   191
fun typedef_hol2hollight A B rep abs pred a r =
81961
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
   192
  \<^instantiate>\<open>(no_beta) 'a = A and 'b = B and Rep = rep and Abs = abs and P = pred and a and r
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
   193
    in lemma "type_definition Rep Abs (Collect P) \<Longrightarrow> Abs (Rep a) = a \<and> P r = (Rep (Abs r) = r)"
81829
ca1ad6660b4a tuned: prefer inlined thms;
wenzelm
parents: 81521
diff changeset
   194
        by (metis type_definition.Rep_inverse type_definition.Abs_inverse
81961
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
   195
              type_definition.Rep mem_Collect_eq)\<close>
81829
ca1ad6660b4a tuned: prefer inlined thms;
wenzelm
parents: 81521
diff changeset
   196
81861
1ba251e1847e misc tuning and clarification;
wenzelm
parents: 81860
diff changeset
   197
fun typedef_hollight th =
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   198
  let
81866
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   199
    val ((rep, abs), P) =
81943
4ae4ab4e454d more robust: explicit check for "Trueprop";
wenzelm
parents: 81942
diff changeset
   200
      Thm.dest_comb (HOLogic.dest_judgment (Thm.cprop_of th))
81866
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   201
      |>> (Thm.dest_comb #>> Thm.dest_arg)
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   202
      ||> Thm.dest_arg
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   203
    val [A, B] = Thm.dest_ctyp (Thm.ctyp_of_cterm rep)
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   204
  in
81866
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   205
    typedef_hol2hollight A B rep abs P (Thm.free ("a", A)) (Thm.free ("r", B))
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   206
  end
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   207
81950
b615b153967b misc tuning;
wenzelm
parents: 81949
diff changeset
   208
fun tydef' (name as {isabelle = tycname, ...}) abs_name rep_name P t witness thy =
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   209
  let
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   210
    val _ = tracing_item thy "type" name;
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   211
81950
b615b153967b misc tuning;
wenzelm
parents: 81949
diff changeset
   212
    val T = Thm.ctyp_of_cterm t
81949
eea30b3de57f tuned names;
wenzelm
parents: 81948
diff changeset
   213
    val nonempty =
81961
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
   214
      \<^instantiate>\<open>(no_beta) 'a = T and P and t
4741b78bbc79 more antiquotations;
wenzelm
parents: 81958
diff changeset
   215
        in lemma "P t \<Longrightarrow> \<exists>x. x \<in> Collect P" by auto\<close>
81950
b615b153967b misc tuning;
wenzelm
parents: 81949
diff changeset
   216
      |> Thm.elim_implies witness
b615b153967b misc tuning;
wenzelm
parents: 81949
diff changeset
   217
    val \<^Const_>\<open>Trueprop for \<^Const_>\<open>Ex _ for \<open>Abs (_, _, \<^Const_>\<open>Set.member _ for _ set\<close>)\<close>\<close>\<close> =
b615b153967b misc tuning;
wenzelm
parents: 81949
diff changeset
   218
      Thm.concl_of nonempty
b615b153967b misc tuning;
wenzelm
parents: 81949
diff changeset
   219
b615b153967b misc tuning;
wenzelm
parents: 81949
diff changeset
   220
    val tfrees = Term.add_tfrees set []
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   221
    val tnames = sort_strings (map fst tfrees)
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 60801
diff changeset
   222
    val typedef_bindings =
62513
702085ca8564 take qualification of type name more seriously: derived consts and facts are qualified uniformly;
wenzelm
parents: 62436
diff changeset
   223
     {Rep_name = Binding.name rep_name,
702085ca8564 take qualification of type name more seriously: derived consts and facts are qualified uniformly;
wenzelm
parents: 62436
diff changeset
   224
      Abs_name = Binding.name abs_name,
702085ca8564 take qualification of type name more seriously: derived consts and facts are qualified uniformly;
wenzelm
parents: 62436
diff changeset
   225
      type_definition_name = Binding.name ("type_definition_" ^ tycname)}
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   226
    val ((_, typedef_info), thy') =
81947
wenzelm
parents: 81946
diff changeset
   227
     Typedef.add_typedef_global {overloaded = false}
81950
b615b153967b misc tuning;
wenzelm
parents: 81949
diff changeset
   228
       (Binding.name tycname, map (rpair dummyS) tnames, NoSyn) set
81949
eea30b3de57f tuned names;
wenzelm
parents: 81948
diff changeset
   229
       (SOME typedef_bindings) (fn ctxt => resolve_tac ctxt [nonempty] 1) thy
81855
a001d14f150c more direct Thm.free: avoid re-certification;
wenzelm
parents: 81854
diff changeset
   230
    val aty = Thm.global_ctyp_of thy' (#abs_type (#1 typedef_info))
60648
6c4550cd1b17 clarified context;
wenzelm
parents: 60642
diff changeset
   231
    val th = freezeT thy' (#type_definition (#2 typedef_info))
81946
ee680c69de38 misc tuning: prefer specific variants of Thm.dest_comb;
wenzelm
parents: 81944
diff changeset
   232
    val (rep, abs) = Thm.dest_binop (Thm.dest_fun (HOLogic.dest_judgment (Thm.cprop_of th)))
81861
1ba251e1847e misc tuning and clarification;
wenzelm
parents: 81860
diff changeset
   233
    val [A, B] = Thm.dest_ctyp (Thm.ctyp_of_cterm rep)
81950
b615b153967b misc tuning;
wenzelm
parents: 81949
diff changeset
   234
    val typedef_th = typedef_hol2hollight A B rep abs P (Thm.free ("a", aty)) (Thm.free ("r", T))
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   235
  in
81855
a001d14f150c more direct Thm.free: avoid re-certification;
wenzelm
parents: 81854
diff changeset
   236
    (typedef_th OF [#type_definition (#2 typedef_info)], thy')
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   237
  end
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   238
81835
35abb6dd8bd2 clarified signature: more standard Isabelle/ML;
wenzelm
parents: 81831
diff changeset
   239
fun mtydef thy name =
81866
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   240
  (case Import_Data.get_typ_def thy name of
81948
0e2f019477e2 more direct emulation of HOL Light inferences: prefer Pure rules over HOL thms;
wenzelm
parents: 81947
diff changeset
   241
    SOME th => Thm.implies_elim (typedef_hollight th) th
81866
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   242
  | NONE => error ("Type mapped, but no tydef thm registered: " ^ quote name))
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   243
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   244
fun tydef (name as {hol = tycname, ...}) abs_name rep_name P t td_th thy =
81866
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   245
  if is_some (Import_Data.get_typ_def thy tycname) then
fa0bafdc0fc6 misc tuning;
wenzelm
parents: 81865
diff changeset
   246
    (warning ("Type mapped but proofs provided: " ^ quote tycname); (mtydef thy tycname, thy))
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   247
  else tydef' name abs_name rep_name P t td_th thy
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   248
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   249
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   250
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   251
(** importer **)
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   252
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   253
(* basic entities *)
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   254
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   255
fun make_name hol =
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   256
  {hol = hol, isabelle = String.translate (fn #"." => "dot" | c => Char.toString c) hol}
81831
4bb6c49ef791 clarified signature: more explicit operations;
wenzelm
parents: 81830
diff changeset
   257
81932
0a1ed07a458a cleanup generated bounds;
wenzelm
parents: 81926
diff changeset
   258
fun make_bound a =
0a1ed07a458a cleanup generated bounds;
wenzelm
parents: 81926
diff changeset
   259
  (case try (unprefix "_") a of
0a1ed07a458a cleanup generated bounds;
wenzelm
parents: 81926
diff changeset
   260
    SOME b => if forall_string Symbol.is_ascii_digit b then "u" else b
0a1ed07a458a cleanup generated bounds;
wenzelm
parents: 81926
diff changeset
   261
  | NONE => a);
0a1ed07a458a cleanup generated bounds;
wenzelm
parents: 81926
diff changeset
   262
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   263
fun make_free x ty = Thm.free (#isabelle (make_name x), ty);
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   264
81906
016e27e10758 misc tuning and clarification: prefer state operations, avoid redundant ctyp_of/cterm_of;
wenzelm
parents: 81905
diff changeset
   265
fun make_tfree thy a =
81831
4bb6c49ef791 clarified signature: more explicit operations;
wenzelm
parents: 81830
diff changeset
   266
  let val b = "'" ^ String.translate (fn #"?" => "t" | c => Char.toString c) a
81906
016e27e10758 misc tuning and clarification: prefer state operations, avoid redundant ctyp_of/cterm_of;
wenzelm
parents: 81905
diff changeset
   267
  in Thm.global_ctyp_of thy (TFree (b, \<^sort>\<open>type\<close>)) end
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   268
81908
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   269
fun make_type thy c args =
81837
wenzelm
parents: 81835
diff changeset
   270
  let
wenzelm
parents: 81835
diff changeset
   271
    val d =
wenzelm
parents: 81835
diff changeset
   272
      (case Import_Data.get_typ_map thy c of
wenzelm
parents: 81835
diff changeset
   273
        SOME d => d
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   274
      | NONE => Sign.full_bname thy (#isabelle (make_name c)))
81906
016e27e10758 misc tuning and clarification: prefer state operations, avoid redundant ctyp_of/cterm_of;
wenzelm
parents: 81905
diff changeset
   275
    val T = Thm.global_ctyp_of thy (Type (d, replicate (length args) dummyT))
016e27e10758 misc tuning and clarification: prefer state operations, avoid redundant ctyp_of/cterm_of;
wenzelm
parents: 81905
diff changeset
   276
  in Thm.make_ctyp T args end
81837
wenzelm
parents: 81835
diff changeset
   277
81908
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   278
fun make_const thy c ty =
81831
4bb6c49ef791 clarified signature: more explicit operations;
wenzelm
parents: 81830
diff changeset
   279
  let
4bb6c49ef791 clarified signature: more explicit operations;
wenzelm
parents: 81830
diff changeset
   280
    val d =
81835
35abb6dd8bd2 clarified signature: more standard Isabelle/ML;
wenzelm
parents: 81831
diff changeset
   281
      (case Import_Data.get_const_map thy c of
81831
4bb6c49ef791 clarified signature: more explicit operations;
wenzelm
parents: 81830
diff changeset
   282
        SOME d => d
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   283
      | NONE => Sign.full_bname thy (#isabelle (make_name c)))
81906
016e27e10758 misc tuning and clarification: prefer state operations, avoid redundant ctyp_of/cterm_of;
wenzelm
parents: 81905
diff changeset
   284
  in Thm.global_cterm_of thy (Const (d, Thm.typ_of ty)) end
81831
4bb6c49ef791 clarified signature: more explicit operations;
wenzelm
parents: 81830
diff changeset
   285
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81938
diff changeset
   286
val make_thm = Skip_Proof.make_thm_cterm o HOLogic.mk_judgment
81908
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   287
81854
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   288
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   289
(* import file *)
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   290
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   291
local
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   292
81854
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   293
datatype state =
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   294
  State of theory * (ctyp Inttab.table * int) * (cterm Inttab.table * int) * (thm Inttab.table * int)
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   295
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   296
fun init_state thy = State (thy, (Inttab.empty, 0), (Inttab.empty, 0), (Inttab.empty, 0))
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   297
81913
5b9aca9b073b tuned names;
wenzelm
parents: 81912
diff changeset
   298
fun get (tab, reg) s =
81854
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   299
  (case Int.fromString s of
81859
6cc57bd46179 clarified exceptions and messages: use "error" only for user-errors, not system failures;
wenzelm
parents: 81858
diff changeset
   300
    NONE => raise Fail "get: not a number"
81854
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   301
  | SOME i =>
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   302
      (case Inttab.lookup tab (Int.abs i) of
81859
6cc57bd46179 clarified exceptions and messages: use "error" only for user-errors, not system failures;
wenzelm
parents: 81858
diff changeset
   303
        NONE => raise Fail "get: lookup failed"
81913
5b9aca9b073b tuned names;
wenzelm
parents: 81912
diff changeset
   304
      | SOME res => (res, (if i < 0 then Inttab.delete (Int.abs i) tab else tab, reg))))
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   305
81854
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   306
fun get_theory (State (thy, _, _, _)) = thy;
81906
016e27e10758 misc tuning and clarification: prefer state operations, avoid redundant ctyp_of/cterm_of;
wenzelm
parents: 81905
diff changeset
   307
val theory = `get_theory;
81913
5b9aca9b073b tuned names;
wenzelm
parents: 81912
diff changeset
   308
fun theory_op f (State (thy, a, b, c)) = let val (y, thy') = f thy in (y, State (thy', a, b, c)) end;
81854
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   309
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   310
fun typ i (State (thy, a, b, c)) = let val (i, a') = get a i in (i, State (thy, a', b, c)) end
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   311
fun term i (State (thy, a, b, c)) = let val (i, b') = get b i in (i, State (thy, a, b', c)) end
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   312
fun thm i (State (thy, a, b, c)) = let val (i, c') = get c i in (i, State (thy, a, b, c')) end
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   313
81908
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   314
val typs = fold_map typ
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   315
val terms = fold_map term
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   316
81913
5b9aca9b073b tuned names;
wenzelm
parents: 81912
diff changeset
   317
fun set (tab, reg) res = (Inttab.update_new (reg + 1, res) tab, reg + 1)
81854
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   318
fun set_typ ty (State (thy, a, b, c)) = State (thy, set a ty, b, c)
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   319
fun set_term tm (State (thy, a, b, c)) = State (thy, a, set b tm, c)
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   320
fun set_thm th (State (thy, a, b, c)) = State (thy, a, b, set c th)
2a5cbd329241 clarified signature: more explicit types;
wenzelm
parents: 81853
diff changeset
   321
81911
d596c7fc7d4b clarified signature;
wenzelm
parents: 81910
diff changeset
   322
fun stored_thm name (State (thy, a, b, c)) =
d596c7fc7d4b clarified signature;
wenzelm
parents: 81910
diff changeset
   323
  let val th = freeze thy (Global_Theory.get_thm thy name)
d596c7fc7d4b clarified signature;
wenzelm
parents: 81910
diff changeset
   324
  in State (thy, a, b, set c th) end
81906
016e27e10758 misc tuning and clarification: prefer state operations, avoid redundant ctyp_of/cterm_of;
wenzelm
parents: 81905
diff changeset
   325
81913
5b9aca9b073b tuned names;
wenzelm
parents: 81912
diff changeset
   326
fun store_thm name (State (thy, a, b, c as (tab, reg))) =
81906
016e27e10758 misc tuning and clarification: prefer state operations, avoid redundant ctyp_of/cterm_of;
wenzelm
parents: 81905
diff changeset
   327
  let
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   328
    val _ = tracing_item thy "thm" name;
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   329
81912
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   330
    val th =
81913
5b9aca9b073b tuned names;
wenzelm
parents: 81912
diff changeset
   331
      (case Inttab.lookup tab reg of
5b9aca9b073b tuned names;
wenzelm
parents: 81912
diff changeset
   332
        NONE => raise Fail "store_thm: lookup failed"
81912
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   333
      | SOME th0 => Drule.export_without_context_open th0)
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   334
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   335
    val tvars = TVars.build (Thm.fold_terms {hyps = false} TVars.add_tvars th);
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   336
    val names = Name.invent_global_types (TVars.size tvars)
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   337
    val tyinst =
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   338
      TVars.build (fold2
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   339
        (fn v as ((_, i), S) => fn b => TVars.add (v, Thm.global_ctyp_of thy (TVar ((b, i), S))))
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   340
        (TVars.list_set tvars) names)
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   341
ec2143e688b1 misc cleanup and minor performance tuning;
wenzelm
parents: 81911
diff changeset
   342
    val th' = Thm.instantiate (tyinst, Vars.empty) th
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   343
    val thy' = #2 (Global_Theory.add_thm ((Binding.name (#isabelle name), th'), []) thy)
81906
016e27e10758 misc tuning and clarification: prefer state operations, avoid redundant ctyp_of/cterm_of;
wenzelm
parents: 81905
diff changeset
   344
  in State (thy', a, b, c) end
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   345
81849
1f46f6f7dec4 tuned signature;
wenzelm
parents: 81848
diff changeset
   346
fun pair_list (x :: y :: zs) = ((x, y) :: pair_list zs)
1f46f6f7dec4 tuned signature;
wenzelm
parents: 81848
diff changeset
   347
  | pair_list [] = []
81859
6cc57bd46179 clarified exceptions and messages: use "error" only for user-errors, not system failures;
wenzelm
parents: 81858
diff changeset
   348
  | pair_list _ = raise Fail "pair_list: odd list length"
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   349
81847
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
   350
fun parse_line s =
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
   351
  (case String.tokens (fn x => x = #"\n" orelse x = #" ") s of
81859
6cc57bd46179 clarified exceptions and messages: use "error" only for user-errors, not system failures;
wenzelm
parents: 81858
diff changeset
   352
    [] => raise Fail "parse_line: empty"
81847
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
   353
  | cmd :: args =>
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
   354
      (case String.explode cmd of
81859
6cc57bd46179 clarified exceptions and messages: use "error" only for user-errors, not system failures;
wenzelm
parents: 81858
diff changeset
   355
        [] => raise Fail "parse_line: empty command"
81847
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
   356
      | c :: cs => (c, String.implode cs :: args)))
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
   357
81907
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   358
fun command (#"R", [t]) = term t #>> refl #-> set_thm
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   359
  | command (#"B", [t]) = term t #>> beta #-> set_thm
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   360
  | command (#"1", [th]) = thm th #>> conj1 #-> set_thm
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   361
  | command (#"2", [th]) = thm th #>> conj2 #-> set_thm
81962
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
   362
  | command (#"H", [t]) = term t #>> assume #-> set_thm
81908
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   363
  | command (#"A", [_, t]) = term t #>> make_thm #-> set_thm
81962
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
   364
  | command (#"C", [th1, th2]) = thm th1 ##>> thm th2 #>> uncurry mk_comb #-> set_thm
81907
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   365
  | command (#"T", [th1, th2]) = thm th1 ##>> thm th2 #>> uncurry trans #-> set_thm
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   366
  | command (#"E", [th1, th2]) = thm th1 ##>> thm th2 #>> uncurry eq_mp #-> set_thm
81962
e506e636c724 tuned names: follow HOL Light;
wenzelm
parents: 81961
diff changeset
   367
  | command (#"D", [th1, th2]) = thm th1 ##>> thm th2 #>> uncurry deduct_antisym_rule #-> set_thm
81907
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   368
  | command (#"L", [t, th]) = term t ##>> thm th #>> uncurry abs #-> set_thm
81911
d596c7fc7d4b clarified signature;
wenzelm
parents: 81910
diff changeset
   369
  | command (#"M", [name]) = stored_thm name
81907
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   370
  | command (#"Q", args) =
81910
93b32361d398 tuned: prefer existing operations;
wenzelm
parents: 81909
diff changeset
   371
      split_last args |> (fn (tys, th) => thm th #-> (fn th => typs tys #-> (fn tys =>
81908
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   372
        set_thm (inst_type (pair_list tys) th))))
81907
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   373
  | command (#"S", args) =
81910
93b32361d398 tuned: prefer existing operations;
wenzelm
parents: 81909
diff changeset
   374
      split_last args |> (fn (ts, th) => thm th #-> (fn th => terms ts #-> (fn ts =>
81908
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   375
        set_thm (inst (pair_list ts) th))))
81907
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   376
  | command (#"F", [name, t]) =
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   377
      term t #-> (fn t => theory_op (def (make_name name) t) #-> set_thm)
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   378
  | command (#"F", [name]) = theory #-> (fn thy => set_thm (mdef thy name))
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   379
  | command (#"Y", [name, abs, rep, t1, t2, th]) =
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   380
      thm th #-> (fn th => term t1 #-> (fn t1 => term t2 #-> (fn t2 =>
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   381
        theory_op (tydef (make_name name) abs rep t1 t2 th) #-> set_thm)))
81907
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   382
  | command (#"Y", [name, _, _]) = theory #-> (fn thy => set_thm (mtydef thy name))
81913
5b9aca9b073b tuned names;
wenzelm
parents: 81912
diff changeset
   383
  | command (#"t", [a]) = theory #-> (fn thy => set_typ (make_tfree thy a))
81908
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   384
  | command (#"a", c :: tys) = theory #-> (fn thy => typs tys #>> make_type thy c #-> set_typ)
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   385
  | command (#"v", [x, ty]) = typ ty #>> make_free x #-> set_term
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   386
  | command (#"c", [c, ty]) = theory #-> (fn thy => typ ty #>> make_const thy c #-> set_term)
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   387
  | command (#"f", [t, u]) = term t #-> (fn t => term u #-> (fn u => set_term (Thm.apply t u)))
81932
0a1ed07a458a cleanup generated bounds;
wenzelm
parents: 81926
diff changeset
   388
  | command (#"l", [x, t]) =
0a1ed07a458a cleanup generated bounds;
wenzelm
parents: 81926
diff changeset
   389
      term x #-> (fn x => term t #-> (fn t =>
0a1ed07a458a cleanup generated bounds;
wenzelm
parents: 81926
diff changeset
   390
        set_term (Thm.lambda_name (make_bound (#1 (dest_Free (Thm.term_of x))), x) t)))
81926
402660d4558e support tracing (with proper guard);
wenzelm
parents: 81913
diff changeset
   391
  | command (#"+", [name]) = store_thm (make_name name)
81907
bba33d64c4b1 tuned signature;
wenzelm
parents: 81906
diff changeset
   392
  | command (c, _) = raise Fail ("process: unknown command: " ^ String.str c)
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   393
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   394
in
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   395
81847
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
   396
fun import_file path0 thy =
81846
5a7bf0f038e2 more robust import_file path: proper master_directory;
wenzelm
parents: 81844
diff changeset
   397
  let
5a7bf0f038e2 more robust import_file path: proper master_directory;
wenzelm
parents: 81844
diff changeset
   398
    val path = File.absolute_path (Resources.master_directory thy + path0)
5a7bf0f038e2 more robust import_file path: proper master_directory;
wenzelm
parents: 81844
diff changeset
   399
    val lines =
5a7bf0f038e2 more robust import_file path: proper master_directory;
wenzelm
parents: 81844
diff changeset
   400
      if Path.is_zst path then Bytes.read path |> Zstd.uncompress |> Bytes.trim_split_lines
5a7bf0f038e2 more robust import_file path: proper master_directory;
wenzelm
parents: 81844
diff changeset
   401
      else File.read_lines path
81908
705770ff7fb3 tuned state operations;
wenzelm
parents: 81907
diff changeset
   402
  in init_state thy |> fold (parse_line #> command) lines |> get_theory end
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   403
81847
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
   404
val _ =
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
   405
  Outer_Syntax.command \<^command_keyword>\<open>import_file\<close> "import recorded proofs from HOL Light"
c163ad6d18a5 clarified signature;
wenzelm
parents: 81846
diff changeset
   406
    (Parse.path >> (fn name => Toplevel.theory (fn thy => import_file (Path.explode name) thy)))
47258
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   407
880e587eee9f Modernized HOL-Import for HOL Light
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
diff changeset
   408
end
81909
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   409
cd9df61fee34 tuned source structure;
wenzelm
parents: 81908
diff changeset
   410
end