src/Pure/variable.ML
author wenzelm
Tue, 11 Jul 2006 12:17:09 +0200
changeset 20084 aa320957f00c
parent 20003 aac2c0d29751
child 20102 6676a17dfc88
permissions -rw-r--r--
maintain Name.context for fixes/defaults; more efficient inventing/renaming of local names (cf. name.ML);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/variable.ML
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     3
    Author:     Makarius
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     4
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     5
Fixed type/term variables and polymorphic term abbreviations.
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     6
*)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     7
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     8
signature VARIABLE =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     9
sig
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    10
  val is_body: Context.proof -> bool
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    11
  val set_body: bool -> Context.proof -> Context.proof
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    12
  val restore_body: Context.proof -> Context.proof -> Context.proof
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    13
  val fixes_of: Context.proof -> (string * string) list
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    14
  val binds_of: Context.proof -> (typ * term) Vartab.table
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    15
  val defaults_of: Context.proof ->
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    16
    typ Vartab.table * sort Vartab.table * string list * string list Symtab.table * Name.context
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    17
  val used_types: Context.proof -> string list
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    18
  val is_declared: Context.proof -> string -> bool
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    19
  val is_fixed: Context.proof -> string -> bool
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    20
  val def_sort: Context.proof -> indexname -> sort option
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    21
  val def_type: Context.proof -> bool -> indexname -> typ option
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    22
  val default_type: Context.proof -> string -> typ option
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    23
  val declare_type: typ -> Context.proof -> Context.proof
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    24
  val declare_syntax: term -> Context.proof -> Context.proof
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    25
  val declare_term: term -> Context.proof -> Context.proof
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
    26
  val declare_thm: thm -> Context.proof -> Context.proof
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
    27
  val thm_context: thm -> Context.proof
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    28
  val rename_wrt: Context.proof -> term list -> (string * 'a) list -> (string * 'a) list
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    29
  val add_fixes: string list -> Context.proof -> string list * Context.proof
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    30
  val invent_fixes: string list -> Context.proof -> string list * Context.proof
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    31
  val invent_types: sort list -> Context.proof -> (string * sort) list * Context.proof
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    32
  val export_inst: Context.proof -> Context.proof -> string list * string list
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    33
  val exportT_inst: Context.proof -> Context.proof -> string list
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    34
  val export_terms: Context.proof -> Context.proof -> term list -> term list
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    35
  val exportT_terms: Context.proof -> Context.proof -> term list -> term list
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    36
  val exportT: Context.proof -> Context.proof -> thm list -> thm list
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    37
  val export: Context.proof -> Context.proof -> thm list -> thm list
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    38
  val importT_inst: term list -> Context.proof -> ((indexname * sort) * typ) list * Context.proof
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    39
  val import_inst: bool -> term list -> Context.proof ->
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    40
    (((indexname * sort) * typ) list * ((indexname * typ) * term) list) * Context.proof
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    41
  val importT_terms: term list -> Context.proof -> term list * Context.proof
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    42
  val import_terms: bool -> term list -> Context.proof -> term list * Context.proof
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    43
  val importT: thm list -> Context.proof -> thm list * Context.proof
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    44
  val import: bool -> thm list -> Context.proof -> thm list * Context.proof
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
    45
  val tradeT: Context.proof -> (thm list -> thm list) -> thm list -> thm list
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
    46
  val trade: Context.proof -> (thm list -> thm list) -> thm list -> thm list
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    47
  val warn_extra_tfrees: Context.proof -> Context.proof -> unit
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    48
  val monomorphic: Context.proof -> term list -> term list
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    49
  val polymorphic: Context.proof -> term list -> term list
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    50
  val hidden_polymorphism: term -> typ -> (indexname * sort) list
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    51
  val add_binds: (indexname * term option) list -> Context.proof -> Context.proof
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    52
  val expand_binds: Context.proof -> term -> term
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    53
end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    54
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    55
structure Variable: VARIABLE =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    56
struct
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    57
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    58
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    59
(** local context data **)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    60
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    61
datatype data = Data of
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    62
 {is_body: bool,                                (*inner body mode*)
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    63
  fixes: (string * string) list * Name.context, (*term fixes -- extern/intern*)
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    64
  binds: (typ * term) Vartab.table,             (*term bindings*)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    65
  defaults:
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    66
    typ Vartab.table *                          (*type constraints*)
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    67
    sort Vartab.table *                         (*default sorts*)
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    68
    string list *                               (*used type variables*)
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    69
    string list Symtab.table *                  (*occurrences of type variables in term variables*)
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    70
    Name.context};                              (*type/term variable names*)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    71
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    72
fun make_data (is_body, fixes, binds, defaults) =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    73
  Data {is_body = is_body, fixes = fixes, binds = binds, defaults = defaults};
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    74
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    75
structure Data = ProofDataFun
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    76
(
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    77
  val name = "Pure/variable";
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    78
  type T = data;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    79
  fun init thy =
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    80
    make_data (false, ([], Name.context), Vartab.empty,
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
    81
      (Vartab.empty, Vartab.empty, [], Symtab.empty, Name.make_context ["", "'"]));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    82
  fun print _ _ = ();
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    83
);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    84
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    85
val _ = Context.add_setup Data.init;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    86
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    87
fun map_data f =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    88
  Data.map (fn Data {is_body, fixes, binds, defaults} =>
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    89
    make_data (f (is_body, fixes, binds, defaults)));
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    90
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    91
fun map_fixes f = map_data (fn (is_body, fixes, binds, defaults) =>
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    92
  (is_body, f fixes, binds, defaults));
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    93
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    94
fun map_binds f = map_data (fn (is_body, fixes, binds, defaults) =>
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    95
  (is_body, fixes, f binds, defaults));
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    96
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    97
fun map_defaults f = map_data (fn (is_body, fixes, binds, defaults) =>
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    98
  (is_body, fixes, binds, f defaults));
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    99
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   100
fun rep_data ctxt = Data.get ctxt |> (fn Data args => args);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   101
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   102
val is_body = #is_body o rep_data;
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   103
fun set_body b = map_data (fn (_, fixes, binds, defaults) =>
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   104
  (b, fixes, binds, defaults));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   105
fun restore_body ctxt = set_body (is_body ctxt);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   106
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   107
val fixes_of = #1 o #fixes o rep_data;
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   108
val fixed_names_of = #2 o #fixes o rep_data;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   109
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   110
val binds_of = #binds o rep_data;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   111
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   112
val defaults_of = #defaults o rep_data;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   113
val used_types = #3 o defaults_of;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   114
val type_occs_of = #4 o defaults_of;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   115
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   116
fun is_declared ctxt x = Vartab.defined (#1 (defaults_of ctxt)) (x, ~1);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   117
fun is_fixed ctxt x = exists (fn (_, y) => x = y) (fixes_of ctxt);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   118
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   119
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   120
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   121
(** declarations **)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   122
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   123
(* default sorts and types *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   124
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   125
val def_sort = Vartab.lookup o #2 o defaults_of;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   126
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   127
fun def_type ctxt pattern xi =
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   128
  let val {binds, defaults = (types, _, _, _, _), ...} = rep_data ctxt in
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   129
    (case Vartab.lookup types xi of
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   130
      NONE =>
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   131
        if pattern then NONE
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   132
        else Vartab.lookup binds xi |> Option.map (TypeInfer.polymorphicT o #1)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   133
    | some => some)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   134
  end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   135
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   136
fun default_type ctxt x = Vartab.lookup (#1 (defaults_of ctxt)) (x, ~1);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   137
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   138
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   139
(* declare types/terms *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   140
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   141
local
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   142
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   143
val ins_types = fold_aterms
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   144
  (fn Free (x, T) => Vartab.update ((x, ~1), T)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   145
    | Var v => Vartab.update v
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   146
    | _ => I);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   147
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   148
val ins_sorts = fold_atyps
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   149
  (fn TFree (x, S) => Vartab.update ((x, ~1), S)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   150
    | TVar v => Vartab.update v
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   151
    | _ => I);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   152
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   153
val ins_used = fold_atyps
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   154
  (fn TFree (x, _) => insert (op =) x | _ => I);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   155
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   156
val ins_occs = fold_term_types (fn t =>
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   157
  let val x = case t of Free (x, _) => x | _ => ""
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   158
  in fold_atyps (fn TFree (a, _) => Symtab.insert_list (op =) (a, x) | _ => I) end);
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   159
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   160
fun ins_skolem def_ty = fold_rev (fn (x, x') =>
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   161
  (case def_ty x' of
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   162
    SOME T => Vartab.update ((x, ~1), T)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   163
  | NONE => I));
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   164
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   165
val ins_namesT = fold_atyps
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   166
  (fn TFree (x, _) => Name.declare x | _ => I);
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   167
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   168
fun ins_names t =
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   169
  fold_types ins_namesT t #>
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   170
  fold_aterms (fn Free (x, _) => Name.declare x | _ => I) t;
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   171
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   172
in
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   173
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   174
fun declare_type T = map_defaults (fn (types, sorts, used, occ, names) =>
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   175
 (types,
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   176
  ins_sorts T sorts,
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   177
  ins_used T used,
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   178
  occ,
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   179
  ins_namesT T names));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   180
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   181
fun declare_syntax t = map_defaults (fn (types, sorts, used, occ, names) =>
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   182
 (ins_types t types,
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   183
  fold_types ins_sorts t sorts,
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   184
  fold_types ins_used t used,
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   185
  occ,
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   186
  ins_names t names));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   187
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   188
fun declare_occs t = map_defaults (fn (types, sorts, used, occ, names) =>
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   189
  (types, sorts, used, ins_occs t occ, names));
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   190
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   191
fun declare_term t ctxt =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   192
  ctxt
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   193
  |> declare_syntax t
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   194
  |> map_defaults (fn (types, sorts, used, occ, names) =>
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   195
     (ins_skolem (fn x => Vartab.lookup types (x, ~1)) (fixes_of ctxt) types,
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   196
      sorts,
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   197
      used,
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   198
      ins_occs t occ,
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   199
      ins_names t names));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   200
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   201
fun declare_thm th = fold declare_term (Thm.full_prop_of th :: Thm.hyps_of th);
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   202
fun thm_context th = Context.init_proof (Thm.theory_of_thm th) |> declare_thm th;
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   203
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   204
end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   205
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   206
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   207
(* renaming term/type frees *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   208
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   209
fun rename_wrt ctxt ts frees =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   210
  let
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   211
    val names = #5 (defaults_of (ctxt |> fold declare_syntax ts));
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   212
    val xs = fst (Name.variants (map #1 frees) names);
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   213
  in xs ~~ map snd frees end;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   214
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   215
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   216
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   217
(** fixes **)
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   218
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   219
local
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   220
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   221
fun no_dups [] = ()
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   222
  | no_dups dups = error ("Duplicate fixed variable(s): " ^ commas_quote dups);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   223
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   224
fun new_fixes xs xs' names' =
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   225
  map_fixes (fn (fixes, _) => (rev (xs ~~ xs') @ fixes, names')) #>
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   226
  fold (declare_syntax o Syntax.free) xs' #>
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   227
  pair xs';
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   228
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   229
in
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   230
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   231
fun add_fixes xs ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   232
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   233
    val _ =
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   234
      (case filter (can Name.dest_skolem) xs of [] => ()
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   235
      | bads => error ("Illegal internal Skolem constant(s): " ^ commas_quote bads));
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   236
    val _ = no_dups (duplicates (op =) xs);
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   237
    val (ys, zs) = split_list (fixes_of ctxt);
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   238
    val names = fixed_names_of ctxt;
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   239
    val (xs', names') =
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   240
      if is_body ctxt then Name.variants (map Name.skolem xs) names
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   241
      else (no_dups (xs inter_string ys); no_dups (xs inter_string zs);
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   242
        (xs, fold Name.declare xs names));
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   243
  in ctxt |> new_fixes xs xs' names' end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   244
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   245
fun invent_fixes raw_xs ctxt =
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   246
  let
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   247
    val names = fixed_names_of ctxt;
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   248
    val (xs, names') = Name.variants (map Name.clean raw_xs) names;
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   249
    val xs' = map Name.skolem xs;
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   250
  in ctxt |> new_fixes xs xs' names' end;
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   251
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   252
end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   253
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   254
fun invent_types Ss ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   255
  let
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   256
    val tfrees = Name.invents (#5 (defaults_of ctxt)) "'a" (length Ss) ~~ Ss;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   257
    val ctxt' = fold (declare_type o TFree) tfrees ctxt;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   258
  in (tfrees, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   259
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   260
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   261
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   262
(** export -- generalize type/term variables **)
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   263
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   264
fun export_inst inner outer =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   265
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   266
    val types_outer = used_types outer;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   267
    val fixes_inner = fixes_of inner;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   268
    val fixes_outer = fixes_of outer;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   269
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   270
    val gen_fixes = map #2 (Library.take (length fixes_inner - length fixes_outer, fixes_inner));
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   271
    val still_fixed = not o member (op =) ("" :: gen_fixes);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   272
    val gen_fixesT =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   273
      Symtab.fold (fn (a, xs) =>
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   274
        if member (op =) types_outer a orelse exists still_fixed xs
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   275
        then I else cons a) (type_occs_of inner) [];
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   276
  in (gen_fixesT, gen_fixes) end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   277
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   278
fun exportT_inst inner outer = #1 (export_inst inner outer);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   279
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   280
fun exportT_terms inner outer ts =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   281
  map (Term.generalize (exportT_inst (fold declare_occs ts inner) outer, [])
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   282
    (fold (Term.fold_types Term.maxidx_typ) ts ~1 + 1)) ts;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   283
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   284
fun export_terms inner outer ts =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   285
  map (Term.generalize (export_inst (fold declare_occs ts inner) outer)
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   286
    (fold Term.maxidx_term ts ~1 + 1)) ts;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   287
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   288
fun gen_export inst inner outer ths =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   289
  let
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   290
    val ths' = map Thm.adjust_maxidx_thm ths;
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   291
    val inner' = fold (declare_occs o Thm.full_prop_of) ths' inner;
20003
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   292
  in map (Thm.generalize (inst inner' outer) (fold Thm.maxidx_thm ths' ~1 + 1)) ths' end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   293
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   294
val exportT = gen_export (rpair [] oo exportT_inst);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   295
val export = gen_export export_inst;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   296
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   297
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   298
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   299
(** import -- fix schematic type/term variables **)
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   300
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   301
fun importT_inst ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   302
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   303
    val tvars = rev (fold Term.add_tvars ts []);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   304
    val (tfrees, ctxt') = invent_types (map #2 tvars) ctxt;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   305
  in (tvars ~~ map TFree tfrees, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   306
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   307
fun import_inst is_open ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   308
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   309
    val (instT, ctxt') = importT_inst ts ctxt;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   310
    val vars = map (apsnd (Term.instantiateT instT)) (rev (fold Term.add_vars ts []));
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   311
    val ren = if is_open then I else Name.internal;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   312
    val (xs, ctxt'') = invent_fixes (map (ren o #1 o #1) vars) ctxt';
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   313
    val inst = vars ~~ map Free (xs ~~ map #2 vars);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   314
  in ((instT, inst), ctxt'') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   315
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   316
fun importT_terms ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   317
  let val (instT, ctxt') = importT_inst ts ctxt
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   318
  in (map (Term.instantiate (instT, [])) ts, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   319
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   320
fun import_terms is_open ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   321
  let val (inst, ctxt') = import_inst is_open ts ctxt
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   322
  in (map (Term.instantiate inst) ts, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   323
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   324
fun importT ths ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   325
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   326
    val thy = Context.theory_of_proof ctxt;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   327
    val certT = Thm.ctyp_of thy;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   328
    val (instT, ctxt') = importT_inst (map Thm.full_prop_of ths) ctxt;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   329
    val instT' = map (fn (v, T) => (certT (TVar v), certT T)) instT;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   330
    val ths' = map (Thm.instantiate (instT', [])) ths;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   331
  in (ths', ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   332
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   333
fun import is_open ths ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   334
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   335
    val thy = Context.theory_of_proof ctxt;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   336
    val cert = Thm.cterm_of thy;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   337
    val certT = Thm.ctyp_of thy;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   338
    val ((instT, inst), ctxt') = import_inst is_open (map Thm.full_prop_of ths) ctxt;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   339
    val instT' = map (fn (v, T) => (certT (TVar v), certT T)) instT;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   340
    val inst' = map (fn (v, t) => (cert (Var v), cert t)) inst;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   341
    val ths' = map (Thm.instantiate (instT', inst')) ths;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   342
  in (ths', ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   343
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   344
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   345
(* import/export *)
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   346
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   347
fun gen_trade imp exp ctxt f ths =
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   348
  let val (ths', ctxt') = imp ths ctxt
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   349
  in exp ctxt' ctxt (f ths') end;
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   350
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   351
val tradeT = gen_trade importT exportT;
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   352
val trade = gen_trade (import true) export;
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   353
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   354
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   355
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   356
(** implicit polymorphism **)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   357
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   358
(* warn_extra_tfrees *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   359
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   360
fun warn_extra_tfrees ctxt1 ctxt2 =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   361
  let
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   362
    fun occs_typ a = Term.exists_subtype (fn TFree (b, _) => a = b | _ => false);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   363
    fun occs_free _ "" = I
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   364
      | occs_free a x =
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   365
          (case def_type ctxt1 false (x, ~1) of
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   366
            SOME T => if occs_typ a T then I else cons (a, x)
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   367
          | NONE => cons (a, x));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   368
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   369
    val occs1 = type_occs_of ctxt1 and occs2 = type_occs_of ctxt2;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   370
    val extras = Symtab.fold (fn (a, xs) =>
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   371
      if Symtab.defined occs1 a then I else fold (occs_free a) xs) occs2 [];
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   372
    val tfrees = map #1 extras |> sort_distinct string_ord;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   373
    val frees = map #2 extras |> sort_distinct string_ord;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   374
  in
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   375
    if null extras then ()
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   376
    else warning ("Introduced fixed type variable(s): " ^ commas tfrees ^ " in " ^
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   377
      space_implode " or " (map quote frees))
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   378
  end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   379
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   380
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   381
(* monomorphic vs. polymorphic terms *)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   382
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   383
fun monomorphic ctxt ts =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   384
  #1 (importT_terms ts (fold declare_term ts ctxt));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   385
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   386
fun polymorphic ctxt ts =
20003
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   387
  let
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   388
    val ctxt' = fold declare_term ts ctxt;
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   389
    val types = subtract (op =) (used_types ctxt) (used_types ctxt');
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   390
    val idx = fold (Term.fold_types Term.maxidx_typ) ts ~1 + 1;
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   391
  in map (Term.generalize (types, []) idx) ts end;
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   392
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   393
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   394
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   395
(** term bindings **)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   396
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   397
fun hidden_polymorphism t T =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   398
  let
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   399
    val tvarsT = Term.add_tvarsT T [];
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   400
    val extra_tvars = Term.fold_types (Term.fold_atyps
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   401
      (fn TVar v => if member (op =) tvarsT v then I else insert (op =) v | _ => I)) t [];
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   402
  in extra_tvars end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   403
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   404
fun add_bind (xi, NONE) = map_binds (Vartab.delete_safe xi)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   405
  | add_bind ((x, i), SOME t) =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   406
      let
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   407
        val T = Term.fastype_of t;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   408
        val t' =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   409
          if null (hidden_polymorphism t T) then t
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   410
          else Var ((x ^ "_has_extra_type_vars_on_rhs", i), T);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   411
      in declare_term t' #> map_binds (Vartab.update ((x, i), (T, t'))) end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   412
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   413
val add_binds = fold add_bind;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   414
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   415
fun expand_binds ctxt =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   416
  let
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   417
    val binds = binds_of ctxt;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   418
    fun expand (t as Var (xi, T)) =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   419
          (case Vartab.lookup binds xi of
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   420
            SOME u => Envir.expand_atom T u
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   421
          | NONE => t)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   422
      | expand t = t;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   423
  in Envir.beta_norm o Term.map_aterms expand end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   424
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   425
end;