src/Pure/variable.ML
author wenzelm
Sat, 29 Jul 2006 00:51:33 +0200
changeset 20251 6379135f21c2
parent 20240 a7b027328d6e
child 20262 ef3ee6a91c18
permissions -rw-r--r--
added add_fixes_direct; tuned;
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
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    13
  val names_of: Context.proof -> Name.context
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    14
  val fixes_of: Context.proof -> (string * string) list
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    15
  val binds_of: Context.proof -> (typ * term) Vartab.table
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    16
  val constraints_of: Context.proof -> typ Vartab.table * sort Vartab.table
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    17
  val is_declared: Context.proof -> string -> bool
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    18
  val is_fixed: Context.proof -> string -> bool
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
    19
  val newly_fixed: Context.proof -> Context.proof -> string -> bool
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    20
  val default_type: Context.proof -> string -> typ option
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    21
  val def_type: Context.proof -> bool -> indexname -> typ option
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    22
  val def_sort: Context.proof -> indexname -> sort option
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    23
  val declare_constraints: term -> Context.proof -> Context.proof
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    24
  val declare_internal: term -> Context.proof -> Context.proof
19899
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
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    28
  val variant_frees: Context.proof -> term list -> (string * 'a) list -> (string * 'a) list
19911
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
20251
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
    30
  val add_fixes_direct: string list -> Context.proof -> Context.proof
20240
a7b027328d6e added fix_frees (from Isar/proof_context.ML);
wenzelm
parents: 20220
diff changeset
    31
  val fix_frees: term -> Context.proof -> Context.proof
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    32
  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
    33
  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
    34
  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
    35
  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
    36
  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
    37
  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
    38
  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
    39
  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
    40
  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
    41
  val import_inst: bool -> term list -> Context.proof ->
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
    42
    (((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
    43
  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
    44
  val import_terms: bool -> term list -> Context.proof -> term list * Context.proof
20220
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
    45
  val importT: thm list -> Context.proof -> (ctyp list * thm list) * Context.proof
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
    46
  val import: bool -> thm list -> Context.proof ->
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
    47
    ((ctyp list * cterm list) * thm list) * Context.proof
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
    48
  val tradeT: Context.proof -> (thm list -> thm list) -> thm list -> thm list
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
    49
  val trade: Context.proof -> (thm list -> thm list) -> thm list -> thm list
20220
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
    50
  val focus: cterm -> Context.proof -> (cterm list * cterm) * Context.proof
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    51
  val warn_extra_tfrees: Context.proof -> Context.proof -> unit
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    52
  val polymorphic: Context.proof -> term list -> term list
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    53
  val hidden_polymorphism: term -> typ -> (indexname * sort) list
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    54
  val add_binds: (indexname * term option) list -> Context.proof -> Context.proof
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    55
  val expand_binds: Context.proof -> term -> term
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    56
end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    57
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    58
structure Variable: VARIABLE =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    59
struct
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
(** local context data **)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    62
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    63
datatype data = Data of
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
    64
 {is_body: bool,                        (*inner body mode*)
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    65
  names: Name.context,                  (*type/term variable names*)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    66
  fixes: (string * string) list,        (*term fixes -- extern/intern*)
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
    67
  binds: (typ * term) Vartab.table,     (*term bindings*)
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    68
  type_occs: string list Symtab.table,  (*type variables -- possibly within term variables*)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    69
  constraints:
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
    70
    typ Vartab.table *                  (*type constraints*)
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    71
    sort Vartab.table};                 (*default sorts*)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    72
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    73
fun make_data (is_body, names, fixes, binds, type_occs, constraints) =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    74
  Data {is_body = is_body, names = names, fixes = fixes, binds = binds,
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    75
    type_occs = type_occs, constraints = constraints};
19899
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
structure Data = ProofDataFun
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    78
(
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    79
  val name = "Pure/variable";
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    80
  type T = data;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    81
  fun init thy =
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    82
    make_data (false, Name.context, [], Vartab.empty, Symtab.empty, (Vartab.empty, Vartab.empty));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    83
  fun print _ _ = ();
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
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    86
val _ = Context.add_setup Data.init;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    87
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    88
fun map_data f =
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    89
  Data.map (fn Data {is_body, names, fixes, binds, type_occs, constraints} =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    90
    make_data (f (is_body, names, fixes, binds, type_occs, constraints)));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    91
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    92
fun map_names f = map_data (fn (is_body, names, fixes, binds, type_occs, constraints) =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    93
  (is_body, f names, fixes, binds, type_occs, constraints));
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    94
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    95
fun map_fixes f = map_data (fn (is_body, names, fixes, binds, type_occs, constraints) =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    96
  (is_body, names, f fixes, binds, type_occs, constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    97
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    98
fun map_binds f = map_data (fn (is_body, names, fixes, binds, type_occs, constraints) =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    99
  (is_body, names, fixes, f binds, type_occs, constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   100
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   101
fun map_type_occs f = map_data (fn (is_body, names, fixes, binds, type_occs, constraints) =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   102
  (is_body, names, fixes, binds, f type_occs, constraints));
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   103
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   104
fun map_constraints f = map_data (fn (is_body, names, fixes, binds, type_occs, constraints) =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   105
  (is_body, names, fixes, binds, type_occs, f constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   106
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   107
fun rep_data ctxt = Data.get ctxt |> (fn Data args => args);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   108
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   109
val is_body = #is_body o rep_data;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   110
fun set_body b = map_data (fn (_, names, fixes, binds, type_occs, constraints) =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   111
  (b, names, fixes, binds, type_occs, constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   112
fun restore_body ctxt = set_body (is_body ctxt);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   113
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   114
val names_of = #names o rep_data;
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   115
val fixes_of = #fixes o rep_data;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   116
val binds_of = #binds o rep_data;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   117
val type_occs_of = #type_occs o rep_data;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   118
val constraints_of = #constraints o rep_data;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   119
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   120
val is_declared = Name.is_declared o names_of;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   121
fun is_fixed ctxt x = exists (fn (_, y) => x = y) (fixes_of ctxt);
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   122
fun newly_fixed inner outer x = is_fixed inner x andalso not (is_fixed outer x);
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   123
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
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   126
(** declarations **)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   127
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   128
(* default sorts and types *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   129
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   130
fun default_type ctxt x = Vartab.lookup (#1 (constraints_of ctxt)) (x, ~1);
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   131
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   132
fun def_type ctxt pattern xi =
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   133
  let val {binds, constraints = (types, _), ...} = rep_data ctxt in
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   134
    (case Vartab.lookup types xi of
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   135
      NONE =>
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   136
        if pattern then NONE
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   137
        else Vartab.lookup binds xi |> Option.map (TypeInfer.polymorphicT o #1)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   138
    | some => some)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   139
  end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   140
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   141
val def_sort = Vartab.lookup o #2 o constraints_of;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   142
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   143
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   144
(* names *)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   145
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   146
val declare_type_names = map_names o
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   147
  fold_types (fold_atyps (fn TFree (a, _) => Name.declare a | _ => I));
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   148
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   149
fun declare_names t =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   150
  declare_type_names t #>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   151
  map_names (fold_aterms (fn Free (x, _) => Name.declare x | _ => I) t);
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   152
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   153
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   154
(* type occurrences *)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   155
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   156
val declare_type_occs = map_type_occs o fold_term_types
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   157
  (fn Free (x, _) => fold_atyps (fn TFree (a, _) => Symtab.insert_list (op =) (a, x) | _ => I)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   158
    | _ => fold_atyps (fn TFree (a, _) => Symtab.default (a, []) | _ => I));
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
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   161
(* constraints *)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   162
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   163
fun redeclare_skolems ctxt = ctxt |> map_constraints (apfst (fn types =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   164
  let
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   165
    fun decl (x, x') =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   166
      (case default_type ctxt x' of
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   167
        SOME T => Vartab.update ((x, ~1), T)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   168
      | NONE => I);
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   169
  in fold_rev decl (fixes_of ctxt) types end));
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   170
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   171
fun declare_constraints t = map_constraints (fn (types, sorts) =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   172
  let
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   173
    val types' = fold_aterms
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   174
      (fn Free (x, T) => Vartab.update ((x, ~1), T)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   175
        | Var v => Vartab.update v
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   176
        | _ => I) t types;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   177
    val sorts' = fold_types (fold_atyps
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   178
      (fn TFree (x, S) => Vartab.update ((x, ~1), S)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   179
        | TVar v => Vartab.update v
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   180
        | _ => I)) t sorts;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   181
  in (types', sorts') end)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   182
  #> declare_type_names t
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   183
  #> redeclare_skolems;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   184
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   185
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   186
(* common declarations *)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   187
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   188
fun declare_internal t =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   189
  declare_names t #>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   190
  declare_type_occs t;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   191
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   192
fun declare_term t =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   193
  declare_internal t #>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   194
  declare_constraints t;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   195
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   196
fun declare_thm th = fold declare_internal (Thm.full_prop_of th :: Thm.hyps_of th);
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   197
fun thm_context th = declare_thm th (Context.init_proof (Thm.theory_of_thm th));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   198
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   199
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   200
(* renaming term/type frees *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   201
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   202
fun variant_frees ctxt ts frees =
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   203
  let
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   204
    val names = names_of (fold declare_names ts ctxt);
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   205
    val xs = fst (Name.variants (map #1 frees) names);
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   206
  in xs ~~ map snd frees end;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   207
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
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   210
(** fixes **)
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   211
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   212
local
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   213
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   214
fun no_dups [] = ()
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   215
  | 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
   216
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   217
fun new_fixes names' xs xs' =
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   218
  map_names (K names') #>
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   219
  map_fixes (fn fixes => (rev (xs ~~ xs') @ fixes)) #>
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   220
  fold (declare_constraints o Syntax.free) xs' #>
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   221
  pair xs';
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   222
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   223
in
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   224
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   225
fun add_fixes xs ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   226
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   227
    val _ =
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   228
      (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
   229
      | bads => error ("Illegal internal Skolem constant(s): " ^ commas_quote bads));
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   230
    val _ = no_dups (duplicates (op =) xs);
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   231
    val (ys, zs) = split_list (fixes_of ctxt);
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   232
    val names = names_of ctxt;
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   233
    val (xs', names') =
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   234
      if is_body ctxt then Name.variants xs names |>> map Name.skolem
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   235
      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
   236
        (xs, fold Name.declare xs names));
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   237
  in ctxt |> new_fixes names' xs xs' end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   238
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   239
fun invent_fixes raw_xs ctxt =
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   240
  let
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   241
    val names = names_of ctxt;
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   242
    val xs = map Name.clean raw_xs;
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   243
    val (xs', names') = Name.variants xs names |>> map Name.skolem;
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   244
  in ctxt |> new_fixes names' xs xs' end;
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   245
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   246
end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   247
20251
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   248
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   249
fun add_fixes_direct xs ctxt = ctxt
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   250
  |> set_body false
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   251
  |> (snd o add_fixes xs)
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   252
  |> restore_body ctxt;
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   253
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   254
fun fix_frees t ctxt = ctxt
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   255
  |> add_fixes_direct
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   256
      (rev (fold_aterms (fn Free (x, _) =>
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   257
        if is_fixed ctxt x then I else insert (op =) x | _ => I) t []))
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   258
  |> declare_term t;
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   259
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   260
fun invent_types Ss ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   261
  let
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   262
    val tfrees = Name.invents (names_of ctxt) "'a" (length Ss) ~~ Ss;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   263
    val ctxt' = fold (declare_constraints o Logic.mk_type o TFree) tfrees ctxt;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   264
  in (tfrees, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   265
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   266
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   267
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   268
(** export -- generalize type/term variables **)
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
fun export_inst inner outer =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   271
  let
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   272
    val declared_outer = is_declared outer;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   273
    val fixes_inner = fixes_of inner;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   274
    val fixes_outer = fixes_of outer;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   275
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   276
    val gen_fixes = map #2 (Library.take (length fixes_inner - length fixes_outer, fixes_inner));
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   277
    val still_fixed = not o member (op =) gen_fixes;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   278
    val gen_fixesT =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   279
      Symtab.fold (fn (a, xs) =>
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   280
        if declared_outer a orelse exists still_fixed xs
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   281
        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
   282
  in (gen_fixesT, gen_fixes) end;
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 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
   285
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   286
fun exportT_terms inner outer ts =
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   287
  map (Term.generalize (exportT_inst (fold declare_type_occs ts inner) outer, [])
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   288
    (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
   289
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   290
fun export_terms inner outer ts =
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   291
  map (Term.generalize (export_inst (fold declare_type_occs ts inner) outer)
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   292
    (fold Term.maxidx_term ts ~1 + 1)) ts;
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
fun gen_export inst inner outer ths =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   295
  let
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   296
    val ths' = map Thm.adjust_maxidx_thm ths;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   297
    val inner' = fold (declare_type_occs o Thm.full_prop_of) ths' inner;
20003
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   298
  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
   299
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   300
val exportT = gen_export (rpair [] oo exportT_inst);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   301
val export = gen_export export_inst;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   302
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   303
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   304
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   305
(** import -- fix schematic type/term variables **)
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 importT_inst 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 tvars = rev (fold Term.add_tvars ts []);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   310
    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
   311
  in (tvars ~~ map TFree tfrees, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   312
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   313
fun import_inst is_open ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   314
  let
20198
wenzelm
parents: 20162
diff changeset
   315
    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
   316
    val (instT, ctxt') = importT_inst ts ctxt;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   317
    val vars = map (apsnd (Term.instantiateT instT)) (rev (fold Term.add_vars ts []));
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   318
    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
   319
    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
   320
  in ((instT, inst), ctxt'') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   321
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   322
fun importT_terms ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   323
  let val (instT, ctxt') = importT_inst ts ctxt
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   324
  in (map (Term.instantiate (instT, [])) ts, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   325
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   326
fun import_terms is_open ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   327
  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
   328
  in (map (Term.instantiate inst) ts, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   329
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   330
fun importT ths ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   331
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   332
    val thy = Context.theory_of_proof ctxt;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   333
    val certT = Thm.ctyp_of thy;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   334
    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
   335
    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
   336
    val ths' = map (Thm.instantiate (instT', [])) ths;
20220
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
   337
  in ((map #2 instT', ths'), ctxt') end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   338
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   339
fun import is_open ths ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   340
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   341
    val thy = Context.theory_of_proof ctxt;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   342
    val cert = Thm.cterm_of thy;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   343
    val certT = Thm.ctyp_of thy;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   344
    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
   345
    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
   346
    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
   347
    val ths' = map (Thm.instantiate (instT', inst')) ths;
20220
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
   348
  in (((map #2 instT', map #2 inst'), ths'), ctxt') end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   349
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   350
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   351
(* import/export *)
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   352
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   353
fun gen_trade imp exp ctxt f ths =
20220
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
   354
  let val ((_, ths'), ctxt') = imp ths ctxt
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   355
  in exp ctxt' ctxt (f ths') end;
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   356
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   357
val tradeT = gen_trade importT exportT;
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   358
val trade = gen_trade (import true) export;
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   359
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   360
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   361
(* focus on outermost parameters *)
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   362
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   363
fun forall_elim_prop t prop =
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   364
  Thm.beta_conversion false (Thm.capply (#2 (Thm.dest_comb prop)) t)
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   365
  |> Thm.cprop_of |> Thm.dest_comb |> #2;
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   366
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   367
fun focus goal ctxt =
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   368
  let
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   369
    val cert = Thm.cterm_of (Thm.theory_of_cterm goal);
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   370
    val t = Thm.term_of goal;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   371
    val ps = Term.variant_frees t (Term.strip_all_vars t);   (*as they are printed :-*)
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   372
    val (xs, Ts) = split_list ps;
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   373
    val (xs', ctxt') = invent_fixes xs ctxt;
20220
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
   374
    val ps' = ListPair.map (cert o Free) (xs', Ts);
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
   375
    val goal' = fold forall_elim_prop ps' goal;
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   376
  in ((ps', goal'), ctxt') end;
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   377
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   378
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   379
(** implicit polymorphism **)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   380
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   381
(* warn_extra_tfrees *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   382
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   383
fun warn_extra_tfrees ctxt1 ctxt2 =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   384
  let
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   385
    fun occs_typ a = Term.exists_subtype (fn TFree (b, _) => a = b | _ => false);
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   386
    fun occs_free a x =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   387
      (case def_type ctxt1 false (x, ~1) of
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   388
        SOME T => if occs_typ a T then I else cons (a, x)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   389
      | NONE => cons (a, x));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   390
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   391
    val occs1 = type_occs_of ctxt1;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   392
    val occs2 = type_occs_of ctxt2;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   393
    val extras = Symtab.fold (fn (a, xs) =>
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   394
      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
   395
    val tfrees = map #1 extras |> sort_distinct string_ord;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   396
    val frees = map #2 extras |> sort_distinct string_ord;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   397
  in
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   398
    if null extras then ()
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   399
    else warning ("Introduced fixed type variable(s): " ^ commas tfrees ^ " in " ^
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   400
      space_implode " or " (map quote frees))
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   401
  end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   402
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   403
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   404
(* polymorphic terms *)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   405
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   406
fun polymorphic ctxt ts =
20003
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   407
  let
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   408
    val ctxt' = fold declare_term ts ctxt;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   409
    val occs = type_occs_of ctxt;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   410
    val occs' = type_occs_of ctxt';
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   411
    val types = Symtab.fold (fn (a, _) => if Symtab.defined occs a then I else cons a) occs' [];
20003
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   412
    val idx = fold (Term.fold_types Term.maxidx_typ) ts ~1 + 1;
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   413
  in map (Term.generalize (types, []) idx) ts end;
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   414
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   415
fun hidden_polymorphism t T =
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 tvarsT = Term.add_tvarsT T [];
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   418
    val extra_tvars = Term.fold_types (Term.fold_atyps
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   419
      (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
   420
  in extra_tvars end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   421
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   422
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   423
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   424
(** term bindings **)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   425
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   426
fun add_bind (xi, NONE) = map_binds (Vartab.delete_safe xi)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   427
  | add_bind ((x, i), SOME t) =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   428
      let
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   429
        val T = Term.fastype_of t;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   430
        val t' =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   431
          if null (hidden_polymorphism t T) then t
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   432
          else Var ((x ^ "_has_extra_type_vars_on_rhs", i), T);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   433
      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
   434
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   435
val add_binds = fold add_bind;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   436
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   437
fun expand_binds ctxt =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   438
  let
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   439
    val binds = binds_of ctxt;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   440
    fun expand (t as Var (xi, T)) =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   441
          (case Vartab.lookup binds xi of
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   442
            SOME u => Envir.expand_atom T u
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   443
          | NONE => t)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   444
      | expand t = t;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   445
  in Envir.beta_norm o Term.map_aterms expand end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   446
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   447
end;