src/Pure/variable.ML
author wenzelm
Wed, 27 Apr 2011 17:58:45 +0200
changeset 42488 4638622bcaa1
parent 42482 42c7ef050bc3
child 42493 01430341fc79
permissions -rw-r--r--
reorganized fixes as specialized (global) name space;
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
    Author:     Makarius
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     3
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     4
Fixed type/term variables and polymorphic term abbreviations.
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     5
*)
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
signature VARIABLE =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
     8
sig
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
     9
  val is_body: Proof.context -> bool
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    10
  val set_body: bool -> Proof.context -> Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    11
  val restore_body: Proof.context -> Proof.context -> Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    12
  val names_of: Proof.context -> Name.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    13
  val binds_of: Proof.context -> (typ * term) Vartab.table
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
    14
  val maxidx_of: Proof.context -> int
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
    15
  val sorts_of: Proof.context -> sort list
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    16
  val constraints_of: Proof.context -> typ Vartab.table * sort Vartab.table
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    17
  val is_declared: Proof.context -> string -> bool
42357
3305f573294e tuned signature, disentangled dependencies;
wenzelm
parents: 40124
diff changeset
    18
  val name: binding -> string
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    19
  val default_type: Proof.context -> string -> typ option
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    20
  val def_type: Proof.context -> bool -> indexname -> typ option
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    21
  val def_sort: Proof.context -> indexname -> sort option
27280
2a38802d3649 added declare_typ;
wenzelm
parents: 27119
diff changeset
    22
  val declare_names: term -> Proof.context -> Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    23
  val declare_constraints: term -> Proof.context -> Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    24
  val declare_term: term -> Proof.context -> Proof.context
27280
2a38802d3649 added declare_typ;
wenzelm
parents: 27119
diff changeset
    25
  val declare_typ: typ -> Proof.context -> Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    26
  val declare_prf: Proofterm.proof -> Proof.context -> Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    27
  val declare_thm: thm -> Proof.context -> Proof.context
36603
d5d6111761a6 renamed Variable.thm_context to Variable.global_thm_context to emphasize that this is not the real thing;
wenzelm
parents: 33957
diff changeset
    28
  val global_thm_context: thm -> Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    29
  val variant_frees: Proof.context -> term list -> (string * 'a) list -> (string * 'a) list
30756
1a9f93c1ed22 replaced add_binds by singleton bind_term;
wenzelm
parents: 29605
diff changeset
    30
  val bind_term: indexname * term option -> Proof.context -> Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    31
  val expand_binds: Proof.context -> term -> term
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
    32
  val lookup_const: Proof.context -> string -> string option
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
    33
  val is_const: Proof.context -> string -> bool
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
    34
  val declare_const: string * string -> Proof.context -> Proof.context
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    35
  val fixed_ord: Proof.context -> string * string -> order
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    36
  val is_fixed: Proof.context -> string -> bool
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    37
  val newly_fixed: Proof.context -> Proof.context -> string -> bool
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    38
  val intern_fixed: Proof.context -> string -> string
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    39
  val lookup_fixed: Proof.context -> string -> string option
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    40
  val revert_fixed: Proof.context -> string -> string
42482
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
    41
  val add_fixed_names: Proof.context -> term -> string list -> string list
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
    42
  val add_fixed: Proof.context -> term -> (string * typ) list -> (string * typ) list
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
    43
  val add_free_names: Proof.context -> term -> string list -> string list
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
    44
  val add_frees: Proof.context -> term -> (string * typ) list -> (string * typ) list
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    45
  val add_fixes_binding: binding list -> Proof.context -> string list * Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    46
  val add_fixes: string list -> Proof.context -> string list * Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    47
  val add_fixes_direct: string list -> Proof.context -> Proof.context
21369
6cca4865e388 removed fix_frees interface;
wenzelm
parents: 21355
diff changeset
    48
  val auto_fixes: term -> Proof.context -> Proof.context
20797
c1f0bc7e7d80 renamed Variable.invent_fixes to Variable.variant_fixes;
wenzelm
parents: 20579
diff changeset
    49
  val variant_fixes: string list -> Proof.context -> string list * Proof.context
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    50
  val dest_fixes: Proof.context -> (string * string) list
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    51
  val invent_types: sort list -> Proof.context -> (string * sort) list * Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    52
  val export_terms: Proof.context -> Proof.context -> term list -> term list
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    53
  val exportT_terms: Proof.context -> Proof.context -> term list -> term list
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    54
  val exportT: Proof.context -> Proof.context -> thm list -> thm list
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    55
  val export_prf: Proof.context -> Proof.context -> Proofterm.proof -> Proofterm.proof
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    56
  val export: Proof.context -> Proof.context -> thm list -> thm list
21522
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
    57
  val export_morphism: Proof.context -> Proof.context -> morphism
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    58
  val importT_inst: term list -> Proof.context -> ((indexname * sort) * typ) list * Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    59
  val import_inst: bool -> term list -> Proof.context ->
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    60
    (((indexname * sort) * typ) list * ((indexname * typ) * term) list) * Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    61
  val importT_terms: term list -> Proof.context -> term list * Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    62
  val import_terms: bool -> term list -> Proof.context -> term list * Proof.context
32280
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
    63
  val importT: thm list -> Proof.context -> ((ctyp * ctyp) list * thm list) * Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    64
  val import_prf: bool -> Proofterm.proof -> Proof.context -> Proofterm.proof * Proof.context
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30756
diff changeset
    65
  val import: bool -> thm list -> Proof.context ->
32280
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
    66
    (((ctyp * ctyp) list * (cterm * cterm) list) * thm list) * Proof.context
21287
a713ae348e8a tuned Variable.trade;
wenzelm
parents: 20797
diff changeset
    67
  val tradeT: (Proof.context -> thm list -> thm list) -> Proof.context -> thm list -> thm list
a713ae348e8a tuned Variable.trade;
wenzelm
parents: 20797
diff changeset
    68
  val trade: (Proof.context -> thm list -> thm list) -> Proof.context -> thm list -> thm list
32199
82c4c570310a Variable.focus: named parameters;
wenzelm
parents: 31977
diff changeset
    69
  val focus: cterm -> Proof.context -> ((string * cterm) list * cterm) * Proof.context
82c4c570310a Variable.focus: named parameters;
wenzelm
parents: 31977
diff changeset
    70
  val focus_subgoal: int -> thm -> Proof.context -> ((string * cterm) list * cterm) * Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    71
  val warn_extra_tfrees: Proof.context -> Proof.context -> unit
24694
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
    72
  val polymorphic_types: Proof.context -> term list -> (indexname * sort) list * term list
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    73
  val polymorphic: Proof.context -> term list -> term list
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    74
end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    75
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    76
structure Variable: VARIABLE =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    77
struct
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
(** local context data **)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    80
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    81
type fixes = string Name_Space.table;
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    82
val empty_fixes: fixes = Name_Space.empty_table "fixed variable";
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    83
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    84
datatype data = Data of
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
    85
 {is_body: bool,                        (*inner body mode*)
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    86
  names: Name.context,                  (*type/term variable names*)
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
    87
  consts: string Symtab.table,          (*consts within the local scope*)
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    88
  fixes: fixes,                         (*term fixes -- global name space, intern ~> extern*)
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
    89
  binds: (typ * term) Vartab.table,     (*term bindings*)
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    90
  type_occs: string list Symtab.table,  (*type variables -- possibly within term variables*)
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
    91
  maxidx: int,                          (*maximum var index*)
40124
fc77d3211f71 recovered some odd two-dimensional layout;
wenzelm
parents: 39687
diff changeset
    92
  sorts: sort Ord_List.T,               (*declared sort occurrences*)
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    93
  constraints:
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
    94
    typ Vartab.table *                  (*type constraints*)
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
    95
    sort Vartab.table};                 (*default sorts*)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    96
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
    97
fun make_data (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) =
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
    98
  Data {is_body = is_body, names = names, consts = consts, fixes = fixes, binds = binds,
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
    99
    type_occs = type_occs, maxidx = maxidx, sorts = sorts, constraints = constraints};
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   100
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33049
diff changeset
   101
structure Data = Proof_Data
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   102
(
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   103
  type T = data;
32784
1a5dde5079ac eliminated redundant bindings;
wenzelm
parents: 32280
diff changeset
   104
  fun init _ =
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   105
    make_data (false, Name.context, Symtab.empty, empty_fixes, Vartab.empty,
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   106
      Symtab.empty, ~1, [], (Vartab.empty, Vartab.empty));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   107
);
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
fun map_data f =
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   110
  Data.map (fn Data {is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints} =>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   111
    make_data (f (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints)));
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   112
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   113
fun map_names f =
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   114
  map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) =>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   115
    (is_body, f names, consts, fixes, binds, type_occs, maxidx, sorts, constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   116
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   117
fun map_consts f =
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   118
  map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) =>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   119
    (is_body, names, f consts, fixes, binds, type_occs, maxidx, sorts, constraints));
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   120
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   121
fun map_fixes f =
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   122
  map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) =>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   123
    (is_body, names, consts, f fixes, binds, type_occs, maxidx, sorts, constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   124
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   125
fun map_binds f =
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   126
  map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) =>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   127
    (is_body, names, consts, fixes, f binds, type_occs, maxidx, sorts, constraints));
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   128
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   129
fun map_type_occs f =
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   130
  map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) =>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   131
    (is_body, names, consts, fixes, binds, f type_occs, maxidx, sorts, constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   132
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   133
fun map_maxidx f =
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   134
  map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) =>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   135
    (is_body, names, consts, fixes, binds, type_occs, f maxidx, sorts, constraints));
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   136
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   137
fun map_sorts f =
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   138
  map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) =>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   139
    (is_body, names, consts, fixes, binds, type_occs, maxidx, f sorts, constraints));
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   140
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   141
fun map_constraints f =
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   142
  map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) =>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   143
    (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, f constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   144
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   145
fun rep_data ctxt = Data.get ctxt |> (fn Data args => args);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   146
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   147
val is_body = #is_body o rep_data;
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   148
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   149
fun set_body b =
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   150
  map_data (fn (_, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) =>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   151
    (b, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints));
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   152
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   153
fun restore_body ctxt = set_body (is_body ctxt);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   154
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   155
val names_of = #names o rep_data;
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   156
val fixes_of = #fixes o rep_data;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   157
val binds_of = #binds o rep_data;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   158
val type_occs_of = #type_occs o rep_data;
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   159
val maxidx_of = #maxidx o rep_data;
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   160
val sorts_of = #sorts o rep_data;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   161
val constraints_of = #constraints o rep_data;
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
val is_declared = Name.is_declared o names_of;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   164
42357
3305f573294e tuned signature, disentangled dependencies;
wenzelm
parents: 40124
diff changeset
   165
(*checked name binding*)
3305f573294e tuned signature, disentangled dependencies;
wenzelm
parents: 40124
diff changeset
   166
val name = Long_Name.base_name o Name_Space.full_name Name_Space.default_naming;
3305f573294e tuned signature, disentangled dependencies;
wenzelm
parents: 40124
diff changeset
   167
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   168
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   169
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   170
(** declarations **)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   171
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   172
(* default sorts and types *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   173
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   174
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
   175
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   176
fun def_type ctxt pattern xi =
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   177
  let val {binds, constraints = (types, _), ...} = rep_data ctxt in
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   178
    (case Vartab.lookup types xi of
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   179
      NONE =>
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   180
        if pattern then NONE
39290
44e4d8dfd6bf load type_infer.ML later -- proper context for Type_Infer.infer_types;
wenzelm
parents: 38831
diff changeset
   181
        else Vartab.lookup binds xi |> Option.map (Type.mark_polymorphic o #1)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   182
    | some => some)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   183
  end;
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
val def_sort = Vartab.lookup o #2 o constraints_of;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   186
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   187
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   188
(* names *)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   189
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   190
fun declare_type_names t =
29279
7456a64bc4f6 Term.declare_typ_names, Term.declare_term_frees;
wenzelm
parents: 28965
diff changeset
   191
  map_names (fold_types (fold_atyps Term.declare_typ_names) t) #>
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   192
  map_maxidx (fold_types Term.maxidx_typ t);
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   193
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   194
fun declare_names t =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   195
  declare_type_names t #>
29279
7456a64bc4f6 Term.declare_typ_names, Term.declare_term_frees;
wenzelm
parents: 28965
diff changeset
   196
  map_names (fold_aterms Term.declare_term_frees t) #>
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   197
  map_maxidx (Term.maxidx_term t);
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   198
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   199
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   200
(* type occurrences *)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   201
24719
21d1cdab2d8c declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents: 24694
diff changeset
   202
fun decl_type_occsT T = fold_atyps (fn TFree (a, _) => Symtab.default (a, []) | _ => I) T;
21d1cdab2d8c declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents: 24694
diff changeset
   203
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   204
val decl_type_occs = fold_term_types
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   205
  (fn Free (x, _) => fold_atyps (fn TFree (a, _) => Symtab.insert_list (op =) (a, x) | _ => I)
24719
21d1cdab2d8c declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents: 24694
diff changeset
   206
    | _ => decl_type_occsT);
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   207
24719
21d1cdab2d8c declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents: 24694
diff changeset
   208
val declare_type_occsT = map_type_occs o fold_types decl_type_occsT;
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   209
val declare_type_occs = map_type_occs o decl_type_occs;
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   210
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   211
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   212
(* constraints *)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   213
21355
5c1b1ae737e1 declare_constraints: reset constraint on dummyS;
wenzelm
parents: 21287
diff changeset
   214
fun constrain_tvar (xi, S) =
5c1b1ae737e1 declare_constraints: reset constraint on dummyS;
wenzelm
parents: 21287
diff changeset
   215
  if S = dummyS then Vartab.delete_safe xi else Vartab.update (xi, S);
5c1b1ae737e1 declare_constraints: reset constraint on dummyS;
wenzelm
parents: 21287
diff changeset
   216
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   217
fun declare_constraints t = map_constraints (fn (types, sorts) =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   218
  let
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   219
    val types' = fold_aterms
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   220
      (fn Free (x, T) => Vartab.update ((x, ~1), T)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   221
        | Var v => Vartab.update v
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   222
        | _ => I) t types;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   223
    val sorts' = fold_types (fold_atyps
21355
5c1b1ae737e1 declare_constraints: reset constraint on dummyS;
wenzelm
parents: 21287
diff changeset
   224
      (fn TFree (x, S) => constrain_tvar ((x, ~1), S)
5c1b1ae737e1 declare_constraints: reset constraint on dummyS;
wenzelm
parents: 21287
diff changeset
   225
        | TVar v => constrain_tvar v
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   226
        | _ => I)) t sorts;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   227
  in (types', sorts') end)
24719
21d1cdab2d8c declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents: 24694
diff changeset
   228
  #> declare_type_occsT t
22711
0b18739c3e81 removed obsolete redeclare_skolems;
wenzelm
parents: 22691
diff changeset
   229
  #> declare_type_names t;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   230
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   231
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   232
(* common declarations *)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   233
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   234
fun declare_internal t =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   235
  declare_names t #>
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   236
  declare_type_occs t #>
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   237
  map_sorts (Sorts.insert_term t);
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   238
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   239
fun declare_term t =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   240
  declare_internal t #>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   241
  declare_constraints t;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   242
27280
2a38802d3649 added declare_typ;
wenzelm
parents: 27119
diff changeset
   243
val declare_typ = declare_term o Logic.mk_type;
2a38802d3649 added declare_typ;
wenzelm
parents: 27119
diff changeset
   244
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   245
val declare_prf = Proofterm.fold_proof_terms declare_internal (declare_internal o Logic.mk_type);
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   246
22691
290454649b8c Thm.fold_terms;
wenzelm
parents: 22671
diff changeset
   247
val declare_thm = Thm.fold_terms declare_internal;
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42357
diff changeset
   248
fun global_thm_context th = declare_thm th (Proof_Context.init_global (Thm.theory_of_thm th));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   249
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   250
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   251
(* renaming term/type frees *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   252
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   253
fun variant_frees ctxt ts frees =
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   254
  let
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   255
    val names = names_of (fold declare_names ts ctxt);
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   256
    val xs = fst (Name.variants (map #1 frees) names);
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   257
  in xs ~~ map snd frees end;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   258
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   259
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   260
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   261
(** term bindings **)
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   262
30756
1a9f93c1ed22 replaced add_binds by singleton bind_term;
wenzelm
parents: 29605
diff changeset
   263
fun bind_term (xi, NONE) = map_binds (Vartab.delete_safe xi)
1a9f93c1ed22 replaced add_binds by singleton bind_term;
wenzelm
parents: 29605
diff changeset
   264
  | bind_term ((x, i), SOME t) =
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   265
      let
25051
71cd45fdf332 add_bind: close_schematic_term;
wenzelm
parents: 24848
diff changeset
   266
        val u = Term.close_schematic_term t;
71cd45fdf332 add_bind: close_schematic_term;
wenzelm
parents: 24848
diff changeset
   267
        val U = Term.fastype_of u;
71cd45fdf332 add_bind: close_schematic_term;
wenzelm
parents: 24848
diff changeset
   268
      in declare_term u #> map_binds (Vartab.update ((x, i), (U, u))) end;
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   269
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   270
fun expand_binds ctxt =
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   271
  let
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   272
    val binds = binds_of ctxt;
21799
a85e3bbc76fb tuned expand_binds;
wenzelm
parents: 21683
diff changeset
   273
    val get = fn Var (xi, _) => Vartab.lookup binds xi | _ => NONE;
a85e3bbc76fb tuned expand_binds;
wenzelm
parents: 21683
diff changeset
   274
  in Envir.beta_norm o Envir.expand_term get end;
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   275
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   276
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   277
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   278
(** consts **)
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   279
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   280
val lookup_const = Symtab.lookup o #consts o rep_data;
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   281
val is_const = is_some oo lookup_const;
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   282
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   283
val declare_fixed = map_consts o Symtab.delete_safe;
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   284
val declare_const = map_consts o Symtab.update;
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   285
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   286
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   287
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   288
(** fixes **)
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   289
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   290
(* specialized name space *)
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   291
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   292
fun fixed_ord ctxt = Name_Space.entry_ord (#1 (fixes_of ctxt));
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   293
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   294
fun is_fixed ctxt x = can (Name_Space.the_entry (#1 (fixes_of ctxt))) x;
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   295
fun newly_fixed inner outer x = is_fixed inner x andalso not (is_fixed outer x);
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   296
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   297
fun intern_fixed ctxt = Name_Space.intern (#1 (fixes_of ctxt));
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   298
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   299
fun lookup_fixed ctxt x =
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   300
  let val x' = intern_fixed ctxt x
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   301
  in if is_fixed ctxt x' then SOME x' else NONE end;
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   302
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   303
fun revert_fixed ctxt x =
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   304
  (case Symtab.lookup (#2 (fixes_of ctxt)) x of
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   305
    SOME x' => if intern_fixed ctxt x' = x then x' else x
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   306
  | NONE => x);
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   307
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   308
fun dest_fixes ctxt =
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   309
  let val (space, tab) = fixes_of ctxt
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   310
  in sort (Name_Space.entry_ord space o pairself #2) (map swap (Symtab.dest tab)) end;
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   311
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   312
42482
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   313
(* collect variables *)
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   314
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   315
fun add_free_names ctxt =
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   316
  fold_aterms (fn Free (x, _) => not (is_fixed ctxt x) ? insert (op =) x | _ => I);
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   317
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   318
fun add_frees ctxt =
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   319
  fold_aterms (fn Free (x, T) => not (is_fixed ctxt x) ? insert (op =) (x, T) | _ => I);
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   320
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   321
fun add_fixed_names ctxt =
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   322
  fold_aterms (fn Free (x, _) => is_fixed ctxt x ? insert (op =) x | _ => I);
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   323
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   324
fun add_fixed ctxt =
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   325
  fold_aterms (fn Free (x, T) => is_fixed ctxt x ? insert (op =) (x, T) | _ => I);
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   326
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   327
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   328
(* declarations *)
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   329
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   330
local
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   331
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   332
fun err_dups dups =
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   333
  error ("Duplicate fixed variable(s): " ^ commas (map Binding.print dups));
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   334
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   335
fun new_fixed ((x, x'), pos) ctxt =
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   336
  if is_some (lookup_fixed ctxt x') then err_dups [Binding.make (x, pos)]
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   337
  else
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   338
    ctxt
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   339
    |> map_fixes
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   340
      (Name_Space.define ctxt true Name_Space.default_naming (Binding.make (x', pos), x) #> snd #>>
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   341
        Name_Space.alias Name_Space.default_naming (Binding.make (x, pos)) x')
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   342
    |> declare_fixed x
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   343
    |> declare_constraints (Syntax.free x');
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   344
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   345
fun new_fixes names' xs xs' ps =
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   346
  map_names (K names') #>
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   347
  fold new_fixed ((xs ~~ xs') ~~ ps) #>
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   348
  pair xs';
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   349
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   350
in
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   351
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   352
fun add_fixes_binding bs ctxt =
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   353
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   354
    val _ =
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   355
      (case filter (can Name.dest_skolem o Binding.name_of) bs of
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   356
        [] => ()
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   357
      | bads => error ("Illegal internal Skolem constant(s): " ^ commas (map Binding.print bads)));
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   358
    val _ =
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   359
      (case duplicates (op = o pairself Binding.name_of) bs of
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   360
        [] => ()
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   361
      | dups => err_dups dups);
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   362
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   363
    val xs = map name bs;
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   364
    val names = names_of ctxt;
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   365
    val (xs', names') =
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   366
      if is_body ctxt then Name.variants xs names |>> map Name.skolem
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   367
      else (xs, fold Name.declare xs names);
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   368
  in ctxt |> new_fixes names' xs xs' (map Binding.pos_of bs) end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   369
20797
c1f0bc7e7d80 renamed Variable.invent_fixes to Variable.variant_fixes;
wenzelm
parents: 20579
diff changeset
   370
fun variant_fixes raw_xs ctxt =
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   371
  let
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   372
    val names = names_of ctxt;
26714
4773b832f1b1 variant_fixes: preserve internal state, mark skolem only for body mode;
wenzelm
parents: 25573
diff changeset
   373
    val xs = map (fn x => Name.clean x |> can Name.dest_internal x ? Name.internal) raw_xs;
4773b832f1b1 variant_fixes: preserve internal state, mark skolem only for body mode;
wenzelm
parents: 25573
diff changeset
   374
    val (xs', names') = Name.variants xs names |>> (is_body ctxt ? map Name.skolem);
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   375
  in ctxt |> new_fixes names' xs xs' (replicate (length xs) Position.none) end;
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   376
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   377
end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   378
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   379
val add_fixes = add_fixes_binding o map Binding.name;
20251
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   380
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   381
fun add_fixes_direct xs ctxt = ctxt
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   382
  |> set_body false
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   383
  |> (snd o add_fixes xs)
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   384
  |> restore_body ctxt;
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   385
42482
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   386
fun auto_fixes t ctxt = ctxt
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   387
  |> not (is_body ctxt) ? add_fixes_direct (rev (add_free_names ctxt t []))
20251
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   388
  |> declare_term t;
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   389
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   390
fun invent_types Ss ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   391
  let
24848
5dbbd33c3236 replaced literal 'a by Name.aT;
wenzelm
parents: 24765
diff changeset
   392
    val tfrees = Name.invents (names_of ctxt) Name.aT (length Ss) ~~ Ss;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   393
    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
   394
  in (tfrees, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   395
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   396
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   397
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   398
(** export -- generalize type/term variables (beware of closure sizes) **)
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   399
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   400
fun export_inst inner outer =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   401
  let
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   402
    val declared_outer = is_declared outer;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   403
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   404
    val gen_fixes =
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   405
      Symtab.fold (fn (y, _) => not (is_fixed outer y) ? cons y)
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   406
        (#2 (fixes_of inner)) [];
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   407
    val still_fixed = not o member (op =) gen_fixes;
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   408
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   409
    val type_occs_inner = type_occs_of inner;
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   410
    fun gen_fixesT ts =
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   411
      Symtab.fold (fn (a, xs) =>
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   412
        if declared_outer a orelse exists still_fixed xs
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   413
        then I else cons a) (fold decl_type_occs ts type_occs_inner) [];
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   414
  in (gen_fixesT, gen_fixes) end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   415
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   416
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
   417
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   418
fun exportT_terms inner outer =
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   419
  let val mk_tfrees = exportT_inst inner outer in
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   420
    fn ts => ts |> map
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   421
      (Term_Subst.generalize (mk_tfrees ts, [])
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   422
        (fold (Term.fold_types Term.maxidx_typ) ts ~1 + 1))
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   423
  end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   424
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   425
fun export_terms inner outer =
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   426
  let val (mk_tfrees, tfrees) = export_inst inner outer in
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   427
    fn ts => ts |> map
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   428
      (Term_Subst.generalize (mk_tfrees ts, tfrees)
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   429
        (fold Term.maxidx_term ts ~1 + 1))
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   430
  end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   431
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   432
fun export_prf inner outer prf =
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   433
  let
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   434
    val (mk_tfrees, frees) = export_inst (declare_prf prf inner) outer;
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   435
    val tfrees = mk_tfrees [];
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   436
    val idx = Proofterm.maxidx_proof prf ~1 + 1;
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36610
diff changeset
   437
    val gen_term = Term_Subst.generalize_same (tfrees, frees) idx;
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36610
diff changeset
   438
    val gen_typ = Term_Subst.generalizeT_same tfrees idx;
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36610
diff changeset
   439
  in Same.commit (Proofterm.map_proof_terms_same gen_term gen_typ) prf end;
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   440
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   441
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   442
fun gen_export (mk_tfrees, frees) ths =
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   443
  let
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   444
    val tfrees = mk_tfrees (map Thm.full_prop_of ths);
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   445
    val maxidx = fold Thm.maxidx_thm ths ~1;
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   446
  in map (Thm.generalize (tfrees, frees) (maxidx + 1)) ths end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   447
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   448
fun exportT inner outer = gen_export (exportT_inst inner outer, []);
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   449
fun export inner outer = gen_export (export_inst inner outer);
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   450
21522
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
   451
fun export_morphism inner outer =
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
   452
  let
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
   453
    val fact = export inner outer;
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
   454
    val term = singleton (export_terms inner outer);
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
   455
    val typ = Logic.type_map term;
29605
f2924219125e eliminated obsolete var morphism;
wenzelm
parents: 29279
diff changeset
   456
  in Morphism.morphism {binding = I, typ = typ, term = term, fact = fact} end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   457
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   458
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   459
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   460
(** import -- fix schematic type/term variables **)
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   461
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   462
fun importT_inst ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   463
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   464
    val tvars = rev (fold Term.add_tvars ts []);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   465
    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
   466
  in (tvars ~~ map TFree tfrees, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   467
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   468
fun import_inst is_open ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   469
  let
26714
4773b832f1b1 variant_fixes: preserve internal state, mark skolem only for body mode;
wenzelm
parents: 25573
diff changeset
   470
    val ren = Name.clean #> (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
   471
    val (instT, ctxt') = importT_inst ts ctxt;
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   472
    val vars = map (apsnd (Term_Subst.instantiateT instT)) (rev (fold Term.add_vars ts []));
20797
c1f0bc7e7d80 renamed Variable.invent_fixes to Variable.variant_fixes;
wenzelm
parents: 20579
diff changeset
   473
    val (xs, ctxt'') = variant_fixes (map (ren o #1 o #1) vars) ctxt';
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   474
    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
   475
  in ((instT, inst), ctxt'') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   476
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   477
fun importT_terms ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   478
  let val (instT, ctxt') = importT_inst ts ctxt
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   479
  in (map (Term_Subst.instantiate (instT, [])) ts, ctxt') end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   480
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   481
fun import_terms is_open ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   482
  let val (inst, ctxt') = import_inst is_open ts ctxt
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   483
  in (map (Term_Subst.instantiate inst) ts, ctxt') end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   484
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30756
diff changeset
   485
fun importT ths ctxt =
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   486
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42357
diff changeset
   487
    val thy = Proof_Context.theory_of ctxt;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   488
    val (instT, ctxt') = importT_inst (map Thm.full_prop_of ths) ctxt;
32280
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
   489
    val insts' as (instT', _) = Thm.certify_inst thy (instT, []);
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
   490
    val ths' = map (Thm.instantiate insts') ths;
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
   491
  in ((instT', ths'), ctxt') end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   492
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   493
fun import_prf is_open prf ctxt =
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   494
  let
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   495
    val ts = rev (Proofterm.fold_proof_terms cons (cons o Logic.mk_type) prf []);
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   496
    val (insts, ctxt') = import_inst is_open ts ctxt;
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   497
  in (Proofterm.instantiate insts prf, ctxt') end;
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   498
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30756
diff changeset
   499
fun import is_open ths ctxt =
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   500
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42357
diff changeset
   501
    val thy = Proof_Context.theory_of ctxt;
32280
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
   502
    val (insts, ctxt') = import_inst is_open (map Thm.full_prop_of ths) ctxt;
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
   503
    val insts' = Thm.certify_inst thy insts;
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
   504
    val ths' = map (Thm.instantiate insts') ths;
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
   505
  in ((insts', ths'), ctxt') end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   506
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   507
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   508
(* import/export *)
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   509
21287
a713ae348e8a tuned Variable.trade;
wenzelm
parents: 20797
diff changeset
   510
fun gen_trade imp exp f ctxt ths =
20220
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
   511
  let val ((_, ths'), ctxt') = imp ths ctxt
21287
a713ae348e8a tuned Variable.trade;
wenzelm
parents: 20797
diff changeset
   512
  in exp ctxt' ctxt (f ctxt' ths') end;
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   513
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30756
diff changeset
   514
val tradeT = gen_trade importT exportT;
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30756
diff changeset
   515
val trade = gen_trade (import true) export;
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   516
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   517
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   518
(* focus on outermost parameters *)
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   519
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   520
fun forall_elim_prop t prop =
20579
4dc799edef89 Thm.dest_arg;
wenzelm
parents: 20509
diff changeset
   521
  Thm.beta_conversion false (Thm.capply (Thm.dest_arg prop) t)
4dc799edef89 Thm.dest_arg;
wenzelm
parents: 20509
diff changeset
   522
  |> Thm.cprop_of |> Thm.dest_arg;
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   523
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   524
fun focus goal ctxt =
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   525
  let
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   526
    val cert = Thm.cterm_of (Thm.theory_of_cterm goal);
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   527
    val t = Thm.term_of goal;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   528
    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
   529
    val (xs, Ts) = split_list ps;
20797
c1f0bc7e7d80 renamed Variable.invent_fixes to Variable.variant_fixes;
wenzelm
parents: 20579
diff changeset
   530
    val (xs', ctxt') = variant_fixes xs ctxt;
20220
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
   531
    val ps' = ListPair.map (cert o Free) (xs', Ts);
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
   532
    val goal' = fold forall_elim_prop ps' goal;
27119
c36c88fcdd22 focus: actually declare constraints for local parameters;
wenzelm
parents: 26714
diff changeset
   533
    val ctxt'' = ctxt' |> fold (declare_constraints o Thm.term_of) ps';
32199
82c4c570310a Variable.focus: named parameters;
wenzelm
parents: 31977
diff changeset
   534
  in ((xs ~~ ps', goal'), ctxt'') end;
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   535
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   536
fun focus_subgoal i st =
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   537
  let
22691
290454649b8c Thm.fold_terms;
wenzelm
parents: 22671
diff changeset
   538
    val all_vars = Thm.fold_terms Term.add_vars st [];
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   539
    val no_binds = map (fn (xi, _) => (xi, NONE)) all_vars;
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   540
  in
30756
1a9f93c1ed22 replaced add_binds by singleton bind_term;
wenzelm
parents: 29605
diff changeset
   541
    fold bind_term no_binds #>
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   542
    fold (declare_constraints o Var) all_vars #>
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   543
    focus (Thm.cprem_of st i)
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   544
  end;
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   545
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   546
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   547
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   548
(** implicit polymorphism **)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   549
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   550
(* warn_extra_tfrees *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   551
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   552
fun warn_extra_tfrees ctxt1 ctxt2 =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   553
  let
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   554
    fun occs_typ a = Term.exists_subtype (fn TFree (b, _) => a = b | _ => false);
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   555
    fun occs_free a x =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   556
      (case def_type ctxt1 false (x, ~1) of
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   557
        SOME T => if occs_typ a T then I else cons (a, x)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   558
      | NONE => cons (a, x));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   559
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   560
    val occs1 = type_occs_of ctxt1;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   561
    val occs2 = type_occs_of ctxt2;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   562
    val extras = Symtab.fold (fn (a, xs) =>
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   563
      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
   564
    val tfrees = map #1 extras |> sort_distinct string_ord;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   565
    val frees = map #2 extras |> sort_distinct string_ord;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   566
  in
38831
4933a3dfd745 more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents: 37145
diff changeset
   567
    if null extras orelse not (Context_Position.is_visible ctxt2) then ()
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   568
    else warning ("Introduced fixed type variable(s): " ^ commas tfrees ^ " in " ^
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   569
      space_implode " or " (map quote frees))
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   570
  end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   571
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   572
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   573
(* polymorphic terms *)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   574
24694
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   575
fun polymorphic_types ctxt ts =
20003
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   576
  let
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   577
    val ctxt' = fold declare_term ts ctxt;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   578
    val occs = type_occs_of ctxt;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   579
    val occs' = type_occs_of ctxt';
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   580
    val types = Symtab.fold (fn (a, _) => if Symtab.defined occs a then I else cons a) occs' [];
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   581
    val idx = maxidx_of ctxt' + 1;
24694
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   582
    val Ts' = (fold o fold_types o fold_atyps)
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   583
      (fn T as TFree _ =>
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   584
          (case Term_Subst.generalizeT types idx T of TVar v => insert (op =) v | _ => I)
24694
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   585
        | _ => I) ts [];
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   586
    val ts' = map (Term_Subst.generalize (types, []) idx) ts;
24694
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   587
  in (rev Ts', ts') end;
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   588
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   589
fun polymorphic ctxt ts = snd (polymorphic_types ctxt ts);
20003
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   590
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   591
end;