| author | haftmann | 
| Mon, 23 Mar 2015 19:05:14 +0100 | |
| changeset 59816 | 034b13f4efae | 
| parent 59798 | 45c89526208f | 
| child 59828 | 0e9baaf0e0bb | 
| permissions | -rw-r--r-- | 
| 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 | 9 | val names_of: Proof.context -> Name.context | 
| 10 | val binds_of: Proof.context -> (typ * term) Vartab.table | |
| 24765 | 11 | val maxidx_of: Proof.context -> int | 
| 28625 | 12 | val sorts_of: Proof.context -> sort list | 
| 20303 | 13 | val constraints_of: Proof.context -> typ Vartab.table * sort Vartab.table | 
| 14 | val is_declared: Proof.context -> string -> bool | |
| 42494 | 15 | val check_name: binding -> string | 
| 20303 | 16 | val default_type: Proof.context -> string -> typ option | 
| 17 | val def_type: Proof.context -> bool -> indexname -> typ option | |
| 18 | val def_sort: Proof.context -> indexname -> sort option | |
| 59646 | 19 | val declare_maxidx: int -> Proof.context -> Proof.context | 
| 27280 | 20 | val declare_names: term -> Proof.context -> Proof.context | 
| 20303 | 21 | val declare_constraints: term -> Proof.context -> Proof.context | 
| 22 | val declare_term: term -> Proof.context -> Proof.context | |
| 27280 | 23 | val declare_typ: typ -> Proof.context -> Proof.context | 
| 20303 | 24 | val declare_prf: Proofterm.proof -> Proof.context -> Proof.context | 
| 25 | val declare_thm: thm -> Proof.context -> Proof.context | |
| 26 | val variant_frees: Proof.context -> term list -> (string * 'a) list -> (string * 'a) list | |
| 30756 | 27 | val bind_term: indexname * term option -> Proof.context -> Proof.context | 
| 20303 | 28 | val expand_binds: Proof.context -> term -> term | 
| 25325 | 29 | val lookup_const: Proof.context -> string -> string option | 
| 25316 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 30 | val is_const: Proof.context -> string -> bool | 
| 25325 | 31 | val declare_const: string * string -> Proof.context -> Proof.context | 
| 55635 | 32 | val next_bound: string * typ -> Proof.context -> term * Proof.context | 
| 55014 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 33 | val revert_bounds: Proof.context -> term -> term | 
| 59798 | 34 | val is_body: Proof.context -> bool | 
| 35 | val set_body: bool -> Proof.context -> Proof.context | |
| 36 | val restore_body: Proof.context -> Proof.context -> Proof.context | |
| 59790 | 37 | val improper_fixes: Proof.context -> Proof.context | 
| 38 | val restore_proper_fixes: Proof.context -> Proof.context -> Proof.context | |
| 39 | val is_improper: Proof.context -> string -> bool | |
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 40 | val is_fixed: Proof.context -> string -> bool | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 41 | val newly_fixed: Proof.context -> Proof.context -> string -> bool | 
| 42493 
01430341fc79
more informative markup for fixed variables (via name space entry);
 wenzelm parents: 
42488diff
changeset | 42 | val fixed_ord: Proof.context -> string * string -> order | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 43 | val intern_fixed: Proof.context -> string -> string | 
| 42493 
01430341fc79
more informative markup for fixed variables (via name space entry);
 wenzelm parents: 
42488diff
changeset | 44 | val markup_fixed: Proof.context -> string -> Markup.T | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 45 | val lookup_fixed: Proof.context -> string -> string option | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 46 | val revert_fixed: Proof.context -> string -> string | 
| 42482 | 47 | val add_fixed_names: Proof.context -> term -> string list -> string list | 
| 48 | val add_fixed: Proof.context -> term -> (string * typ) list -> (string * typ) list | |
| 49 | val add_free_names: Proof.context -> term -> string list -> string list | |
| 50 | val add_frees: Proof.context -> term -> (string * typ) list -> (string * typ) list | |
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 51 | val add_fixes_binding: binding list -> Proof.context -> string list * Proof.context | 
| 20303 | 52 | val add_fixes: string list -> Proof.context -> string list * Proof.context | 
| 53 | val add_fixes_direct: string list -> Proof.context -> Proof.context | |
| 21369 | 54 | val auto_fixes: term -> Proof.context -> Proof.context | 
| 59796 | 55 | val fix_dummy_patterns: term -> Proof.context -> term * Proof.context | 
| 20797 
c1f0bc7e7d80
renamed Variable.invent_fixes to Variable.variant_fixes;
 wenzelm parents: 
20579diff
changeset | 56 | val variant_fixes: string list -> Proof.context -> string list * Proof.context | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 57 | val dest_fixes: Proof.context -> (string * string) list | 
| 20303 | 58 | val export_terms: Proof.context -> Proof.context -> term list -> term list | 
| 59 | val exportT_terms: Proof.context -> Proof.context -> term list -> term list | |
| 60 | val exportT: Proof.context -> Proof.context -> thm list -> thm list | |
| 61 | val export_prf: Proof.context -> Proof.context -> Proofterm.proof -> Proofterm.proof | |
| 62 | val export: Proof.context -> Proof.context -> thm list -> thm list | |
| 21522 | 63 | val export_morphism: Proof.context -> Proof.context -> morphism | 
| 59796 | 64 | val invent_types: sort list -> Proof.context -> (string * sort) list * Proof.context | 
| 20303 | 65 | val importT_inst: term list -> Proof.context -> ((indexname * sort) * typ) list * Proof.context | 
| 66 | val import_inst: bool -> term list -> Proof.context -> | |
| 67 | (((indexname * sort) * typ) list * ((indexname * typ) * term) list) * Proof.context | |
| 68 | val importT_terms: term list -> Proof.context -> term list * Proof.context | |
| 69 | val import_terms: bool -> term list -> Proof.context -> term list * Proof.context | |
| 32280 
4fb3f426052a
Variable.importT/import: return full instantiations, tuned;
 wenzelm parents: 
32199diff
changeset | 70 | val importT: thm list -> Proof.context -> ((ctyp * ctyp) list * thm list) * Proof.context | 
| 20303 | 71 | 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: 
30756diff
changeset | 72 | val import: bool -> thm list -> Proof.context -> | 
| 32280 
4fb3f426052a
Variable.importT/import: return full instantiations, tuned;
 wenzelm parents: 
32199diff
changeset | 73 | (((ctyp * ctyp) list * (cterm * cterm) list) * thm list) * Proof.context | 
| 21287 | 74 | val tradeT: (Proof.context -> thm list -> thm list) -> Proof.context -> thm list -> thm list | 
| 75 | val trade: (Proof.context -> thm list -> thm list) -> Proof.context -> thm list -> thm list | |
| 42495 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 76 | val focus: term -> Proof.context -> ((string * (string * typ)) list * term) * Proof.context | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 77 | val focus_cterm: cterm -> Proof.context -> ((string * cterm) list * cterm) * Proof.context | 
| 32199 | 78 | val focus_subgoal: int -> thm -> Proof.context -> ((string * cterm) list * cterm) * Proof.context | 
| 20303 | 79 | val warn_extra_tfrees: Proof.context -> Proof.context -> unit | 
| 24694 | 80 | val polymorphic_types: Proof.context -> term list -> (indexname * sort) list * term list | 
| 20303 | 81 | val polymorphic: Proof.context -> term list -> term list | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 82 | end; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 83 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 84 | structure Variable: VARIABLE = | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 85 | struct | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 86 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 87 | (** local context data **) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 88 | |
| 59790 | 89 | 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: 
49688diff
changeset | 90 | val empty_fixes: fixes = Name_Space.empty_table Markup.fixedN; | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 91 | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 92 | datatype data = Data of | 
| 59798 | 93 |  {names: Name.context,                  (*type/term variable names*)
 | 
| 25325 | 94 | consts: string Symtab.table, (*consts within the local scope*) | 
| 55014 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 95 | bounds: int * ((string * typ) * string) list, (*next index, internal name, type, external name*) | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 96 | fixes: fixes, (*term fixes -- global name space, intern ~> extern*) | 
| 20102 | 97 | binds: (typ * term) Vartab.table, (*term bindings*) | 
| 20162 | 98 | type_occs: string list Symtab.table, (*type variables -- possibly within term variables*) | 
| 24765 | 99 | maxidx: int, (*maximum var index*) | 
| 40124 | 100 | sorts: sort Ord_List.T, (*declared sort occurrences*) | 
| 20162 | 101 | constraints: | 
| 20102 | 102 | typ Vartab.table * (*type constraints*) | 
| 20162 | 103 | sort Vartab.table}; (*default sorts*) | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 104 | |
| 59798 | 105 | fun make_data (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints) = | 
| 106 |   Data {names = names, consts = consts, bounds = bounds, fixes = fixes, binds = binds,
 | |
| 107 | type_occs = type_occs, maxidx = maxidx, sorts = sorts, constraints = constraints}; | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 108 | |
| 59150 | 109 | val empty_data = | 
| 59798 | 110 | make_data (Name.context, Symtab.empty, (0, []), empty_fixes, Vartab.empty, | 
| 59150 | 111 | Symtab.empty, ~1, [], (Vartab.empty, Vartab.empty)); | 
| 112 | ||
| 33519 | 113 | structure Data = Proof_Data | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 114 | ( | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 115 | type T = data; | 
| 59150 | 116 | fun init _ = empty_data; | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 117 | ); | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 118 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 119 | fun map_data f = | 
| 59798 | 120 |   Data.map (fn Data {names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints} =>
 | 
| 121 | make_data (f (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints))); | |
| 25316 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 122 | |
| 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 123 | fun map_names f = | 
| 59798 | 124 | map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints) => | 
| 125 | (f names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 126 | |
| 25325 | 127 | fun map_consts f = | 
| 59798 | 128 | map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints) => | 
| 129 | (names, f consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints)); | |
| 55014 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 130 | |
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 131 | fun map_bounds f = | 
| 59798 | 132 | map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints) => | 
| 133 | (names, consts, f bounds, fixes, binds, type_occs, maxidx, sorts, constraints)); | |
| 20162 | 134 | |
| 25316 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 135 | fun map_fixes f = | 
| 59798 | 136 | map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints) => | 
| 137 | (names, consts, bounds, f fixes, binds, type_occs, maxidx, sorts, constraints)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 138 | |
| 25316 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 139 | fun map_binds f = | 
| 59798 | 140 | map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints) => | 
| 141 | (names, consts, bounds, fixes, f binds, type_occs, maxidx, sorts, constraints)); | |
| 24765 | 142 | |
| 25316 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 143 | fun map_type_occs f = | 
| 59798 | 144 | map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints) => | 
| 145 | (names, consts, bounds, fixes, binds, f type_occs, maxidx, sorts, constraints)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 146 | |
| 25316 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 147 | fun map_maxidx f = | 
| 59798 | 148 | map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints) => | 
| 149 | (names, consts, bounds, fixes, binds, type_occs, f maxidx, sorts, constraints)); | |
| 28625 | 150 | |
| 151 | fun map_sorts f = | |
| 59798 | 152 | map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints) => | 
| 153 | (names, consts, bounds, fixes, binds, type_occs, maxidx, f sorts, constraints)); | |
| 20102 | 154 | |
| 25316 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 155 | fun map_constraints f = | 
| 59798 | 156 | map_data (fn (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, constraints) => | 
| 157 | (names, consts, bounds, fixes, binds, type_occs, maxidx, sorts, f constraints)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 158 | |
| 45650 | 159 | 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 | 160 | |
| 20102 | 161 | val names_of = #names o rep_data; | 
| 162 | val fixes_of = #fixes o rep_data; | |
| 56025 | 163 | 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 | 164 | val binds_of = #binds o rep_data; | 
| 20162 | 165 | val type_occs_of = #type_occs o rep_data; | 
| 24765 | 166 | val maxidx_of = #maxidx o rep_data; | 
| 28625 | 167 | val sorts_of = #sorts o rep_data; | 
| 20162 | 168 | val constraints_of = #constraints o rep_data; | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 169 | |
| 20162 | 170 | val is_declared = Name.is_declared o names_of; | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 171 | |
| 47021 
f35f654f297d
clarified Binding.name_of vs Name_Space.base_name vs Variable.check_name (see also 9bd8d4addd6e, 3305f573294e);
 wenzelm parents: 
47005diff
changeset | 172 | val check_name = Name_Space.base_name o tap Binding.check; | 
| 42357 | 173 | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 174 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 175 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 176 | (** declarations **) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 177 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 178 | (* default sorts and types *) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 179 | |
| 20162 | 180 | 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 | 181 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 182 | fun def_type ctxt pattern xi = | 
| 20162 | 183 |   let val {binds, constraints = (types, _), ...} = rep_data ctxt in
 | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 184 | (case Vartab.lookup types xi of | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 185 | NONE => | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 186 | if pattern then NONE | 
| 39290 
44e4d8dfd6bf
load type_infer.ML later -- proper context for Type_Infer.infer_types;
 wenzelm parents: 
38831diff
changeset | 187 | 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 | 188 | | some => some) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 189 | end; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 190 | |
| 20162 | 191 | val def_sort = Vartab.lookup o #2 o constraints_of; | 
| 192 | ||
| 193 | ||
| 59646 | 194 | (* maxidx *) | 
| 195 | ||
| 196 | val declare_maxidx = map_maxidx o Integer.max; | |
| 197 | ||
| 198 | ||
| 20162 | 199 | (* names *) | 
| 200 | ||
| 24765 | 201 | fun declare_type_names t = | 
| 29279 | 202 | map_names (fold_types (fold_atyps Term.declare_typ_names) t) #> | 
| 24765 | 203 | map_maxidx (fold_types Term.maxidx_typ t); | 
| 20162 | 204 | |
| 205 | fun declare_names t = | |
| 206 | declare_type_names t #> | |
| 29279 | 207 | map_names (fold_aterms Term.declare_term_frees t) #> | 
| 24765 | 208 | map_maxidx (Term.maxidx_term t); | 
| 20162 | 209 | |
| 210 | ||
| 211 | (* type occurrences *) | |
| 212 | ||
| 24719 
21d1cdab2d8c
declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
 wenzelm parents: 
24694diff
changeset | 213 | 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: 
24694diff
changeset | 214 | |
| 22671 | 215 | val decl_type_occs = fold_term_types | 
| 20162 | 216 | (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: 
24694diff
changeset | 217 | | _ => decl_type_occsT); | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 218 | |
| 24719 
21d1cdab2d8c
declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
 wenzelm parents: 
24694diff
changeset | 219 | val declare_type_occsT = map_type_occs o fold_types decl_type_occsT; | 
| 22671 | 220 | val declare_type_occs = map_type_occs o decl_type_occs; | 
| 221 | ||
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 222 | |
| 20162 | 223 | (* constraints *) | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 224 | |
| 49685 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 225 | fun constrain_tvar (xi, raw_S) = | 
| 49688 | 226 | 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: 
49674diff
changeset | 227 | in if S = dummyS then Vartab.delete_safe xi else Vartab.update (xi, S) end; | 
| 21355 | 228 | |
| 20162 | 229 | fun declare_constraints t = map_constraints (fn (types, sorts) => | 
| 230 | let | |
| 231 | val types' = fold_aterms | |
| 232 | (fn Free (x, T) => Vartab.update ((x, ~1), T) | |
| 233 | | Var v => Vartab.update v | |
| 234 | | _ => I) t types; | |
| 45426 | 235 | val sorts' = (fold_types o fold_atyps) | 
| 21355 | 236 | (fn TFree (x, S) => constrain_tvar ((x, ~1), S) | 
| 237 | | TVar v => constrain_tvar v | |
| 45426 | 238 | | _ => I) t sorts; | 
| 20162 | 239 | in (types', sorts') end) | 
| 24719 
21d1cdab2d8c
declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
 wenzelm parents: 
24694diff
changeset | 240 | #> declare_type_occsT t | 
| 22711 | 241 | #> declare_type_names t; | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 242 | |
| 20162 | 243 | |
| 244 | (* common declarations *) | |
| 245 | ||
| 246 | fun declare_internal t = | |
| 247 | declare_names t #> | |
| 28625 | 248 | declare_type_occs t #> | 
| 249 | map_sorts (Sorts.insert_term t); | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 250 | |
| 20162 | 251 | fun declare_term t = | 
| 252 | declare_internal t #> | |
| 253 | declare_constraints t; | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 254 | |
| 27280 | 255 | val declare_typ = declare_term o Logic.mk_type; | 
| 256 | ||
| 20303 | 257 | val declare_prf = Proofterm.fold_proof_terms declare_internal (declare_internal o Logic.mk_type); | 
| 258 | ||
| 22691 | 259 | val declare_thm = Thm.fold_terms declare_internal; | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 260 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 261 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 262 | (* renaming term/type frees *) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 263 | |
| 20162 | 264 | fun variant_frees ctxt ts frees = | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 265 | let | 
| 20162 | 266 | val names = names_of (fold declare_names ts ctxt); | 
| 43326 
47cf4bc789aa
simplified Name.variant -- discontinued builtin fold_map;
 wenzelm parents: 
42495diff
changeset | 267 | val xs = fst (fold_map Name.variant (map #1 frees) names); | 
| 20084 | 268 | in xs ~~ map snd frees end; | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 269 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 270 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 271 | |
| 20303 | 272 | (** term bindings **) | 
| 273 | ||
| 30756 | 274 | fun bind_term (xi, NONE) = map_binds (Vartab.delete_safe xi) | 
| 275 | | bind_term ((x, i), SOME t) = | |
| 20303 | 276 | let | 
| 25051 | 277 | val u = Term.close_schematic_term t; | 
| 278 | val U = Term.fastype_of u; | |
| 279 | in declare_term u #> map_binds (Vartab.update ((x, i), (U, u))) end; | |
| 20303 | 280 | |
| 281 | fun expand_binds ctxt = | |
| 282 | let | |
| 283 | val binds = binds_of ctxt; | |
| 21799 | 284 | val get = fn Var (xi, _) => Vartab.lookup binds xi | _ => NONE; | 
| 285 | in Envir.beta_norm o Envir.expand_term get end; | |
| 20303 | 286 | |
| 287 | ||
| 288 | ||
| 25325 | 289 | (** consts **) | 
| 25316 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 290 | |
| 25325 | 291 | val lookup_const = Symtab.lookup o #consts o rep_data; | 
| 292 | val is_const = is_some oo lookup_const; | |
| 25316 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 293 | |
| 25325 | 294 | val declare_fixed = map_consts o Symtab.delete_safe; | 
| 295 | val declare_const = map_consts o Symtab.update; | |
| 25316 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 296 | |
| 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 297 | |
| 
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
 wenzelm parents: 
25051diff
changeset | 298 | |
| 55014 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 299 | (** bounds **) | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 300 | |
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 301 | fun next_bound (a, T) ctxt = | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 302 | let | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 303 | val b = Name.bound (#1 (#bounds (rep_data ctxt))); | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 304 | val ctxt' = ctxt |> map_bounds (fn (next, bounds) => (next + 1, ((b, T), a) :: bounds)); | 
| 55635 | 305 | in (Free (b, T), ctxt') end; | 
| 55014 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 306 | |
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 307 | fun revert_bounds ctxt t = | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 308 | (case #2 (#bounds (rep_data ctxt)) of | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 309 | [] => t | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 310 | | bounds => | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 311 | let | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 312 | val names = Term.declare_term_names t (names_of ctxt); | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 313 | val xs = rev (#1 (fold_map Name.variant (rev (map #2 bounds)) names)); | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 314 | 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: 
54740diff
changeset | 315 | in Term.subst_atomic (map2 subst bounds xs) t end); | 
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 316 | |
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 317 | |
| 
a93f496f6c30
general notion of auxiliary bounds within context;
 wenzelm parents: 
54740diff
changeset | 318 | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 319 | (** fixes **) | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 320 | |
| 59798 | 321 | (* inner body mode *) | 
| 322 | ||
| 323 | val inner_body = | |
| 324 |   Config.bool (Config.declare ("inner_body", @{here}) (K (Config.Bool false)));
 | |
| 325 | ||
| 326 | fun is_body ctxt = Config.get ctxt inner_body; | |
| 327 | val set_body = Config.put inner_body; | |
| 328 | fun restore_body ctxt = set_body (is_body ctxt); | |
| 329 | ||
| 330 | ||
| 59790 | 331 | (* proper mode *) | 
| 332 | ||
| 333 | val proper_fixes = | |
| 334 |   Config.bool (Config.declare ("proper_fixes", @{here}) (K (Config.Bool true)));
 | |
| 335 | ||
| 336 | val improper_fixes = Config.put proper_fixes false; | |
| 337 | fun restore_proper_fixes ctxt = Config.put proper_fixes (Config.get ctxt proper_fixes); | |
| 338 | ||
| 339 | fun is_improper ctxt x = | |
| 340 | (case Name_Space.lookup_key (fixes_of ctxt) x of | |
| 341 | SOME (_, (_, proper)) => not proper | |
| 342 | | NONE => false); | |
| 343 | ||
| 344 | ||
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 345 | (* specialized name space *) | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 346 | |
| 46869 | 347 | val is_fixed = Name_Space.defined_entry o fixes_space; | 
| 348 | fun newly_fixed inner outer = is_fixed inner andf (not o is_fixed outer); | |
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 349 | |
| 42493 
01430341fc79
more informative markup for fixed variables (via name space entry);
 wenzelm parents: 
42488diff
changeset | 350 | val fixed_ord = Name_Space.entry_ord o fixes_space; | 
| 
01430341fc79
more informative markup for fixed variables (via name space entry);
 wenzelm parents: 
42488diff
changeset | 351 | val intern_fixed = Name_Space.intern o fixes_space; | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 352 | |
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 353 | fun lookup_fixed ctxt x = | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 354 | let val x' = intern_fixed ctxt x | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 355 | in if is_fixed ctxt x' then SOME x' else NONE end; | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 356 | |
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 357 | fun revert_fixed ctxt x = | 
| 56025 | 358 | (case Name_Space.lookup_key (fixes_of ctxt) x of | 
| 59790 | 359 | SOME (_, (x', _)) => if intern_fixed ctxt x' = x then x' else x | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 360 | | NONE => x); | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 361 | |
| 45472 | 362 | fun markup_fixed ctxt x = | 
| 363 | Name_Space.markup (fixes_space ctxt) x | |
| 364 | |> Markup.name (revert_fixed ctxt x); | |
| 365 | ||
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 366 | fun dest_fixes ctxt = | 
| 59790 | 367 | 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: 
58668diff
changeset | 368 | |> sort (Name_Space.entry_ord (fixes_space ctxt) o apply2 #2); | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 369 | |
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 370 | |
| 42482 | 371 | (* collect variables *) | 
| 372 | ||
| 373 | fun add_free_names ctxt = | |
| 374 | fold_aterms (fn Free (x, _) => not (is_fixed ctxt x) ? insert (op =) x | _ => I); | |
| 375 | ||
| 376 | fun add_frees ctxt = | |
| 377 | fold_aterms (fn Free (x, T) => not (is_fixed ctxt x) ? insert (op =) (x, T) | _ => I); | |
| 378 | ||
| 379 | fun add_fixed_names ctxt = | |
| 380 | fold_aterms (fn Free (x, _) => is_fixed ctxt x ? insert (op =) x | _ => I); | |
| 381 | ||
| 382 | fun add_fixed ctxt = | |
| 383 | fold_aterms (fn Free (x, T) => is_fixed ctxt x ? insert (op =) (x, T) | _ => I); | |
| 384 | ||
| 385 | ||
| 386 | (* declarations *) | |
| 387 | ||
| 20084 | 388 | local | 
| 389 | ||
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 390 | fun err_dups dups = | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 391 |   error ("Duplicate fixed variable(s): " ^ commas (map Binding.print dups));
 | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 392 | |
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 393 | fun new_fixed ((x, x'), pos) ctxt = | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 394 | if is_some (lookup_fixed ctxt x') then err_dups [Binding.make (x, pos)] | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 395 | else | 
| 59790 | 396 | let | 
| 397 | val proper = Config.get ctxt proper_fixes; | |
| 398 | val context = Context.Proof ctxt |> Name_Space.map_naming (K Name_Space.global_naming); | |
| 399 | in | |
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
46869diff
changeset | 400 | ctxt | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
46869diff
changeset | 401 | |> map_fixes | 
| 59790 | 402 | (Name_Space.define context true (Binding.make (x', pos), (x, proper)) #> snd #> | 
| 58668 | 403 | 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: 
46869diff
changeset | 404 | |> declare_fixed x | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
46869diff
changeset | 405 | |> declare_constraints (Syntax.free x') | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
46869diff
changeset | 406 | end; | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 407 | |
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 408 | fun new_fixes names' xs xs' ps = | 
| 20102 | 409 | map_names (K names') #> | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 410 | fold new_fixed ((xs ~~ xs') ~~ ps) #> | 
| 20084 | 411 | pair xs'; | 
| 412 | ||
| 413 | in | |
| 414 | ||
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 415 | fun add_fixes_binding bs ctxt = | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 416 | let | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 417 | val _ = | 
| 55948 | 418 | (case filter (Name.is_skolem o Binding.name_of) bs of | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 419 | [] => () | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 420 |       | bads => error ("Illegal internal Skolem constant(s): " ^ commas (map Binding.print bads)));
 | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 421 | val _ = | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58668diff
changeset | 422 | (case duplicates (op = o apply2 Binding.name_of) bs of | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 423 | [] => () | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 424 | | dups => err_dups dups); | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 425 | |
| 42494 | 426 | val xs = map check_name bs; | 
| 20102 | 427 | val names = names_of ctxt; | 
| 20084 | 428 | val (xs', names') = | 
| 43326 
47cf4bc789aa
simplified Name.variant -- discontinued builtin fold_map;
 wenzelm parents: 
42495diff
changeset | 429 | 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: 
42482diff
changeset | 430 | else (xs, fold Name.declare xs names); | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 431 | 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: 
19899diff
changeset | 432 | |
| 20797 
c1f0bc7e7d80
renamed Variable.invent_fixes to Variable.variant_fixes;
 wenzelm parents: 
20579diff
changeset | 433 | fun variant_fixes raw_xs ctxt = | 
| 20084 | 434 | let | 
| 20102 | 435 | val names = names_of ctxt; | 
| 55948 | 436 | 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: 
42495diff
changeset | 437 | val (xs', names') = fold_map Name.variant xs names |>> (is_body ctxt ? map Name.skolem); | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 438 | in ctxt |> new_fixes names' xs xs' (replicate (length xs) Position.none) end; | 
| 20084 | 439 | |
| 440 | end; | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 441 | |
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 442 | val add_fixes = add_fixes_binding o map Binding.name; | 
| 20251 | 443 | |
| 444 | fun add_fixes_direct xs ctxt = ctxt | |
| 445 | |> set_body false | |
| 446 | |> (snd o add_fixes xs) | |
| 447 | |> restore_body ctxt; | |
| 448 | ||
| 42482 | 449 | fun auto_fixes t ctxt = ctxt | 
| 450 | |> not (is_body ctxt) ? add_fixes_direct (rev (add_free_names ctxt t [])) | |
| 20251 | 451 | |> declare_term t; | 
| 452 | ||
| 59796 | 453 | |
| 454 | (* dummy patterns *) | |
| 455 | ||
| 456 | fun fix_dummy_patterns (Const ("Pure.dummy_pattern", T)) ctxt =
 | |
| 457 | let val ([x], ctxt') = add_fixes [Name.uu_] ctxt | |
| 458 | in (Free (x, T), ctxt') end | |
| 459 | | fix_dummy_patterns (Abs (x, T, b)) ctxt = | |
| 460 | let val (b', ctxt') = fix_dummy_patterns b ctxt | |
| 461 | in (Abs (x, T, b'), ctxt') end | |
| 462 | | fix_dummy_patterns (t $ u) ctxt = | |
| 463 | let | |
| 464 | val (t', ctxt') = fix_dummy_patterns t ctxt; | |
| 465 | val (u', ctxt'') = fix_dummy_patterns u ctxt'; | |
| 466 | in (t' $ u', ctxt'') end | |
| 467 | | fix_dummy_patterns a ctxt = (a, ctxt); | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 468 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 469 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 470 | |
| 22671 | 471 | (** export -- generalize type/term variables (beware of closure sizes) **) | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 472 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 473 | fun export_inst inner outer = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 474 | let | 
| 20162 | 475 | val declared_outer = is_declared outer; | 
| 46869 | 476 | val still_fixed = not o newly_fixed inner outer; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 477 | |
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42482diff
changeset | 478 | val gen_fixes = | 
| 56025 | 479 | Name_Space.fold_table (fn (y, _) => not (is_fixed outer y) ? cons y) | 
| 480 | (fixes_of inner) []; | |
| 22671 | 481 | |
| 482 | val type_occs_inner = type_occs_of inner; | |
| 483 | fun gen_fixesT ts = | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 484 | Symtab.fold (fn (a, xs) => | 
| 20162 | 485 | if declared_outer a orelse exists still_fixed xs | 
| 22671 | 486 | then I else cons a) (fold decl_type_occs ts type_occs_inner) []; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 487 | in (gen_fixesT, gen_fixes) end; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 488 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 489 | fun exportT_inst inner outer = #1 (export_inst inner outer); | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 490 | |
| 22671 | 491 | fun exportT_terms inner outer = | 
| 59645 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 492 | let | 
| 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 493 | val mk_tfrees = exportT_inst inner outer; | 
| 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 494 | val maxidx = maxidx_of outer; | 
| 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 495 | in | 
| 22671 | 496 | fn ts => ts |> map | 
| 31977 | 497 | (Term_Subst.generalize (mk_tfrees ts, []) | 
| 59645 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 498 | (fold (Term.fold_types Term.maxidx_typ) ts maxidx + 1)) | 
| 22671 | 499 | end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 500 | |
| 22671 | 501 | fun export_terms inner outer = | 
| 59645 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 502 | let | 
| 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 503 | val (mk_tfrees, tfrees) = export_inst inner outer; | 
| 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 504 | val maxidx = maxidx_of outer; | 
| 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 505 | in | 
| 22671 | 506 | fn ts => ts |> map | 
| 31977 | 507 | (Term_Subst.generalize (mk_tfrees ts, tfrees) | 
| 59645 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 508 | (fold Term.maxidx_term ts maxidx + 1)) | 
| 22671 | 509 | end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 510 | |
| 20303 | 511 | fun export_prf inner outer prf = | 
| 512 | let | |
| 22671 | 513 | val (mk_tfrees, frees) = export_inst (declare_prf prf inner) outer; | 
| 514 | val tfrees = mk_tfrees []; | |
| 59645 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 515 | val maxidx = maxidx_of outer; | 
| 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 516 | val idx = Proofterm.maxidx_proof prf maxidx + 1; | 
| 36620 
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
 wenzelm parents: 
36610diff
changeset | 517 | val gen_term = Term_Subst.generalize_same (tfrees, frees) idx; | 
| 
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
 wenzelm parents: 
36610diff
changeset | 518 | 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: 
36610diff
changeset | 519 | in Same.commit (Proofterm.map_proof_terms_same gen_term gen_typ) prf end; | 
| 20303 | 520 | |
| 22671 | 521 | |
| 59645 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 522 | fun gen_export (mk_tfrees, frees) maxidx ths = | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 523 | let | 
| 22671 | 524 | val tfrees = mk_tfrees (map Thm.full_prop_of ths); | 
| 59645 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 525 | val idx = fold Thm.maxidx_thm ths maxidx + 1; | 
| 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 526 | in map (Thm.generalize (tfrees, frees) idx) ths end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 527 | |
| 59645 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 528 | fun exportT inner outer = gen_export (exportT_inst inner outer, []) (maxidx_of outer); | 
| 
f89464e9ffa0
clarified Variable.export: observe maxidx of target context;
 wenzelm parents: 
59623diff
changeset | 529 | 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: 
19899diff
changeset | 530 | |
| 21522 | 531 | fun export_morphism inner outer = | 
| 532 | let | |
| 533 | val fact = export inner outer; | |
| 534 | val term = singleton (export_terms inner outer); | |
| 535 | val typ = Logic.type_map term; | |
| 54740 | 536 | in | 
| 537 |     Morphism.morphism "Variable.export" {binding = [], typ = [typ], term = [term], fact = [fact]}
 | |
| 538 | end; | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 539 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 540 | |
| 24765 | 541 | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 542 | (** import -- fix schematic type/term variables **) | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 543 | |
| 59796 | 544 | fun invent_types Ss ctxt = | 
| 545 | let | |
| 546 | val tfrees = Name.invent (names_of ctxt) Name.aT (length Ss) ~~ Ss; | |
| 547 | val ctxt' = fold (declare_constraints o Logic.mk_type o TFree) tfrees ctxt; | |
| 548 | in (tfrees, ctxt') end; | |
| 549 | ||
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 550 | fun importT_inst ts ctxt = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 551 | let | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 552 | val tvars = rev (fold Term.add_tvars ts []); | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 553 | val (tfrees, ctxt') = invent_types (map #2 tvars) ctxt; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 554 | in (tvars ~~ map TFree tfrees, ctxt') end; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 555 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 556 | fun import_inst is_open ts ctxt = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 557 | let | 
| 26714 
4773b832f1b1
variant_fixes: preserve internal state, mark skolem only for body mode;
 wenzelm parents: 
25573diff
changeset | 558 | 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: 
19899diff
changeset | 559 | val (instT, ctxt') = importT_inst ts ctxt; | 
| 31977 | 560 | 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: 
20579diff
changeset | 561 | 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: 
19899diff
changeset | 562 | val inst = vars ~~ map Free (xs ~~ map #2 vars); | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 563 | in ((instT, inst), ctxt'') end; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 564 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 565 | fun importT_terms ts ctxt = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 566 | let val (instT, ctxt') = importT_inst ts ctxt | 
| 31977 | 567 | in (map (Term_Subst.instantiate (instT, [])) ts, ctxt') end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 568 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 569 | fun import_terms is_open ts ctxt = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 570 | let val (inst, ctxt') = import_inst is_open ts ctxt | 
| 31977 | 571 | in (map (Term_Subst.instantiate inst) ts, ctxt') end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 572 | |
| 31794 
71af1fd6a5e4
renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
 wenzelm parents: 
30756diff
changeset | 573 | fun importT ths ctxt = | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 574 | let | 
| 42360 | 575 | val thy = Proof_Context.theory_of ctxt; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 576 | val (instT, ctxt') = importT_inst (map Thm.full_prop_of ths) ctxt; | 
| 32280 
4fb3f426052a
Variable.importT/import: return full instantiations, tuned;
 wenzelm parents: 
32199diff
changeset | 577 | val insts' as (instT', _) = Thm.certify_inst thy (instT, []); | 
| 
4fb3f426052a
Variable.importT/import: return full instantiations, tuned;
 wenzelm parents: 
32199diff
changeset | 578 | val ths' = map (Thm.instantiate insts') ths; | 
| 
4fb3f426052a
Variable.importT/import: return full instantiations, tuned;
 wenzelm parents: 
32199diff
changeset | 579 | in ((instT', ths'), ctxt') end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 580 | |
| 20303 | 581 | fun import_prf is_open prf ctxt = | 
| 582 | let | |
| 583 | val ts = rev (Proofterm.fold_proof_terms cons (cons o Logic.mk_type) prf []); | |
| 584 | val (insts, ctxt') = import_inst is_open ts ctxt; | |
| 585 | in (Proofterm.instantiate insts prf, ctxt') end; | |
| 586 | ||
| 31794 
71af1fd6a5e4
renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
 wenzelm parents: 
30756diff
changeset | 587 | fun import is_open ths ctxt = | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 588 | let | 
| 42360 | 589 | val thy = Proof_Context.theory_of ctxt; | 
| 32280 
4fb3f426052a
Variable.importT/import: return full instantiations, tuned;
 wenzelm parents: 
32199diff
changeset | 590 | val (insts, ctxt') = import_inst is_open (map Thm.full_prop_of ths) ctxt; | 
| 
4fb3f426052a
Variable.importT/import: return full instantiations, tuned;
 wenzelm parents: 
32199diff
changeset | 591 | val insts' = Thm.certify_inst thy insts; | 
| 
4fb3f426052a
Variable.importT/import: return full instantiations, tuned;
 wenzelm parents: 
32199diff
changeset | 592 | val ths' = map (Thm.instantiate insts') ths; | 
| 
4fb3f426052a
Variable.importT/import: return full instantiations, tuned;
 wenzelm parents: 
32199diff
changeset | 593 | in ((insts', ths'), ctxt') end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 594 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 595 | |
| 19926 | 596 | (* import/export *) | 
| 597 | ||
| 21287 | 598 | fun gen_trade imp exp f ctxt ths = | 
| 20220 | 599 | let val ((_, ths'), ctxt') = imp ths ctxt | 
| 21287 | 600 | in exp ctxt' ctxt (f ctxt' ths') end; | 
| 19926 | 601 | |
| 31794 
71af1fd6a5e4
renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
 wenzelm parents: 
30756diff
changeset | 602 | 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: 
30756diff
changeset | 603 | val trade = gen_trade (import true) export; | 
| 19926 | 604 | |
| 605 | ||
| 42495 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 606 | (* focus on outermost parameters: !!x y z. B *) | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 607 | |
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 608 | fun focus_params t ctxt = | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 609 | let | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 610 | val (xs, Ts) = | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 611 | split_list (Term.variant_frees t (Term.strip_all_vars t)); (*as they are printed :-*) | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 612 | val (xs', ctxt') = variant_fixes xs ctxt; | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 613 | val ps = xs' ~~ Ts; | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 614 | val ctxt'' = ctxt' |> fold (declare_constraints o Free) ps; | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 615 | in ((xs, ps), ctxt'') end; | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 616 | |
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 617 | fun focus t ctxt = | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 618 | let | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 619 | val ((xs, ps), ctxt') = focus_params t ctxt; | 
| 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 620 | 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: 
42494diff
changeset | 621 | in (((xs ~~ ps), t'), ctxt') end; | 
| 20149 | 622 | |
| 623 | 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: 
45666diff
changeset | 624 | Thm.beta_conversion false (Thm.apply (Thm.dest_arg prop) t) | 
| 20579 | 625 | |> Thm.cprop_of |> Thm.dest_arg; | 
| 20149 | 626 | |
| 42495 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 627 | fun focus_cterm goal ctxt = | 
| 20149 | 628 | let | 
| 42495 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 629 | val ((xs, ps), ctxt') = focus_params (Thm.term_of goal) ctxt; | 
| 59623 | 630 | val ps' = map (Thm.cterm_of ctxt' o Free) ps; | 
| 20220 | 631 | val goal' = fold forall_elim_prop ps' goal; | 
| 42495 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 632 | in ((xs ~~ ps', goal'), ctxt') end; | 
| 20149 | 633 | |
| 20303 | 634 | fun focus_subgoal i st = | 
| 635 | let | |
| 22691 | 636 | val all_vars = Thm.fold_terms Term.add_vars st []; | 
| 20303 | 637 | val no_binds = map (fn (xi, _) => (xi, NONE)) all_vars; | 
| 638 | in | |
| 30756 | 639 | fold bind_term no_binds #> | 
| 20303 | 640 | fold (declare_constraints o Var) all_vars #> | 
| 42495 
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
 wenzelm parents: 
42494diff
changeset | 641 | focus_cterm (Thm.cprem_of st i) | 
| 20303 | 642 | end; | 
| 643 | ||
| 644 | ||
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 645 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 646 | (** implicit polymorphism **) | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 647 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 648 | (* warn_extra_tfrees *) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 649 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 650 | fun warn_extra_tfrees ctxt1 ctxt2 = | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 651 | let | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 652 | fun occs_typ a = Term.exists_subtype (fn TFree (b, _) => a = b | _ => false); | 
| 20162 | 653 | fun occs_free a x = | 
| 654 | (case def_type ctxt1 false (x, ~1) of | |
| 655 | SOME T => if occs_typ a T then I else cons (a, x) | |
| 656 | | NONE => cons (a, x)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 657 | |
| 20162 | 658 | val occs1 = type_occs_of ctxt1; | 
| 659 | val occs2 = type_occs_of ctxt2; | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 660 | val extras = Symtab.fold (fn (a, xs) => | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 661 | 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 | 662 | val tfrees = map #1 extras |> sort_distinct string_ord; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 663 | val frees = map #2 extras |> sort_distinct string_ord; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 664 | in | 
| 38831 
4933a3dfd745
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
37145diff
changeset | 665 | 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 | 666 |     else warning ("Introduced fixed type variable(s): " ^ commas tfrees ^ " in " ^
 | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 667 | space_implode " or " (map quote frees)) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 668 | end; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 669 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 670 | |
| 20149 | 671 | (* polymorphic terms *) | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 672 | |
| 24694 | 673 | fun polymorphic_types ctxt ts = | 
| 20003 | 674 | let | 
| 675 | val ctxt' = fold declare_term ts ctxt; | |
| 20162 | 676 | val occs = type_occs_of ctxt; | 
| 677 | val occs' = type_occs_of ctxt'; | |
| 678 | val types = Symtab.fold (fn (a, _) => if Symtab.defined occs a then I else cons a) occs' []; | |
| 24765 | 679 | val idx = maxidx_of ctxt' + 1; | 
| 24694 | 680 | val Ts' = (fold o fold_types o fold_atyps) | 
| 681 | (fn T as TFree _ => | |
| 31977 | 682 | (case Term_Subst.generalizeT types idx T of TVar v => insert (op =) v | _ => I) | 
| 24694 | 683 | | _ => I) ts []; | 
| 31977 | 684 | val ts' = map (Term_Subst.generalize (types, []) idx) ts; | 
| 24694 | 685 | in (rev Ts', ts') end; | 
| 686 | ||
| 687 | fun polymorphic ctxt ts = snd (polymorphic_types ctxt ts); | |
| 20003 | 688 | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 689 | end; |