src/Pure/variable.ML
author wenzelm
Thu, 26 Aug 2021 14:52:15 +0200
changeset 74201 c36b663ef037
parent 74200 17090e27aae9
child 74220 c49134ee16c1
permissions -rw-r--r--
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
    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 names_of: Proof.context -> Name.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    10
  val binds_of: Proof.context -> (typ * term) Vartab.table
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
    11
  val maxidx_of: Proof.context -> int
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    12
  val constraints_of: Proof.context -> typ Vartab.table * sort Vartab.table
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    13
  val is_declared: Proof.context -> string -> bool
42494
eef1a23c9077 tuned signature -- eliminated odd comment;
wenzelm
parents: 42493
diff changeset
    14
  val check_name: binding -> string
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    15
  val default_type: Proof.context -> string -> typ option
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    16
  val def_type: Proof.context -> bool -> indexname -> typ option
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    17
  val def_sort: Proof.context -> indexname -> sort option
59646
48d400469bcb added declare_maxidx operations for Eisbach;
wenzelm
parents: 59645
diff changeset
    18
  val declare_maxidx: int -> Proof.context -> Proof.context
27280
2a38802d3649 added declare_typ;
wenzelm
parents: 27119
diff changeset
    19
  val declare_names: term -> Proof.context -> Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    20
  val declare_constraints: term -> Proof.context -> Proof.context
62012
12d3edd62932 more precise context -- potentially relevant for Eisbach dummy thm;
wenzelm
parents: 61949
diff changeset
    21
  val declare_internal: term -> Proof.context -> Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    22
  val declare_term: term -> Proof.context -> Proof.context
27280
2a38802d3649 added declare_typ;
wenzelm
parents: 27119
diff changeset
    23
  val declare_typ: typ -> Proof.context -> Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    24
  val declare_prf: Proofterm.proof -> Proof.context -> Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    25
  val declare_thm: thm -> Proof.context -> Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    26
  val variant_frees: Proof.context -> term list -> (string * 'a) list -> (string * 'a) list
60401
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
    27
  val bind_term: indexname * term -> Proof.context -> Proof.context
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
    28
  val unbind_term: indexname -> Proof.context -> Proof.context
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
    29
  val maybe_bind_term: indexname * term option -> Proof.context -> Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    30
  val expand_binds: Proof.context -> term -> term
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
    31
  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
    32
  val is_const: Proof.context -> string -> bool
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
    33
  val declare_const: string * string -> Proof.context -> Proof.context
55635
00e900057b38 tuned signature;
wenzelm
parents: 55014
diff changeset
    34
  val next_bound: string * typ -> Proof.context -> term * Proof.context
55014
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
    35
  val revert_bounds: Proof.context -> term -> term
59798
wenzelm
parents: 59796
diff changeset
    36
  val is_body: Proof.context -> bool
wenzelm
parents: 59796
diff changeset
    37
  val set_body: bool -> Proof.context -> Proof.context
wenzelm
parents: 59796
diff changeset
    38
  val restore_body: Proof.context -> Proof.context -> Proof.context
59790
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
    39
  val improper_fixes: Proof.context -> Proof.context
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
    40
  val restore_proper_fixes: Proof.context -> Proof.context -> Proof.context
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
    41
  val is_improper: Proof.context -> string -> bool
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    42
  val is_fixed: Proof.context -> string -> bool
59846
c7b7bca8592c tuned signature;
wenzelm
parents: 59828
diff changeset
    43
  val is_newly_fixed: Proof.context -> Proof.context -> string -> bool
70586
57df8a85317a clarified signature;
wenzelm
parents: 70311
diff changeset
    44
  val fixed_ord: Proof.context -> string ord
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    45
  val intern_fixed: Proof.context -> string -> string
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    46
  val lookup_fixed: Proof.context -> string -> string option
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
    47
  val revert_fixed: Proof.context -> string -> string
62987
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
    48
  val markup_fixed: Proof.context -> string -> Markup.T
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
    49
  val markup: Proof.context -> string -> Markup.T
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
    50
  val markup_entity_def: Proof.context -> string -> Markup.T
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
    51
  val dest_fixes: Proof.context -> (string * string) list
42482
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
    52
  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
    53
  val add_fixed: Proof.context -> term -> (string * typ) list -> (string * typ) list
59846
c7b7bca8592c tuned signature;
wenzelm
parents: 59828
diff changeset
    54
  val add_newly_fixed: Proof.context -> Proof.context ->
c7b7bca8592c tuned signature;
wenzelm
parents: 59828
diff changeset
    55
    term -> (string * typ) list -> (string * typ) list
42482
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
    56
  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
    57
  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
    58
  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
    59
  val add_fixes: string list -> Proof.context -> string list * Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    60
  val add_fixes_direct: string list -> Proof.context -> Proof.context
70733
ce1afe0f3071 clarified modules;
wenzelm
parents: 70586
diff changeset
    61
  val add_fixes_implicit: term -> Proof.context -> Proof.context
59796
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
    62
  val fix_dummy_patterns: term -> Proof.context -> term * Proof.context
20797
c1f0bc7e7d80 renamed Variable.invent_fixes to Variable.variant_fixes;
wenzelm
parents: 20579
diff changeset
    63
  val variant_fixes: string list -> Proof.context -> string list * Proof.context
60822
4f58f3662e7d more explicit context;
wenzelm
parents: 60805
diff changeset
    64
  val gen_all: Proof.context -> thm -> thm
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    65
  val export_terms: Proof.context -> Proof.context -> term list -> term list
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    66
  val exportT_terms: Proof.context -> Proof.context -> term list -> term list
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    67
  val exportT: Proof.context -> Proof.context -> thm list -> thm list
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    68
  val export_prf: Proof.context -> Proof.context -> Proofterm.proof -> Proofterm.proof
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    69
  val export: Proof.context -> Proof.context -> thm list -> thm list
21522
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
    70
  val export_morphism: Proof.context -> Proof.context -> morphism
59796
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
    71
  val invent_types: sort list -> Proof.context -> (string * sort) list * Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    72
  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
    73
  val import_inst: bool -> term list -> Proof.context ->
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    74
    (((indexname * sort) * typ) list * ((indexname * typ) * term) list) * Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    75
  val importT_terms: term list -> Proof.context -> term list * Proof.context
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    76
  val import_terms: bool -> term list -> Proof.context -> term list * Proof.context
60642
48dd1cefb4ae simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents: 60401
diff changeset
    77
  val importT: thm list -> Proof.context ->
48dd1cefb4ae simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents: 60401
diff changeset
    78
    (((indexname * sort) * ctyp) list * thm list) * Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    79
  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
    80
  val import: bool -> thm list -> Proof.context ->
60642
48dd1cefb4ae simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents: 60401
diff changeset
    81
    ((((indexname * sort) * ctyp) list * ((indexname * typ) * cterm) list) * thm list) * Proof.context
70304
1514efa1e57a tuned signature;
wenzelm
parents: 69576
diff changeset
    82
  val import_vars: Proof.context -> thm -> thm
21287
a713ae348e8a tuned Variable.trade;
wenzelm
parents: 20797
diff changeset
    83
  val tradeT: (Proof.context -> thm list -> thm list) -> Proof.context -> thm list -> thm list
a713ae348e8a tuned Variable.trade;
wenzelm
parents: 20797
diff changeset
    84
  val trade: (Proof.context -> thm list -> thm list) -> Proof.context -> thm list -> thm list
60707
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
    85
  val is_bound_focus: Proof.context -> bool
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
    86
  val set_bound_focus: bool -> Proof.context -> Proof.context
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
    87
  val restore_bound_focus: Proof.context -> Proof.context -> Proof.context
60695
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
    88
  val focus_params: binding list option -> term -> Proof.context ->
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
    89
    (string list * (string * typ) list) * Proof.context
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
    90
  val focus: binding list option -> term -> Proof.context ->
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
    91
    ((string * (string * typ)) list * term) * Proof.context
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
    92
  val focus_cterm: binding list option -> cterm -> Proof.context ->
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
    93
    ((string * cterm) list * cterm) * Proof.context
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
    94
  val focus_subgoal: binding list option -> int -> thm -> Proof.context ->
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
    95
    ((string * cterm) list * cterm) * Proof.context
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
    96
  val warn_extra_tfrees: Proof.context -> Proof.context -> unit
24694
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
    97
  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
    98
  val polymorphic: Proof.context -> term list -> term list
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
    99
end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   100
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   101
structure Variable: VARIABLE =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   102
struct
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   103
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   104
(** local context data **)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   105
59790
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   106
type fixes = (string * bool) Name_Space.table;
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49688
diff changeset
   107
val empty_fixes: fixes = Name_Space.empty_table Markup.fixedN;
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   108
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   109
datatype data = Data of
59798
wenzelm
parents: 59796
diff changeset
   110
 {names: Name.context,                  (*type/term variable names*)
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   111
  consts: string Symtab.table,          (*consts within the local scope*)
55014
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   112
  bounds: int * ((string * typ) * string) list,  (*next index, internal name, type, external name*)
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   113
  fixes: fixes,                         (*term fixes -- global name space, intern ~> extern*)
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   114
  binds: (typ * term) Vartab.table,     (*term bindings*)
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   115
  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
   116
  maxidx: int,                          (*maximum var index*)
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   117
  constraints:
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   118
    typ Vartab.table *                  (*type constraints*)
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   119
    sort Vartab.table};                 (*default sorts*)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   120
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   121
fun make_data (names, consts, bounds, fixes, binds, type_occs, maxidx, constraints) =
59798
wenzelm
parents: 59796
diff changeset
   122
  Data {names = names, consts = consts, bounds = bounds, fixes = fixes, binds = binds,
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   123
    type_occs = type_occs, maxidx = maxidx, constraints = constraints};
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   124
59150
wenzelm
parents: 59058
diff changeset
   125
val empty_data =
59798
wenzelm
parents: 59796
diff changeset
   126
  make_data (Name.context, Symtab.empty, (0, []), empty_fixes, Vartab.empty,
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   127
    Symtab.empty, ~1, (Vartab.empty, Vartab.empty));
59150
wenzelm
parents: 59058
diff changeset
   128
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33049
diff changeset
   129
structure Data = Proof_Data
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   130
(
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   131
  type T = data;
59150
wenzelm
parents: 59058
diff changeset
   132
  fun init _ = empty_data;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   133
);
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   134
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   135
fun map_data f =
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   136
  Data.map (fn Data {names, consts, bounds, fixes, binds, type_occs, maxidx, constraints} =>
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   137
    make_data (f (names, consts, bounds, fixes, binds, type_occs, maxidx, constraints)));
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   138
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   139
fun map_names f =
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   140
  map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, constraints) =>
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   141
    (f names, consts, bounds, fixes, binds, type_occs, maxidx, constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   142
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   143
fun map_consts f =
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   144
  map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, constraints) =>
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   145
    (names, f consts, bounds, fixes, binds, type_occs, maxidx, constraints));
55014
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   146
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   147
fun map_bounds f =
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   148
  map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, constraints) =>
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   149
    (names, consts, f bounds, fixes, binds, type_occs, maxidx, constraints));
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   150
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   151
fun map_fixes f =
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   152
  map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, constraints) =>
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   153
    (names, consts, bounds, f fixes, binds, type_occs, maxidx, constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   154
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   155
fun map_binds f =
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   156
  map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, constraints) =>
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   157
    (names, consts, bounds, fixes, f binds, type_occs, maxidx, constraints));
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   158
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   159
fun map_type_occs f =
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   160
  map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, constraints) =>
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   161
    (names, consts, bounds, fixes, binds, f type_occs, maxidx, constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   162
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   163
fun map_maxidx f =
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   164
  map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, constraints) =>
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   165
    (names, consts, bounds, fixes, binds, type_occs, f maxidx, constraints));
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   166
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   167
fun map_constraints f =
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   168
  map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, constraints) =>
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   169
    (names, consts, bounds, fixes, binds, type_occs, maxidx, f constraints));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   170
45650
wenzelm
parents: 45472
diff changeset
   171
fun rep_data ctxt = Data.get ctxt |> (fn Data rep => rep);
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   172
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   173
val names_of = #names o rep_data;
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   174
val fixes_of = #fixes o rep_data;
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 55948
diff changeset
   175
val fixes_space = Name_Space.space_of_table o fixes_of;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   176
val binds_of = #binds o rep_data;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   177
val type_occs_of = #type_occs o rep_data;
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   178
val maxidx_of = #maxidx o rep_data;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   179
val constraints_of = #constraints o rep_data;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   180
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   181
val is_declared = Name.is_declared o names_of;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   182
47021
f35f654f297d clarified Binding.name_of vs Name_Space.base_name vs Variable.check_name (see also 9bd8d4addd6e, 3305f573294e);
wenzelm
parents: 47005
diff changeset
   183
val check_name = Name_Space.base_name o tap Binding.check;
42357
3305f573294e tuned signature, disentangled dependencies;
wenzelm
parents: 40124
diff changeset
   184
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   185
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   186
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   187
(** declarations **)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   188
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   189
(* default sorts and types *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   190
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   191
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
   192
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   193
fun def_type ctxt pattern xi =
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   194
  let val {binds, constraints = (types, _), ...} = rep_data ctxt in
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   195
    (case Vartab.lookup types xi of
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   196
      NONE =>
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   197
        if pattern then NONE
39290
44e4d8dfd6bf load type_infer.ML later -- proper context for Type_Infer.infer_types;
wenzelm
parents: 38831
diff changeset
   198
        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
   199
    | some => some)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   200
  end;
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
val def_sort = Vartab.lookup o #2 o constraints_of;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   203
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   204
59646
48d400469bcb added declare_maxidx operations for Eisbach;
wenzelm
parents: 59645
diff changeset
   205
(* maxidx *)
48d400469bcb added declare_maxidx operations for Eisbach;
wenzelm
parents: 59645
diff changeset
   206
48d400469bcb added declare_maxidx operations for Eisbach;
wenzelm
parents: 59645
diff changeset
   207
val declare_maxidx = map_maxidx o Integer.max;
48d400469bcb added declare_maxidx operations for Eisbach;
wenzelm
parents: 59645
diff changeset
   208
48d400469bcb added declare_maxidx operations for Eisbach;
wenzelm
parents: 59645
diff changeset
   209
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   210
(* names *)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   211
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   212
fun declare_type_names t =
29279
7456a64bc4f6 Term.declare_typ_names, Term.declare_term_frees;
wenzelm
parents: 28965
diff changeset
   213
  map_names (fold_types (fold_atyps Term.declare_typ_names) t) #>
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   214
  map_maxidx (fold_types Term.maxidx_typ t);
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   215
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   216
fun declare_names t =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   217
  declare_type_names t #>
29279
7456a64bc4f6 Term.declare_typ_names, Term.declare_term_frees;
wenzelm
parents: 28965
diff changeset
   218
  map_names (fold_aterms Term.declare_term_frees t) #>
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   219
  map_maxidx (Term.maxidx_term t);
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   220
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   221
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   222
(* type occurrences *)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   223
24719
21d1cdab2d8c declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents: 24694
diff changeset
   224
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
   225
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   226
val decl_type_occs = fold_term_types
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   227
  (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
   228
    | _ => decl_type_occsT);
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   229
24719
21d1cdab2d8c declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents: 24694
diff changeset
   230
val declare_type_occsT = map_type_occs o fold_types decl_type_occsT;
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   231
val declare_type_occs = map_type_occs o decl_type_occs;
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   232
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   233
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   234
(* constraints *)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   235
49685
4341e4d86872 allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents: 49674
diff changeset
   236
fun constrain_tvar (xi, raw_S) =
49688
wenzelm
parents: 49685
diff changeset
   237
  let val S = #2 (Term_Position.decode_positionS raw_S)
49685
4341e4d86872 allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents: 49674
diff changeset
   238
  in if S = dummyS then Vartab.delete_safe xi else Vartab.update (xi, S) end;
21355
5c1b1ae737e1 declare_constraints: reset constraint on dummyS;
wenzelm
parents: 21287
diff changeset
   239
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   240
fun declare_constraints t = map_constraints (fn (types, sorts) =>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   241
  let
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   242
    val types' = fold_aterms
62955
2fd4378caca2 back to dummy constraints (amending dd2914250ca7): important for Syntax_Phases.get_free/is_declared;
wenzelm
parents: 62771
diff changeset
   243
      (fn Free (x, T) => Vartab.update ((x, ~1), T)
2fd4378caca2 back to dummy constraints (amending dd2914250ca7): important for Syntax_Phases.get_free/is_declared;
wenzelm
parents: 62771
diff changeset
   244
        | Var v => Vartab.update v
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   245
        | _ => I) t types;
45426
wenzelm
parents: 45396
diff changeset
   246
    val sorts' = (fold_types o fold_atyps)
21355
5c1b1ae737e1 declare_constraints: reset constraint on dummyS;
wenzelm
parents: 21287
diff changeset
   247
      (fn TFree (x, S) => constrain_tvar ((x, ~1), S)
5c1b1ae737e1 declare_constraints: reset constraint on dummyS;
wenzelm
parents: 21287
diff changeset
   248
        | TVar v => constrain_tvar v
45426
wenzelm
parents: 45396
diff changeset
   249
        | _ => I) t sorts;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   250
  in (types', sorts') end)
24719
21d1cdab2d8c declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents: 24694
diff changeset
   251
  #> declare_type_occsT t
22711
0b18739c3e81 removed obsolete redeclare_skolems;
wenzelm
parents: 22691
diff changeset
   252
  #> declare_type_names t;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   253
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   254
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   255
(* common declarations *)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   256
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   257
fun declare_internal t =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   258
  declare_names t #>
28625
d51a14105e53 maintain sort occurrences of declared terms;
wenzelm
parents: 27280
diff changeset
   259
  declare_type_occs t #>
61508
2c7e2ae6173d clarified modules;
wenzelm
parents: 60823
diff changeset
   260
  Thm.declare_term_sorts t;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   261
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   262
fun declare_term t =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   263
  declare_internal t #>
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   264
  declare_constraints t;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   265
27280
2a38802d3649 added declare_typ;
wenzelm
parents: 27119
diff changeset
   266
val declare_typ = declare_term o Logic.mk_type;
2a38802d3649 added declare_typ;
wenzelm
parents: 27119
diff changeset
   267
70843
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70733
diff changeset
   268
val declare_prf =
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70733
diff changeset
   269
  Proofterm.fold_proof_terms_types declare_internal (declare_internal o Logic.mk_type);
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   270
22691
290454649b8c Thm.fold_terms;
wenzelm
parents: 22671
diff changeset
   271
val declare_thm = Thm.fold_terms declare_internal;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   272
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   273
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   274
(* renaming term/type frees *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   275
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   276
fun variant_frees ctxt ts frees =
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   277
  let
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   278
    val names = names_of (fold declare_names ts ctxt);
43326
47cf4bc789aa simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents: 42495
diff changeset
   279
    val xs = fst (fold_map Name.variant (map #1 frees) names);
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   280
  in xs ~~ map snd frees end;
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   281
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   282
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   283
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   284
(** term bindings **)
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   285
60401
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   286
fun bind_term ((x, i), t) =
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   287
  let
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   288
    val u = Term.close_schematic_term t;
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   289
    val U = Term.fastype_of u;
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   290
  in declare_term u #> map_binds (Vartab.update ((x, i), (U, u))) end;
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   291
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   292
val unbind_term = map_binds o Vartab.delete_safe;
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   293
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   294
fun maybe_bind_term (xi, SOME t) = bind_term (xi, t)
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   295
  | maybe_bind_term (xi, NONE) = unbind_term xi;
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   296
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   297
fun expand_binds ctxt =
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   298
  let
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   299
    val binds = binds_of ctxt;
21799
a85e3bbc76fb tuned expand_binds;
wenzelm
parents: 21683
diff changeset
   300
    val get = fn Var (xi, _) => Vartab.lookup binds xi | _ => NONE;
a85e3bbc76fb tuned expand_binds;
wenzelm
parents: 21683
diff changeset
   301
  in Envir.beta_norm o Envir.expand_term get end;
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   302
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   304
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   305
(** consts **)
25316
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   306
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   307
val lookup_const = Symtab.lookup o #consts o rep_data;
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   308
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
   309
25325
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   310
val declare_fixed = map_consts o Symtab.delete_safe;
0659c05cc107 refined notion of consts within the local scope;
wenzelm
parents: 25316
diff changeset
   311
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
   312
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   313
17c183417f93 added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents: 25051
diff changeset
   314
55014
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   315
(** bounds **)
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   316
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   317
fun next_bound (a, T) ctxt =
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   318
  let
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   319
    val b = Name.bound (#1 (#bounds (rep_data ctxt)));
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   320
    val ctxt' = ctxt |> map_bounds (fn (next, bounds) => (next + 1, ((b, T), a) :: bounds));
55635
00e900057b38 tuned signature;
wenzelm
parents: 55014
diff changeset
   321
  in (Free (b, T), ctxt') end;
55014
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   322
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   323
fun revert_bounds ctxt t =
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   324
  (case #2 (#bounds (rep_data ctxt)) of
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   325
    [] => t
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   326
  | bounds =>
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   327
      let
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   328
        val names = Term.declare_term_names t (names_of ctxt);
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   329
        val xs = rev (#1 (fold_map Name.variant (rev (map #2 bounds)) names));
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   330
        fun subst ((b, T), _) x' = (Free (b, T), Syntax_Trans.mark_bound_abs (x', T));
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   331
      in Term.subst_atomic (map2 subst bounds xs) t end);
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   332
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   333
a93f496f6c30 general notion of auxiliary bounds within context;
wenzelm
parents: 54740
diff changeset
   334
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   335
(** fixes **)
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   336
59798
wenzelm
parents: 59796
diff changeset
   337
(* inner body mode *)
wenzelm
parents: 59796
diff changeset
   338
69575
f77cc54f6d47 clarified signature: more types;
wenzelm
parents: 67721
diff changeset
   339
val inner_body = Config.declare_bool ("inner_body", \<^here>) (K false);
69576
cfac69e7b962 tuned signature;
wenzelm
parents: 69575
diff changeset
   340
val is_body = Config.apply inner_body;
59798
wenzelm
parents: 59796
diff changeset
   341
val set_body = Config.put inner_body;
69576
cfac69e7b962 tuned signature;
wenzelm
parents: 69575
diff changeset
   342
val restore_body = set_body o is_body;
59798
wenzelm
parents: 59796
diff changeset
   343
wenzelm
parents: 59796
diff changeset
   344
59790
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   345
(* proper mode *)
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   346
69575
f77cc54f6d47 clarified signature: more types;
wenzelm
parents: 67721
diff changeset
   347
val proper_fixes = Config.declare_bool ("proper_fixes", \<^here>) (K true);
59790
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   348
val improper_fixes = Config.put proper_fixes false;
69576
cfac69e7b962 tuned signature;
wenzelm
parents: 69575
diff changeset
   349
val restore_proper_fixes = Config.put proper_fixes o Config.apply proper_fixes;
59790
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   350
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   351
fun is_improper ctxt x =
59884
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
   352
  (case Name_Space.lookup (fixes_of ctxt) x of
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
   353
    SOME (_, proper) => not proper
59790
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   354
  | NONE => false);
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   355
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   356
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   357
(* specialized name space *)
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   358
59883
12a89103cae6 tuned signature;
wenzelm
parents: 59846
diff changeset
   359
val is_fixed = Name_Space.defined o fixes_of;
59846
c7b7bca8592c tuned signature;
wenzelm
parents: 59828
diff changeset
   360
fun is_newly_fixed inner outer = is_fixed inner andf (not o is_fixed outer);
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   361
42493
01430341fc79 more informative markup for fixed variables (via name space entry);
wenzelm
parents: 42488
diff changeset
   362
val fixed_ord = Name_Space.entry_ord o fixes_space;
01430341fc79 more informative markup for fixed variables (via name space entry);
wenzelm
parents: 42488
diff changeset
   363
val intern_fixed = Name_Space.intern o fixes_space;
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   364
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   365
fun lookup_fixed ctxt x =
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   366
  let val x' = intern_fixed ctxt x
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   367
  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
   368
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   369
fun revert_fixed ctxt x =
59884
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
   370
  (case Name_Space.lookup (fixes_of ctxt) x of
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
   371
    SOME (x', _) => if intern_fixed ctxt x' = x then x' else x
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   372
  | NONE => x);
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   373
45472
2046f8e2ecd7 tuned markup -- prefer user-perspective;
wenzelm
parents: 45454
diff changeset
   374
fun markup_fixed ctxt x =
2046f8e2ecd7 tuned markup -- prefer user-perspective;
wenzelm
parents: 45454
diff changeset
   375
  Name_Space.markup (fixes_space ctxt) x
2046f8e2ecd7 tuned markup -- prefer user-perspective;
wenzelm
parents: 45454
diff changeset
   376
  |> Markup.name (revert_fixed ctxt x);
2046f8e2ecd7 tuned markup -- prefer user-perspective;
wenzelm
parents: 45454
diff changeset
   377
62987
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
   378
fun markup ctxt x =
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
   379
  if is_improper ctxt x then Markup.improper
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
   380
  else if Name.is_skolem x then Markup.skolem
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
   381
  else Markup.free;
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
   382
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
   383
val markup_entity_def = Name_Space.markup_def o fixes_space;
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62955
diff changeset
   384
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   385
fun dest_fixes ctxt =
59790
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   386
  Name_Space.fold_table (fn (x, (y, _)) => cons (y, x)) (fixes_of ctxt) []
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58668
diff changeset
   387
  |> sort (Name_Space.entry_ord (fixes_space ctxt) o apply2 #2);
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   388
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   389
42482
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   390
(* collect variables *)
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   391
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   392
fun add_free_names ctxt =
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   393
  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
   394
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   395
fun add_frees ctxt =
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   396
  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
   397
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   398
fun add_fixed_names ctxt =
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   399
  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
   400
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   401
fun add_fixed ctxt =
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   402
  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
   403
59846
c7b7bca8592c tuned signature;
wenzelm
parents: 59828
diff changeset
   404
fun add_newly_fixed ctxt' ctxt =
c7b7bca8592c tuned signature;
wenzelm
parents: 59828
diff changeset
   405
  fold_aterms (fn Free (x, T) => is_newly_fixed ctxt' ctxt x ? insert (op =) (x, T) | _ => I);
c7b7bca8592c tuned signature;
wenzelm
parents: 59828
diff changeset
   406
42482
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   407
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   408
(* declarations *)
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42360
diff changeset
   409
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   410
local
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   411
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   412
fun err_dups dups =
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   413
  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
   414
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   415
fun new_fixed ((x, x'), pos) ctxt =
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   416
  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
   417
  else
59790
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   418
    let
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   419
      val proper = Config.get ctxt proper_fixes;
61949
d9acd750c1f6 suppress irrelevant position reports;
wenzelm
parents: 61923
diff changeset
   420
      val context = Context.Proof ctxt
d9acd750c1f6 suppress irrelevant position reports;
wenzelm
parents: 61923
diff changeset
   421
        |> Name_Space.map_naming (K Name_Space.global_naming)
d9acd750c1f6 suppress irrelevant position reports;
wenzelm
parents: 61923
diff changeset
   422
        |> Context_Position.set_visible_generic false;
59790
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   423
    in
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46869
diff changeset
   424
      ctxt
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46869
diff changeset
   425
      |> map_fixes
59790
85c572d089fc implicit goal parameters are improper;
wenzelm
parents: 59646
diff changeset
   426
        (Name_Space.define context true (Binding.make (x', pos), (x, proper)) #> snd #>
58668
1891f17c6124 tuned signature;
wenzelm
parents: 56025
diff changeset
   427
          Name_Space.alias_table Name_Space.global_naming (Binding.make (x, pos)) x')
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46869
diff changeset
   428
      |> declare_fixed x
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46869
diff changeset
   429
      |> declare_constraints (Syntax.free x')
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46869
diff changeset
   430
  end;
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   431
71316
3fc2def62547 tuned signature;
wenzelm
parents: 70843
diff changeset
   432
fun new_fixes names' args =
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   433
  map_names (K names') #>
71316
3fc2def62547 tuned signature;
wenzelm
parents: 70843
diff changeset
   434
  fold new_fixed args #>
3fc2def62547 tuned signature;
wenzelm
parents: 70843
diff changeset
   435
  pair (map (#2 o #1) args);
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   436
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   437
in
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   438
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   439
fun add_fixes_binding bs ctxt =
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   440
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   441
    val _ =
55948
bb21b380f65d tuned signature;
wenzelm
parents: 55635
diff changeset
   442
      (case filter (Name.is_skolem o Binding.name_of) bs of
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   443
        [] => ()
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   444
      | 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
   445
    val _ =
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58668
diff changeset
   446
      (case duplicates (op = o apply2 Binding.name_of) bs of
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   447
        [] => ()
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   448
      | dups => err_dups dups);
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   449
42494
eef1a23c9077 tuned signature -- eliminated odd comment;
wenzelm
parents: 42493
diff changeset
   450
    val xs = map check_name bs;
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   451
    val names = names_of ctxt;
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   452
    val (xs', names') =
43326
47cf4bc789aa simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents: 42495
diff changeset
   453
      if is_body ctxt then fold_map Name.variant xs names |>> map Name.skolem
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   454
      else (xs, fold Name.declare xs names);
71316
3fc2def62547 tuned signature;
wenzelm
parents: 70843
diff changeset
   455
  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
   456
71317
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   457
fun variant_names ctxt raw_xs =
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   458
  let
20102
6676a17dfc88 separate names filed (covers fixes/defaults);
wenzelm
parents: 20084
diff changeset
   459
    val names = names_of ctxt;
55948
bb21b380f65d tuned signature;
wenzelm
parents: 55635
diff changeset
   460
    val xs = map (fn x => Name.clean x |> Name.is_internal x ? Name.internal) raw_xs;
43326
47cf4bc789aa simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents: 42495
diff changeset
   461
    val (xs', names') = fold_map Name.variant xs names |>> (is_body ctxt ? map Name.skolem);
71317
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   462
  in (names', xs ~~ xs') end;
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   463
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   464
fun variant_fixes xs ctxt =
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   465
  let val (names', vs) = variant_names ctxt xs;
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   466
  in ctxt |> new_fixes names' (map (rpair Position.none) vs) end;
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   467
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   468
fun bound_fixes xs ctxt =
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   469
  let
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   470
    val (names', vs) = variant_names ctxt (map #1 xs);
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   471
    val (ys, ctxt') = fold_map next_bound (map2 (fn (x', _) => fn (_, T) => (x', T)) vs xs) ctxt;
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   472
    val fixes = map2 (fn (x, _) => fn Free (y, _) => ((x, y), Position.none)) vs ys;
e58bc223f46c more robust bound_fixes: external name does appear in "fixes" name space and could clash with direct fixes (e.g. via Subgoal.FOCUS within a global context);
wenzelm
parents: 71316
diff changeset
   473
  in ctxt' |> new_fixes names' fixes end;
20084
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   474
aa320957f00c maintain Name.context for fixes/defaults;
wenzelm
parents: 20003
diff changeset
   475
end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   476
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   477
val add_fixes = add_fixes_binding o map Binding.name;
20251
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   478
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   479
fun add_fixes_direct xs ctxt = ctxt
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   480
  |> set_body false
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   481
  |> (snd o add_fixes xs)
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   482
  |> restore_body ctxt;
6379135f21c2 added add_fixes_direct;
wenzelm
parents: 20240
diff changeset
   483
70733
ce1afe0f3071 clarified modules;
wenzelm
parents: 70586
diff changeset
   484
fun add_fixes_implicit t ctxt = ctxt
ce1afe0f3071 clarified modules;
wenzelm
parents: 70586
diff changeset
   485
  |> not (is_body ctxt) ? add_fixes_direct (rev (add_free_names ctxt t []));
ce1afe0f3071 clarified modules;
wenzelm
parents: 70586
diff changeset
   486
59796
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   487
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   488
(* dummy patterns *)
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   489
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   490
fun fix_dummy_patterns (Const ("Pure.dummy_pattern", T)) ctxt =
61923
a10cc7fb1841 clarified context policy to allow multiple dummies;
wenzelm
parents: 61508
diff changeset
   491
      let val ([x], ctxt') = ctxt |> set_body true |> add_fixes [Name.uu_] ||> restore_body ctxt
59796
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   492
      in (Free (x, T), ctxt') end
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   493
  | fix_dummy_patterns (Abs (x, T, b)) ctxt =
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   494
      let val (b', ctxt') = fix_dummy_patterns b ctxt
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   495
      in (Abs (x, T, b'), ctxt') end
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   496
  | fix_dummy_patterns (t $ u) ctxt =
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   497
      let
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   498
        val (t', ctxt') = fix_dummy_patterns t ctxt;
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   499
        val (u', ctxt'') = fix_dummy_patterns u ctxt';
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   500
      in (t' $ u', ctxt'') end
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   501
  | fix_dummy_patterns a ctxt = (a, ctxt);
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   502
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   503
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   504
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   505
(** 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
   506
60823
b41478500473 clarified Variable.gen_all;
wenzelm
parents: 60822
diff changeset
   507
fun gen_all ctxt th =
b41478500473 clarified Variable.gen_all;
wenzelm
parents: 60822
diff changeset
   508
  let
b41478500473 clarified Variable.gen_all;
wenzelm
parents: 60822
diff changeset
   509
    val i = Thm.maxidx_thm th (maxidx_of ctxt) + 1;
b41478500473 clarified Variable.gen_all;
wenzelm
parents: 60822
diff changeset
   510
    fun gen (x, T) = Thm.forall_elim (Thm.cterm_of ctxt (Var ((x, i), T)));
b41478500473 clarified Variable.gen_all;
wenzelm
parents: 60822
diff changeset
   511
  in fold gen (Drule.outer_params (Thm.prop_of th)) th end;
60822
4f58f3662e7d more explicit context;
wenzelm
parents: 60805
diff changeset
   512
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   513
fun export_inst inner outer =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   514
  let
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   515
    val declared_outer = is_declared outer;
59846
c7b7bca8592c tuned signature;
wenzelm
parents: 59828
diff changeset
   516
    val still_fixed = not o is_newly_fixed inner outer;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   517
42488
4638622bcaa1 reorganized fixes as specialized (global) name space;
wenzelm
parents: 42482
diff changeset
   518
    val gen_fixes =
74201
wenzelm
parents: 74200
diff changeset
   519
      Name_Space.fold_table (fn (y, _) => not (is_fixed outer y) ? Symtab.insert_set y)
wenzelm
parents: 74200
diff changeset
   520
        (fixes_of inner) Symtab.empty;
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   521
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   522
    val type_occs_inner = type_occs_of inner;
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   523
    fun gen_fixesT ts =
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   524
      Symtab.fold (fn (a, xs) =>
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   525
        if declared_outer a orelse exists still_fixed xs
74201
wenzelm
parents: 74200
diff changeset
   526
        then I else Symtab.insert_set a) (fold decl_type_occs ts type_occs_inner) Symtab.empty;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   527
  in (gen_fixesT, gen_fixes) end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   528
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   529
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
   530
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   531
fun exportT_terms inner outer =
59645
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   532
  let
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   533
    val mk_tfrees = exportT_inst inner outer;
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   534
    val maxidx = maxidx_of outer;
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   535
  in
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   536
    fn ts => ts |> map
74201
wenzelm
parents: 74200
diff changeset
   537
      (Term_Subst.generalize (mk_tfrees ts, Symtab.empty)
59645
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   538
        (fold (Term.fold_types Term.maxidx_typ) ts maxidx + 1))
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   539
  end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   540
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   541
fun export_terms inner outer =
59645
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   542
  let
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   543
    val (mk_tfrees, tfrees) = export_inst inner outer;
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   544
    val maxidx = maxidx_of outer;
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   545
  in
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   546
    fn ts => ts |> map
74201
wenzelm
parents: 74200
diff changeset
   547
      (Term_Subst.generalize (mk_tfrees ts, tfrees)
59645
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   548
        (fold Term.maxidx_term ts maxidx + 1))
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   549
  end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   550
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   551
fun export_prf inner outer prf =
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   552
  let
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   553
    val (mk_tfrees, frees) = export_inst (declare_prf prf inner) outer;
74201
wenzelm
parents: 74200
diff changeset
   554
    val tfrees = mk_tfrees [];
59645
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   555
    val maxidx = maxidx_of outer;
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   556
    val idx = Proofterm.maxidx_proof prf maxidx + 1;
74201
wenzelm
parents: 74200
diff changeset
   557
    val gen_term = Term_Subst.generalize_same (tfrees, frees) idx;
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36610
diff changeset
   558
    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
   559
  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
   560
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   561
59645
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   562
fun gen_export (mk_tfrees, frees) maxidx ths =
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   563
  let
22671
3c62305fbee6 tuned signature;
wenzelm
parents: 22601
diff changeset
   564
    val tfrees = mk_tfrees (map Thm.full_prop_of ths);
59645
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   565
    val idx = fold Thm.maxidx_thm ths maxidx + 1;
74201
wenzelm
parents: 74200
diff changeset
   566
  in map (Thm.generalize (tfrees, frees) idx) ths end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   567
74201
wenzelm
parents: 74200
diff changeset
   568
fun exportT inner outer = gen_export (exportT_inst inner outer, Symtab.empty) (maxidx_of outer);
59645
f89464e9ffa0 clarified Variable.export: observe maxidx of target context;
wenzelm
parents: 59623
diff changeset
   569
fun export inner outer = gen_export (export_inst inner outer) (maxidx_of outer);
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   570
21522
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
   571
fun export_morphism inner outer =
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
   572
  let
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
   573
    val fact = export inner outer;
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
   574
    val term = singleton (export_terms inner outer);
bd641d927437 added export_morphism;
wenzelm
parents: 21369
diff changeset
   575
    val typ = Logic.type_map term;
54740
91f54d386680 maintain morphism names for diagnostic purposes;
wenzelm
parents: 50201
diff changeset
   576
  in
70311
e49bf4ebf330 more structural integrity;
wenzelm
parents: 70308
diff changeset
   577
    Morphism.transfer_morphism' inner $>
e49bf4ebf330 more structural integrity;
wenzelm
parents: 70308
diff changeset
   578
    Morphism.transfer_morphism' outer $>
54740
91f54d386680 maintain morphism names for diagnostic purposes;
wenzelm
parents: 50201
diff changeset
   579
    Morphism.morphism "Variable.export" {binding = [], typ = [typ], term = [term], fact = [fact]}
91f54d386680 maintain morphism names for diagnostic purposes;
wenzelm
parents: 50201
diff changeset
   580
  end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   581
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   582
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   583
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   584
(** import -- fix schematic type/term variables **)
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   585
59796
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   586
fun invent_types Ss ctxt =
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   587
  let
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   588
    val tfrees = Name.invent (names_of ctxt) Name.aT (length Ss) ~~ Ss;
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   589
    val ctxt' = fold (declare_constraints o Logic.mk_type o TFree) tfrees ctxt;
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   590
  in (tfrees, ctxt') end;
f05ef8c62e4f admit dummy patterns in instantiations;
wenzelm
parents: 59790
diff changeset
   591
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   592
fun importT_inst ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   593
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   594
    val tvars = rev (fold Term.add_tvars ts []);
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   595
    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
   596
  in (tvars ~~ map TFree tfrees, ctxt') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   597
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   598
fun import_inst is_open ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   599
  let
26714
4773b832f1b1 variant_fixes: preserve internal state, mark skolem only for body mode;
wenzelm
parents: 25573
diff changeset
   600
    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
   601
    val (instT, ctxt') = importT_inst ts ctxt;
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   602
    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
   603
    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
   604
    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
   605
  in ((instT, inst), ctxt'') end;
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   606
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   607
fun importT_terms ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   608
  let val (instT, ctxt') = importT_inst ts ctxt
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   609
  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
   610
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   611
fun import_terms is_open ts ctxt =
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   612
  let val (inst, ctxt') = import_inst is_open ts ctxt
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   613
  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
   614
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30756
diff changeset
   615
fun importT ths ctxt =
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   616
  let
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   617
    val (instT, ctxt') = importT_inst (map Thm.full_prop_of ths) ctxt;
60805
4cc49ead6e75 tuned signature;
wenzelm
parents: 60707
diff changeset
   618
    val instT' = map (apsnd (Thm.ctyp_of ctxt')) instT;
4cc49ead6e75 tuned signature;
wenzelm
parents: 60707
diff changeset
   619
    val ths' = map (Thm.instantiate (instT', [])) ths;
32280
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
   620
  in ((instT', ths'), ctxt') end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   621
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   622
fun import_prf is_open prf ctxt =
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   623
  let
70843
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70733
diff changeset
   624
    val ts = rev (Proofterm.fold_proof_terms_types cons (cons o Logic.mk_type) prf []);
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   625
    val (insts, ctxt') = import_inst is_open ts ctxt;
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   626
  in (Proofterm.instantiate insts prf, ctxt') end;
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   627
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30756
diff changeset
   628
fun import is_open ths ctxt =
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   629
  let
60805
4cc49ead6e75 tuned signature;
wenzelm
parents: 60707
diff changeset
   630
    val ((instT, inst), ctxt') = import_inst is_open (map Thm.full_prop_of ths) ctxt;
4cc49ead6e75 tuned signature;
wenzelm
parents: 60707
diff changeset
   631
    val insts' =
4cc49ead6e75 tuned signature;
wenzelm
parents: 60707
diff changeset
   632
     (map (apsnd (Thm.ctyp_of ctxt')) instT,
4cc49ead6e75 tuned signature;
wenzelm
parents: 60707
diff changeset
   633
      map (apsnd (Thm.cterm_of ctxt')) inst);
32280
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
   634
    val ths' = map (Thm.instantiate insts') ths;
4fb3f426052a Variable.importT/import: return full instantiations, tuned;
wenzelm
parents: 32199
diff changeset
   635
  in ((insts', ths'), ctxt') end;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   636
70304
1514efa1e57a tuned signature;
wenzelm
parents: 69576
diff changeset
   637
fun import_vars ctxt th =
1514efa1e57a tuned signature;
wenzelm
parents: 69576
diff changeset
   638
  let val ((_, [th']), _) = ctxt |> set_body false |> import true [th];
1514efa1e57a tuned signature;
wenzelm
parents: 69576
diff changeset
   639
  in th' end;
1514efa1e57a tuned signature;
wenzelm
parents: 69576
diff changeset
   640
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   641
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   642
(* import/export *)
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   643
21287
a713ae348e8a tuned Variable.trade;
wenzelm
parents: 20797
diff changeset
   644
fun gen_trade imp exp f ctxt ths =
20220
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
   645
  let val ((_, ths'), ctxt') = imp ths ctxt
21287
a713ae348e8a tuned Variable.trade;
wenzelm
parents: 20797
diff changeset
   646
  in exp ctxt' ctxt (f ctxt' ths') end;
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   647
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30756
diff changeset
   648
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
   649
val trade = gen_trade (import true) export;
19926
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   650
feb4d150cfd8 added declare_thm, thm_context;
wenzelm
parents: 19911
diff changeset
   651
67721
5348bea4accd eliminated ASCII syntax from Pure bootstrap;
wenzelm
parents: 64556
diff changeset
   652
(* focus on outermost parameters: \<And>x y z. B *)
42495
1af81b70cf09 clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents: 42494
diff changeset
   653
69575
f77cc54f6d47 clarified signature: more types;
wenzelm
parents: 67721
diff changeset
   654
val bound_focus = Config.declare_bool ("bound_focus", \<^here>) (K false);
69576
cfac69e7b962 tuned signature;
wenzelm
parents: 69575
diff changeset
   655
val is_bound_focus = Config.apply bound_focus;
60707
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
   656
val set_bound_focus = Config.put bound_focus;
69576
cfac69e7b962 tuned signature;
wenzelm
parents: 69575
diff changeset
   657
val restore_bound_focus = set_bound_focus o is_bound_focus;
60707
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
   658
60695
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
   659
fun focus_params bindings t ctxt =
42495
1af81b70cf09 clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents: 42494
diff changeset
   660
  let
60707
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
   661
    val ps = Term.variant_frees t (Term.strip_all_vars t);  (*as they are printed :-*)
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
   662
    val (xs, Ts) = split_list ps;
60695
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
   663
    val (xs', ctxt') =
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
   664
      (case bindings of
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
   665
        SOME bs => ctxt |> set_body true |> add_fixes_binding bs ||> restore_body ctxt
60707
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
   666
      | NONE => if is_bound_focus ctxt then bound_fixes ps ctxt else variant_fixes xs ctxt);
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
   667
    val ps' = xs' ~~ Ts;
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
   668
    val ctxt'' = ctxt' |> fold (declare_constraints o Free) ps';
e96b7be56d44 SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents: 60695
diff changeset
   669
  in ((xs, ps'), ctxt'') end;
42495
1af81b70cf09 clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents: 42494
diff changeset
   670
60695
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
   671
fun focus bindings t ctxt =
42495
1af81b70cf09 clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents: 42494
diff changeset
   672
  let
60695
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
   673
    val ((xs, ps), ctxt') = focus_params bindings t ctxt;
42495
1af81b70cf09 clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents: 42494
diff changeset
   674
    val t' = Term.subst_bounds (rev (map Free ps), Term.strip_all_body t);
1af81b70cf09 clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents: 42494
diff changeset
   675
  in (((xs ~~ ps), t'), ctxt') end;
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   676
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   677
fun forall_elim_prop t prop =
46497
89ccf66aa73d renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in conformance with similar operations in structure Term and Logic;
wenzelm
parents: 45666
diff changeset
   678
  Thm.beta_conversion false (Thm.apply (Thm.dest_arg prop) t)
20579
4dc799edef89 Thm.dest_arg;
wenzelm
parents: 20509
diff changeset
   679
  |> Thm.cprop_of |> Thm.dest_arg;
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   680
60695
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
   681
fun focus_cterm bindings goal ctxt =
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   682
  let
60695
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
   683
    val ((xs, ps), ctxt') = focus_params bindings (Thm.term_of goal) ctxt;
59623
920889b0788e clarified context;
wenzelm
parents: 59621
diff changeset
   684
    val ps' = map (Thm.cterm_of ctxt' o Free) ps;
20220
5dc68e9ecd9a import(T): result includes fixed types/terms;
wenzelm
parents: 20198
diff changeset
   685
    val goal' = fold forall_elim_prop ps' goal;
42495
1af81b70cf09 clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents: 42494
diff changeset
   686
  in ((xs ~~ ps', goal'), ctxt') end;
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   687
60695
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
   688
fun focus_subgoal bindings i st =
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   689
  let
22691
290454649b8c Thm.fold_terms;
wenzelm
parents: 22671
diff changeset
   690
    val all_vars = Thm.fold_terms Term.add_vars st [];
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   691
  in
60401
16cf5090d3a6 clarified term bindings;
wenzelm
parents: 60367
diff changeset
   692
    fold (unbind_term o #1) all_vars #>
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   693
    fold (declare_constraints o Var) all_vars #>
60695
757549b4bbe6 Variable.focus etc.: optional bindings provided by user;
wenzelm
parents: 60642
diff changeset
   694
    focus_cterm bindings (Thm.cprem_of st i)
20303
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   695
  end;
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   696
e25d5a2a50bc normalized Proof.context/method type aliases;
wenzelm
parents: 20262
diff changeset
   697
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   698
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   699
(** implicit polymorphism **)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   700
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   701
(* warn_extra_tfrees *)
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   702
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   703
fun warn_extra_tfrees ctxt1 ctxt2 =
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   704
  let
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   705
    fun occs_typ a = Term.exists_subtype (fn TFree (b, _) => a = b | _ => false);
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   706
    fun occs_free a x =
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   707
      (case def_type ctxt1 false (x, ~1) of
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   708
        SOME T => if occs_typ a T then I else cons (a, x)
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   709
      | NONE => cons (a, x));
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   710
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   711
    val occs1 = type_occs_of ctxt1;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   712
    val occs2 = type_occs_of ctxt2;
19911
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   713
    val extras = Symtab.fold (fn (a, xs) =>
300bc6ce970d major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents: 19899
diff changeset
   714
      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
   715
    val tfrees = map #1 extras |> sort_distinct string_ord;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   716
    val frees = map #2 extras |> sort_distinct string_ord;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   717
  in
38831
4933a3dfd745 more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents: 37145
diff changeset
   718
    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
   719
    else warning ("Introduced fixed type variable(s): " ^ commas tfrees ^ " in " ^
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   720
      space_implode " or " (map quote frees))
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   721
  end;
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   722
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   723
20149
54d4ea7927be added newly_fixed, focus;
wenzelm
parents: 20123
diff changeset
   724
(* polymorphic terms *)
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   725
24694
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   726
fun polymorphic_types ctxt ts =
20003
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   727
  let
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   728
    val ctxt' = fold declare_term ts ctxt;
20162
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   729
    val occs = type_occs_of ctxt;
d4bcb27686f9 reorganize declarations (more efficient);
wenzelm
parents: 20149
diff changeset
   730
    val occs' = type_occs_of ctxt';
74200
17090e27aae9 more scalable data structure (but: rarely used with > 5 arguments);
wenzelm
parents: 71317
diff changeset
   731
    val types =
17090e27aae9 more scalable data structure (but: rarely used with > 5 arguments);
wenzelm
parents: 71317
diff changeset
   732
      Symtab.fold (fn (a, _) =>
17090e27aae9 more scalable data structure (but: rarely used with > 5 arguments);
wenzelm
parents: 71317
diff changeset
   733
        if Symtab.defined occs a then I else Symtab.insert_set a) occs' Symtab.empty;
24765
3128ccd9121f maintain maxidx (analogous to name context);
wenzelm
parents: 24719
diff changeset
   734
    val idx = maxidx_of ctxt' + 1;
24694
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   735
    val Ts' = (fold o fold_types o fold_atyps)
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   736
      (fn T as TFree _ =>
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31794
diff changeset
   737
          (case Term_Subst.generalizeT types idx T of TVar v => insert (op =) v | _ => I)
24694
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   738
        | _ => I) ts [];
74200
17090e27aae9 more scalable data structure (but: rarely used with > 5 arguments);
wenzelm
parents: 71317
diff changeset
   739
    val ts' = map (Term_Subst.generalize (types, Symtab.empty) idx) ts;
24694
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   740
  in (rev Ts', ts') end;
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   741
54f06f7feefa added polymorphic_types;
wenzelm
parents: 22846
diff changeset
   742
fun polymorphic ctxt ts = snd (polymorphic_types ctxt ts);
20003
aac2c0d29751 polymorphic: always generalize wrt. used_types;
wenzelm
parents: 19926
diff changeset
   743
19899
b7385ca02d79 Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff changeset
   744
end;