| author | wenzelm | 
| Sun, 03 Jun 2007 23:16:42 +0200 | |
| changeset 23214 | dc23c062b58c | 
| parent 22846 | fb79144af9a3 | 
| child 24694 | 54f06f7feefa | 
| 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 | ID: $Id$ | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 3 | Author: Makarius | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 4 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 5 | Fixed type/term variables and polymorphic term abbreviations. | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 6 | *) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 7 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 8 | signature VARIABLE = | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 9 | sig | 
| 20303 | 10 | val is_body: Proof.context -> bool | 
| 11 | val set_body: bool -> Proof.context -> Proof.context | |
| 12 | val restore_body: Proof.context -> Proof.context -> Proof.context | |
| 13 | val names_of: Proof.context -> Name.context | |
| 14 | val fixes_of: Proof.context -> (string * string) list | |
| 15 | val binds_of: Proof.context -> (typ * term) Vartab.table | |
| 16 | val constraints_of: Proof.context -> typ Vartab.table * sort Vartab.table | |
| 17 | val is_declared: Proof.context -> string -> bool | |
| 18 | val is_fixed: Proof.context -> string -> bool | |
| 19 | val newly_fixed: Proof.context -> Proof.context -> string -> bool | |
| 21571 | 20 | val add_fixed: Proof.context -> term -> (string * typ) list -> (string * typ) list | 
| 20303 | 21 | val default_type: Proof.context -> string -> typ option | 
| 22 | val def_type: Proof.context -> bool -> indexname -> typ option | |
| 23 | val def_sort: Proof.context -> indexname -> sort option | |
| 24 | val declare_constraints: term -> Proof.context -> Proof.context | |
| 25 | val declare_internal: term -> Proof.context -> Proof.context | |
| 26 | val declare_term: term -> Proof.context -> Proof.context | |
| 27 | val declare_prf: Proofterm.proof -> Proof.context -> Proof.context | |
| 28 | val declare_thm: thm -> Proof.context -> Proof.context | |
| 29 | val thm_context: thm -> Proof.context | |
| 30 | val variant_frees: Proof.context -> term list -> (string * 'a) list -> (string * 'a) list | |
| 31 | val add_binds: (indexname * term option) list -> Proof.context -> Proof.context | |
| 32 | val expand_binds: Proof.context -> term -> term | |
| 33 | val add_fixes: string list -> Proof.context -> string list * Proof.context | |
| 34 | val add_fixes_direct: string list -> Proof.context -> Proof.context | |
| 21369 | 35 | val auto_fixes: term -> Proof.context -> Proof.context | 
| 20797 
c1f0bc7e7d80
renamed Variable.invent_fixes to Variable.variant_fixes;
 wenzelm parents: 
20579diff
changeset | 36 | val variant_fixes: string list -> Proof.context -> string list * Proof.context | 
| 20303 | 37 | val invent_types: sort list -> Proof.context -> (string * sort) list * Proof.context | 
| 38 | val export_terms: Proof.context -> Proof.context -> term list -> term list | |
| 39 | val exportT_terms: Proof.context -> Proof.context -> term list -> term list | |
| 40 | val exportT: Proof.context -> Proof.context -> thm list -> thm list | |
| 41 | val export_prf: Proof.context -> Proof.context -> Proofterm.proof -> Proofterm.proof | |
| 42 | val export: Proof.context -> Proof.context -> thm list -> thm list | |
| 21522 | 43 | val export_morphism: Proof.context -> Proof.context -> morphism | 
| 20303 | 44 | val importT_inst: term list -> Proof.context -> ((indexname * sort) * typ) list * Proof.context | 
| 45 | val import_inst: bool -> term list -> Proof.context -> | |
| 46 | (((indexname * sort) * typ) list * ((indexname * typ) * term) list) * Proof.context | |
| 47 | val importT_terms: term list -> Proof.context -> term list * Proof.context | |
| 48 | val import_terms: bool -> term list -> Proof.context -> term list * Proof.context | |
| 22601 | 49 | val importT_thms: thm list -> Proof.context -> (ctyp list * thm list) * Proof.context | 
| 20303 | 50 | val import_prf: bool -> Proofterm.proof -> Proof.context -> Proofterm.proof * Proof.context | 
| 22568 
ed7aa5a350ef
renamed Variable.import to import_thms (avoid clash with Alice keywords);
 wenzelm parents: 
21799diff
changeset | 51 | val import_thms: bool -> thm list -> Proof.context -> | 
| 20303 | 52 | ((ctyp list * cterm list) * thm list) * Proof.context | 
| 21287 | 53 | val tradeT: (Proof.context -> thm list -> thm list) -> Proof.context -> thm list -> thm list | 
| 54 | val trade: (Proof.context -> thm list -> thm list) -> Proof.context -> thm list -> thm list | |
| 20303 | 55 | val focus: cterm -> Proof.context -> (cterm list * cterm) * Proof.context | 
| 56 | val focus_subgoal: int -> thm -> Proof.context -> (cterm list * cterm) * Proof.context | |
| 57 | val warn_extra_tfrees: Proof.context -> Proof.context -> unit | |
| 58 | val polymorphic: Proof.context -> term list -> term list | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 59 | end; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 60 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 61 | structure Variable: VARIABLE = | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 62 | struct | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 63 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 64 | (** local context data **) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 65 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 66 | datatype data = Data of | 
| 20102 | 67 |  {is_body: bool,                        (*inner body mode*)
 | 
| 20162 | 68 | names: Name.context, (*type/term variable names*) | 
| 69 | fixes: (string * string) list, (*term fixes -- extern/intern*) | |
| 20102 | 70 | binds: (typ * term) Vartab.table, (*term bindings*) | 
| 20162 | 71 | type_occs: string list Symtab.table, (*type variables -- possibly within term variables*) | 
| 72 | constraints: | |
| 20102 | 73 | typ Vartab.table * (*type constraints*) | 
| 20162 | 74 | sort Vartab.table}; (*default sorts*) | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 75 | |
| 20162 | 76 | fun make_data (is_body, names, fixes, binds, type_occs, constraints) = | 
| 77 |   Data {is_body = is_body, names = names, fixes = fixes, binds = binds,
 | |
| 78 | type_occs = type_occs, constraints = constraints}; | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 79 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 80 | structure Data = ProofDataFun | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 81 | ( | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 82 | type T = data; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 83 | fun init thy = | 
| 20162 | 84 | make_data (false, Name.context, [], Vartab.empty, Symtab.empty, (Vartab.empty, Vartab.empty)); | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 85 | ); | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 86 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 87 | fun map_data f = | 
| 20162 | 88 |   Data.map (fn Data {is_body, names, fixes, binds, type_occs, constraints} =>
 | 
| 89 | make_data (f (is_body, names, fixes, binds, type_occs, constraints))); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 90 | |
| 20162 | 91 | fun map_names f = map_data (fn (is_body, names, fixes, binds, type_occs, constraints) => | 
| 92 | (is_body, f names, fixes, binds, type_occs, constraints)); | |
| 93 | ||
| 94 | fun map_fixes f = map_data (fn (is_body, names, fixes, binds, type_occs, constraints) => | |
| 95 | (is_body, names, f fixes, binds, type_occs, constraints)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 96 | |
| 20162 | 97 | fun map_binds f = map_data (fn (is_body, names, fixes, binds, type_occs, constraints) => | 
| 98 | (is_body, names, fixes, f binds, type_occs, constraints)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 99 | |
| 20162 | 100 | fun map_type_occs f = map_data (fn (is_body, names, fixes, binds, type_occs, constraints) => | 
| 101 | (is_body, names, fixes, binds, f type_occs, constraints)); | |
| 20102 | 102 | |
| 20162 | 103 | fun map_constraints f = map_data (fn (is_body, names, fixes, binds, type_occs, constraints) => | 
| 104 | (is_body, names, fixes, binds, type_occs, f constraints)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 105 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 106 | fun rep_data ctxt = Data.get ctxt |> (fn Data args => args); | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 107 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 108 | val is_body = #is_body o rep_data; | 
| 20162 | 109 | fun set_body b = map_data (fn (_, names, fixes, binds, type_occs, constraints) => | 
| 110 | (b, names, fixes, binds, type_occs, constraints)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 111 | fun restore_body ctxt = set_body (is_body ctxt); | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 112 | |
| 20102 | 113 | val names_of = #names o rep_data; | 
| 114 | val fixes_of = #fixes o rep_data; | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 115 | val binds_of = #binds o rep_data; | 
| 20162 | 116 | val type_occs_of = #type_occs o rep_data; | 
| 117 | val constraints_of = #constraints o rep_data; | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 118 | |
| 20162 | 119 | val is_declared = Name.is_declared o names_of; | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 120 | fun is_fixed ctxt x = exists (fn (_, y) => x = y) (fixes_of ctxt); | 
| 20149 | 121 | fun newly_fixed inner outer x = is_fixed inner x andalso not (is_fixed outer x); | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 122 | |
| 21571 | 123 | fun add_fixed ctxt = Term.fold_aterms | 
| 124 | (fn Free (x, T) => if is_fixed ctxt x then insert (op =) (x, T) else I | _ => I); | |
| 125 | ||
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 126 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 127 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 128 | (** declarations **) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 129 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 130 | (* default sorts and types *) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 131 | |
| 20162 | 132 | 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 | 133 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 134 | fun def_type ctxt pattern xi = | 
| 20162 | 135 |   let val {binds, constraints = (types, _), ...} = rep_data ctxt in
 | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 136 | (case Vartab.lookup types xi of | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 137 | NONE => | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 138 | if pattern then NONE | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 139 | else Vartab.lookup binds xi |> Option.map (TypeInfer.polymorphicT o #1) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 140 | | some => some) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 141 | end; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 142 | |
| 20162 | 143 | val def_sort = Vartab.lookup o #2 o constraints_of; | 
| 144 | ||
| 145 | ||
| 146 | (* names *) | |
| 147 | ||
| 148 | val declare_type_names = map_names o | |
| 149 | fold_types (fold_atyps (fn TFree (a, _) => Name.declare a | _ => I)); | |
| 150 | ||
| 151 | fun declare_names t = | |
| 152 | declare_type_names t #> | |
| 153 | map_names (fold_aterms (fn Free (x, _) => Name.declare x | _ => I) t); | |
| 154 | ||
| 155 | ||
| 156 | (* type occurrences *) | |
| 157 | ||
| 22671 | 158 | val decl_type_occs = fold_term_types | 
| 20162 | 159 | (fn Free (x, _) => fold_atyps (fn TFree (a, _) => Symtab.insert_list (op =) (a, x) | _ => I) | 
| 160 | | _ => fold_atyps (fn TFree (a, _) => Symtab.default (a, []) | _ => I)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 161 | |
| 22671 | 162 | val declare_type_occs = map_type_occs o decl_type_occs; | 
| 163 | ||
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 164 | |
| 20162 | 165 | (* constraints *) | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 166 | |
| 21355 | 167 | fun constrain_tvar (xi, S) = | 
| 168 | if S = dummyS then Vartab.delete_safe xi else Vartab.update (xi, S); | |
| 169 | ||
| 20162 | 170 | fun declare_constraints t = map_constraints (fn (types, sorts) => | 
| 171 | let | |
| 172 | val types' = fold_aterms | |
| 173 | (fn Free (x, T) => Vartab.update ((x, ~1), T) | |
| 174 | | Var v => Vartab.update v | |
| 175 | | _ => I) t types; | |
| 176 | val sorts' = fold_types (fold_atyps | |
| 21355 | 177 | (fn TFree (x, S) => constrain_tvar ((x, ~1), S) | 
| 178 | | TVar v => constrain_tvar v | |
| 20162 | 179 | | _ => I)) t sorts; | 
| 180 | in (types', sorts') end) | |
| 22711 | 181 | #> declare_type_names t; | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 182 | |
| 20162 | 183 | |
| 184 | (* common declarations *) | |
| 185 | ||
| 186 | fun declare_internal t = | |
| 187 | declare_names t #> | |
| 188 | declare_type_occs t; | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 189 | |
| 20162 | 190 | fun declare_term t = | 
| 191 | declare_internal t #> | |
| 192 | declare_constraints t; | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 193 | |
| 20303 | 194 | val declare_prf = Proofterm.fold_proof_terms declare_internal (declare_internal o Logic.mk_type); | 
| 195 | ||
| 22691 | 196 | val declare_thm = Thm.fold_terms declare_internal; | 
| 21522 | 197 | fun thm_context th = declare_thm th (ProofContext.init (Thm.theory_of_thm th)); | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 198 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 199 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 200 | (* renaming term/type frees *) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 201 | |
| 20162 | 202 | fun variant_frees ctxt ts frees = | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 203 | let | 
| 20162 | 204 | val names = names_of (fold declare_names ts ctxt); | 
| 20084 | 205 | val xs = fst (Name.variants (map #1 frees) names); | 
| 206 | in xs ~~ map snd frees end; | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 207 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 208 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 209 | |
| 20303 | 210 | (** term bindings **) | 
| 211 | ||
| 212 | fun add_bind (xi, NONE) = map_binds (Vartab.delete_safe xi) | |
| 213 | | add_bind ((x, i), SOME t) = | |
| 214 | let | |
| 215 | val T = Term.fastype_of t; | |
| 216 | val t' = | |
| 21683 | 217 | if null (Term.hidden_polymorphism t T) then t | 
| 20303 | 218 | else Var ((x ^ "_has_extra_type_vars_on_rhs", i), T); | 
| 219 | in declare_term t' #> map_binds (Vartab.update ((x, i), (T, t'))) end; | |
| 220 | ||
| 221 | val add_binds = fold add_bind; | |
| 222 | ||
| 223 | fun expand_binds ctxt = | |
| 224 | let | |
| 225 | val binds = binds_of ctxt; | |
| 21799 | 226 | val get = fn Var (xi, _) => Vartab.lookup binds xi | _ => NONE; | 
| 227 | in Envir.beta_norm o Envir.expand_term get end; | |
| 20303 | 228 | |
| 229 | ||
| 230 | ||
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 231 | (** fixes **) | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 232 | |
| 20084 | 233 | local | 
| 234 | ||
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 235 | fun no_dups [] = () | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 236 |   | no_dups dups = error ("Duplicate fixed variable(s): " ^ commas_quote dups);
 | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 237 | |
| 20102 | 238 | fun new_fixes names' xs xs' = | 
| 239 | map_names (K names') #> | |
| 240 | map_fixes (fn fixes => (rev (xs ~~ xs') @ fixes)) #> | |
| 20162 | 241 | fold (declare_constraints o Syntax.free) xs' #> | 
| 20084 | 242 | pair xs'; | 
| 243 | ||
| 244 | in | |
| 245 | ||
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 246 | fun add_fixes xs ctxt = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 247 | let | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 248 | val _ = | 
| 20084 | 249 | (case filter (can Name.dest_skolem) xs of [] => () | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 250 |       | bads => error ("Illegal internal Skolem constant(s): " ^ commas_quote bads));
 | 
| 20084 | 251 | val _ = no_dups (duplicates (op =) xs); | 
| 252 | val (ys, zs) = split_list (fixes_of ctxt); | |
| 20102 | 253 | val names = names_of ctxt; | 
| 20084 | 254 | val (xs', names') = | 
| 20149 | 255 | if is_body ctxt then Name.variants xs names |>> map Name.skolem | 
| 20084 | 256 | else (no_dups (xs inter_string ys); no_dups (xs inter_string zs); | 
| 257 | (xs, fold Name.declare xs names)); | |
| 20102 | 258 | in ctxt |> new_fixes names' xs xs' end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 259 | |
| 20797 
c1f0bc7e7d80
renamed Variable.invent_fixes to Variable.variant_fixes;
 wenzelm parents: 
20579diff
changeset | 260 | fun variant_fixes raw_xs ctxt = | 
| 20084 | 261 | let | 
| 20102 | 262 | val names = names_of ctxt; | 
| 20149 | 263 | val xs = map Name.clean raw_xs; | 
| 264 | val (xs', names') = Name.variants xs names |>> map Name.skolem; | |
| 20102 | 265 | in ctxt |> new_fixes names' xs xs' end; | 
| 20084 | 266 | |
| 267 | end; | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 268 | |
| 20251 | 269 | |
| 270 | fun add_fixes_direct xs ctxt = ctxt | |
| 271 | |> set_body false | |
| 272 | |> (snd o add_fixes xs) | |
| 273 | |> restore_body ctxt; | |
| 274 | ||
| 275 | fun fix_frees t ctxt = ctxt | |
| 276 | |> add_fixes_direct | |
| 277 | (rev (fold_aterms (fn Free (x, _) => | |
| 21369 | 278 | if is_fixed ctxt x then I else insert (op =) x | _ => I) t [])); | 
| 279 | ||
| 280 | fun auto_fixes t ctxt = | |
| 281 | (if is_body ctxt then ctxt else fix_frees t ctxt) | |
| 20251 | 282 | |> declare_term t; | 
| 283 | ||
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 284 | fun invent_types Ss ctxt = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 285 | let | 
| 20102 | 286 | val tfrees = Name.invents (names_of ctxt) "'a" (length Ss) ~~ Ss; | 
| 20162 | 287 | val ctxt' = fold (declare_constraints o Logic.mk_type o TFree) tfrees ctxt; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 288 | in (tfrees, ctxt') end; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 289 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 290 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 291 | |
| 22671 | 292 | (** 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 | 293 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 294 | fun export_inst inner outer = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 295 | let | 
| 20162 | 296 | val declared_outer = is_declared outer; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 297 | val fixes_inner = fixes_of inner; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 298 | val fixes_outer = fixes_of outer; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 299 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 300 | val gen_fixes = map #2 (Library.take (length fixes_inner - length fixes_outer, fixes_inner)); | 
| 20162 | 301 | val still_fixed = not o member (op =) gen_fixes; | 
| 22671 | 302 | |
| 303 | val type_occs_inner = type_occs_of inner; | |
| 304 | fun gen_fixesT ts = | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 305 | Symtab.fold (fn (a, xs) => | 
| 20162 | 306 | if declared_outer a orelse exists still_fixed xs | 
| 22671 | 307 | 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 | 308 | in (gen_fixesT, gen_fixes) end; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 309 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 310 | 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 | 311 | |
| 22671 | 312 | fun exportT_terms inner outer = | 
| 313 | let val mk_tfrees = exportT_inst inner outer in | |
| 314 | fn ts => ts |> map | |
| 315 | (TermSubst.generalize (mk_tfrees ts, []) | |
| 316 | (fold (Term.fold_types Term.maxidx_typ) ts ~1 + 1)) | |
| 317 | end; | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 318 | |
| 22671 | 319 | fun export_terms inner outer = | 
| 320 | let val (mk_tfrees, tfrees) = export_inst inner outer in | |
| 321 | fn ts => ts |> map | |
| 322 | (TermSubst.generalize (mk_tfrees ts, tfrees) | |
| 323 | (fold Term.maxidx_term ts ~1 + 1)) | |
| 324 | end; | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 325 | |
| 20303 | 326 | fun export_prf inner outer prf = | 
| 327 | let | |
| 22671 | 328 | val (mk_tfrees, frees) = export_inst (declare_prf prf inner) outer; | 
| 329 | val tfrees = mk_tfrees []; | |
| 20303 | 330 | val idx = Proofterm.maxidx_proof prf ~1 + 1; | 
| 22671 | 331 | val gen_term = TermSubst.generalize_option (tfrees, frees) idx; | 
| 332 | val gen_typ = TermSubst.generalizeT_option tfrees idx; | |
| 20303 | 333 | in Proofterm.map_proof_terms_option gen_term gen_typ prf end; | 
| 334 | ||
| 22671 | 335 | |
| 336 | fun gen_export (mk_tfrees, frees) ths = | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 337 | let | 
| 22671 | 338 | val tfrees = mk_tfrees (map Thm.full_prop_of ths); | 
| 339 | val maxidx = fold Thm.maxidx_thm ths ~1; | |
| 340 | in map (Thm.generalize (tfrees, frees) (maxidx + 1)) ths end; | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 341 | |
| 22671 | 342 | fun exportT inner outer = gen_export (exportT_inst inner outer, []); | 
| 343 | fun export inner outer = gen_export (export_inst inner outer); | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 344 | |
| 21522 | 345 | fun export_morphism inner outer = | 
| 346 | let | |
| 347 | val fact = export inner outer; | |
| 348 | val term = singleton (export_terms inner outer); | |
| 349 | val typ = Logic.type_map term; | |
| 350 |   in Morphism.morphism {name = I, var = I, typ = typ, term = term, fact = fact} end;
 | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 351 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 352 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 353 | (** import -- fix schematic type/term variables **) | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 354 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 355 | fun importT_inst ts ctxt = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 356 | let | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 357 | val tvars = rev (fold Term.add_tvars ts []); | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 358 | val (tfrees, ctxt') = invent_types (map #2 tvars) ctxt; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 359 | in (tvars ~~ map TFree tfrees, ctxt') end; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 360 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 361 | fun import_inst is_open ts ctxt = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 362 | let | 
| 20198 | 363 | val ren = if is_open then I else Name.internal; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 364 | val (instT, ctxt') = importT_inst ts ctxt; | 
| 20509 | 365 | val vars = map (apsnd (TermSubst.instantiateT instT)) (rev (fold Term.add_vars ts [])); | 
| 20797 
c1f0bc7e7d80
renamed Variable.invent_fixes to Variable.variant_fixes;
 wenzelm parents: 
20579diff
changeset | 366 | 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 | 367 | val inst = vars ~~ map Free (xs ~~ map #2 vars); | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 368 | in ((instT, inst), ctxt'') end; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 369 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 370 | fun importT_terms ts ctxt = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 371 | let val (instT, ctxt') = importT_inst ts ctxt | 
| 20509 | 372 | in (map (TermSubst.instantiate (instT, [])) ts, ctxt') end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 373 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 374 | fun import_terms is_open ts ctxt = | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 375 | let val (inst, ctxt') = import_inst is_open ts ctxt | 
| 20509 | 376 | in (map (TermSubst.instantiate inst) ts, ctxt') end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 377 | |
| 22601 | 378 | fun importT_thms ths ctxt = | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 379 | let | 
| 21522 | 380 | val thy = ProofContext.theory_of ctxt; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 381 | val certT = Thm.ctyp_of thy; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 382 | val (instT, ctxt') = importT_inst (map Thm.full_prop_of ths) ctxt; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 383 | val instT' = map (fn (v, T) => (certT (TVar v), certT T)) instT; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 384 | val ths' = map (Thm.instantiate (instT', [])) ths; | 
| 20220 | 385 | in ((map #2 instT', ths'), ctxt') end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 386 | |
| 20303 | 387 | fun import_prf is_open prf ctxt = | 
| 388 | let | |
| 389 | val ts = rev (Proofterm.fold_proof_terms cons (cons o Logic.mk_type) prf []); | |
| 390 | val (insts, ctxt') = import_inst is_open ts ctxt; | |
| 391 | in (Proofterm.instantiate insts prf, ctxt') end; | |
| 392 | ||
| 22568 
ed7aa5a350ef
renamed Variable.import to import_thms (avoid clash with Alice keywords);
 wenzelm parents: 
21799diff
changeset | 393 | fun import_thms is_open ths ctxt = | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 394 | let | 
| 21522 | 395 | val thy = ProofContext.theory_of ctxt; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 396 | val cert = Thm.cterm_of thy; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 397 | val certT = Thm.ctyp_of thy; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 398 | val ((instT, inst), ctxt') = import_inst is_open (map Thm.full_prop_of ths) ctxt; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 399 | val instT' = map (fn (v, T) => (certT (TVar v), certT T)) instT; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 400 | val inst' = map (fn (v, t) => (cert (Var v), cert t)) inst; | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 401 | val ths' = map (Thm.instantiate (instT', inst')) ths; | 
| 20220 | 402 | in (((map #2 instT', map #2 inst'), ths'), ctxt') end; | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 403 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 404 | |
| 19926 | 405 | (* import/export *) | 
| 406 | ||
| 21287 | 407 | fun gen_trade imp exp f ctxt ths = | 
| 20220 | 408 | let val ((_, ths'), ctxt') = imp ths ctxt | 
| 21287 | 409 | in exp ctxt' ctxt (f ctxt' ths') end; | 
| 19926 | 410 | |
| 22601 | 411 | val tradeT = gen_trade importT_thms exportT; | 
| 22568 
ed7aa5a350ef
renamed Variable.import to import_thms (avoid clash with Alice keywords);
 wenzelm parents: 
21799diff
changeset | 412 | val trade = gen_trade (import_thms true) export; | 
| 19926 | 413 | |
| 414 | ||
| 20162 | 415 | (* focus on outermost parameters *) | 
| 20149 | 416 | |
| 417 | fun forall_elim_prop t prop = | |
| 20579 | 418 | Thm.beta_conversion false (Thm.capply (Thm.dest_arg prop) t) | 
| 419 | |> Thm.cprop_of |> Thm.dest_arg; | |
| 20149 | 420 | |
| 421 | fun focus goal ctxt = | |
| 422 | let | |
| 423 | val cert = Thm.cterm_of (Thm.theory_of_cterm goal); | |
| 424 | val t = Thm.term_of goal; | |
| 20162 | 425 | val ps = Term.variant_frees t (Term.strip_all_vars t); (*as they are printed :-*) | 
| 20149 | 426 | val (xs, Ts) = split_list ps; | 
| 20797 
c1f0bc7e7d80
renamed Variable.invent_fixes to Variable.variant_fixes;
 wenzelm parents: 
20579diff
changeset | 427 | val (xs', ctxt') = variant_fixes xs ctxt; | 
| 20220 | 428 | val ps' = ListPair.map (cert o Free) (xs', Ts); | 
| 429 | val goal' = fold forall_elim_prop ps' goal; | |
| 20149 | 430 | in ((ps', goal'), ctxt') end; | 
| 431 | ||
| 20303 | 432 | fun focus_subgoal i st = | 
| 433 | let | |
| 22691 | 434 | val all_vars = Thm.fold_terms Term.add_vars st []; | 
| 20303 | 435 | val no_binds = map (fn (xi, _) => (xi, NONE)) all_vars; | 
| 436 | in | |
| 437 | add_binds no_binds #> | |
| 438 | fold (declare_constraints o Var) all_vars #> | |
| 439 | focus (Thm.cprem_of st i) | |
| 440 | end; | |
| 441 | ||
| 442 | ||
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 443 | |
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 444 | (** implicit polymorphism **) | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 445 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 446 | (* warn_extra_tfrees *) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 447 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 448 | fun warn_extra_tfrees ctxt1 ctxt2 = | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 449 | let | 
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 450 | fun occs_typ a = Term.exists_subtype (fn TFree (b, _) => a = b | _ => false); | 
| 20162 | 451 | fun occs_free a x = | 
| 452 | (case def_type ctxt1 false (x, ~1) of | |
| 453 | SOME T => if occs_typ a T then I else cons (a, x) | |
| 454 | | NONE => cons (a, x)); | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 455 | |
| 20162 | 456 | val occs1 = type_occs_of ctxt1; | 
| 457 | val occs2 = type_occs_of ctxt2; | |
| 19911 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 458 | val extras = Symtab.fold (fn (a, xs) => | 
| 
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
 wenzelm parents: 
19899diff
changeset | 459 | 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 | 460 | val tfrees = map #1 extras |> sort_distinct string_ord; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 461 | val frees = map #2 extras |> sort_distinct string_ord; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 462 | in | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 463 | if null extras then () | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 464 |     else warning ("Introduced fixed type variable(s): " ^ commas tfrees ^ " in " ^
 | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 465 | space_implode " or " (map quote frees)) | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 466 | end; | 
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 467 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 468 | |
| 20149 | 469 | (* polymorphic terms *) | 
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 470 | |
| 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 471 | fun polymorphic ctxt ts = | 
| 20003 | 472 | let | 
| 473 | val ctxt' = fold declare_term ts ctxt; | |
| 20162 | 474 | val occs = type_occs_of ctxt; | 
| 475 | val occs' = type_occs_of ctxt'; | |
| 476 | val types = Symtab.fold (fn (a, _) => if Symtab.defined occs a then I else cons a) occs' []; | |
| 20003 | 477 | val idx = fold (Term.fold_types Term.maxidx_typ) ts ~1 + 1; | 
| 20509 | 478 | in map (TermSubst.generalize (types, []) idx) ts end; | 
| 20003 | 479 | |
| 19899 
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
 wenzelm parents: diff
changeset | 480 | end; |