| author | paulson | 
| Sat, 09 Jun 2001 08:41:25 +0200 | |
| changeset 11363 | a548865b1b6a | 
| parent 10830 | d19f9f4c35ee | 
| child 11526 | b2e4077979b5 | 
| permissions | -rw-r--r-- | 
| 5819 | 1 | (* Title: Pure/Isar/proof_context.ML | 
| 2 | ID: $Id$ | |
| 3 | Author: Markus Wenzel, TU Muenchen | |
| 8807 | 4 | License: GPL (GNU GENERAL PUBLIC LICENSE) | 
| 5819 | 5 | |
| 6 | Proof context information. | |
| 7 | *) | |
| 8 | ||
| 9 | signature PROOF_CONTEXT = | |
| 10 | sig | |
| 11 | type context | |
| 9470 | 12 | type exporter | 
| 5819 | 13 | exception CONTEXT of string * context | 
| 14 | val theory_of: context -> theory | |
| 15 | val sign_of: context -> Sign.sg | |
| 7557 | 16 | val prems_of: context -> thm list | 
| 5819 | 17 | val print_proof_data: theory -> unit | 
| 5874 | 18 | val init: theory -> context | 
| 9470 | 19 | val assumptions: context -> (cterm list * exporter) list | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 20 | val fixed_names: context -> string list | 
| 5819 | 21 | val read_typ: context -> string -> typ | 
| 9504 | 22 | val read_typ_no_norm: context -> string -> typ | 
| 5819 | 23 | val cert_typ: context -> typ -> typ | 
| 9504 | 24 | val cert_typ_no_norm: context -> typ -> typ | 
| 10583 | 25 | val get_skolem: context -> string -> string | 
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 26 | val intern_skolem: context -> term -> term | 
| 9133 | 27 | val extern_skolem: context -> term -> term | 
| 5874 | 28 | val read_termTs: context -> (string * typ) list -> term list * (indexname * typ) list | 
| 5819 | 29 | val read_term: context -> string -> term | 
| 30 | val read_prop: context -> string -> term | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 31 | val read_terms: context -> string list -> term list | 
| 8096 | 32 | val read_termT_pats: context -> (string * typ) list -> term list | 
| 33 | val read_term_pats: typ -> context -> string list -> term list | |
| 34 | val read_prop_pats: context -> string list -> term list | |
| 5819 | 35 | val cert_term: context -> term -> term | 
| 36 | val cert_prop: context -> term -> term | |
| 8096 | 37 | val cert_term_pats: typ -> context -> term list -> term list | 
| 38 | val cert_prop_pats: context -> term list -> term list | |
| 5819 | 39 | val declare_term: term -> context -> context | 
| 40 | val declare_terms: term list -> context -> context | |
| 7925 | 41 | val warn_extra_tfrees: context -> context -> context | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 42 | val generalizeT: context -> context -> typ -> typ | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 43 | val generalize: context -> context -> term -> term | 
| 9470 | 44 | val find_free: term -> string -> term option | 
| 45 | val export_wrt: bool -> context -> context option -> (thm -> thm Seq.seq) * (int -> tactic) list | |
| 10810 | 46 | val drop_schematic: indexname * term option -> indexname * term option | 
| 47 | val add_binds: (indexname * string option) list -> context -> context | |
| 48 | val add_binds_i: (indexname * term option) list -> context -> context | |
| 7925 | 49 | val auto_bind_goal: term -> context -> context | 
| 50 | val auto_bind_facts: string -> term list -> context -> context | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 51 | val match_bind: bool -> (string list * string) list -> context -> context | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 52 | val match_bind_i: bool -> (term list * term) list -> context -> context | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 53 | val read_propp: context * (string * (string list * string list)) list list | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 54 | -> context * (term * (term list * term list)) list list | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 55 | val cert_propp: context * (term * (term list * term list)) list list | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 56 | -> context * (term * (term list * term list)) list list | 
| 10554 | 57 | val read_propp_schematic: context * (string * (string list * string list)) list list | 
| 58 | -> context * (term * (term list * term list)) list list | |
| 59 | val cert_propp_schematic: context * (term * (term list * term list)) list list | |
| 60 | -> context * (term * (term list * term list)) list list | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 61 | val bind_propp: context * (string * (string list * string list)) list list | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 62 | -> context * (term list list * (context -> context)) | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 63 | val bind_propp_i: context * (term * (term list * term list)) list list | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 64 | -> context * (term list list * (context -> context)) | 
| 10554 | 65 | val bind_propp_schematic: context * (string * (string list * string list)) list list | 
| 66 | -> context * (term list list * (context -> context)) | |
| 67 | val bind_propp_schematic_i: context * (term * (term list * term list)) list list | |
| 68 | -> context * (term list list * (context -> context)) | |
| 6091 | 69 | val get_thm: context -> string -> thm | 
| 9566 | 70 | val get_thm_closure: context -> string -> thm | 
| 6091 | 71 | val get_thms: context -> string -> thm list | 
| 9566 | 72 | val get_thms_closure: context -> string -> thm list | 
| 6091 | 73 | val put_thm: string * thm -> context -> context | 
| 74 | val put_thms: string * thm list -> context -> context | |
| 75 | val put_thmss: (string * thm list) list -> context -> context | |
| 7606 | 76 | val reset_thms: string -> context -> context | 
| 9196 | 77 | val have_thmss: | 
| 78 | ((string * context attribute list) * (thm list * context attribute list) list) list -> | |
| 79 | context -> context * (string * thm list) list | |
| 9470 | 80 | val assume: exporter | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 81 | -> ((string * context attribute list) * (string * (string list * string list)) list) list | 
| 7270 | 82 | -> context -> context * ((string * thm list) list * thm list) | 
| 9470 | 83 | val assume_i: exporter | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 84 | -> ((string * context attribute list) * (term * (term list * term list)) list) list | 
| 7270 | 85 | -> context -> context * ((string * thm list) list * thm list) | 
| 8096 | 86 | val read_vars: context * (string list * string option) -> context * (string list * typ option) | 
| 87 | val cert_vars: context * (string list * typ option) -> context * (string list * typ option) | |
| 7411 | 88 | val fix: (string list * string option) list -> context -> context | 
| 7663 | 89 | val fix_i: (string list * typ option) list -> context -> context | 
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 90 | val bind_skolem: context -> string list -> term -> term | 
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 91 | val get_case: context -> string -> RuleCases.T | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 92 | val add_cases: (string * RuleCases.T) list -> context -> context | 
| 10830 | 93 | val apply_case: RuleCases.T -> context -> context * ((indexname * term option) list * term list) | 
| 10810 | 94 | val show_hyps: bool ref | 
| 95 | val pretty_thm: thm -> Pretty.T | |
| 96 | val verbose: bool ref | |
| 97 |   val setmp_verbose: ('a -> 'b) -> 'a -> 'b
 | |
| 98 | val print_binds: context -> unit | |
| 99 | val print_thms: context -> unit | |
| 100 | val print_cases: context -> unit | |
| 101 | val prems_limit: int ref | |
| 102 | val pretty_prems: context -> Pretty.T list | |
| 103 | val pretty_context: context -> Pretty.T list | |
| 5819 | 104 | val setup: (theory -> theory) list | 
| 105 | end; | |
| 106 | ||
| 8151 | 107 | signature PRIVATE_PROOF_CONTEXT = | 
| 5819 | 108 | sig | 
| 109 | include PROOF_CONTEXT | |
| 110 | val init_data: Object.kind -> (theory -> Object.T) * (context -> Object.T -> unit) | |
| 111 | -> theory -> theory | |
| 112 | val print_data: Object.kind -> context -> unit | |
| 113 | val get_data: Object.kind -> (Object.T -> 'a) -> context -> 'a | |
| 114 |   val put_data: Object.kind -> ('a -> Object.T) -> 'a -> context -> context
 | |
| 115 | end; | |
| 116 | ||
| 8151 | 117 | structure ProofContext: PRIVATE_PROOF_CONTEXT = | 
| 5819 | 118 | struct | 
| 119 | ||
| 120 | ||
| 121 | (** datatype context **) | |
| 122 | ||
| 9470 | 123 | type exporter = | 
| 124 | (cterm list -> thm -> thm Seq.seq) * (bool -> int -> (int -> tactic) list); | |
| 125 | ||
| 5819 | 126 | datatype context = | 
| 127 | Context of | |
| 6847 
f175f56c57a6
tuned output: print_context replaced by strings_of_context;
 wenzelm parents: 
6797diff
changeset | 128 |    {thy: theory,                                                        (*current theory*)
 | 
| 
f175f56c57a6
tuned output: print_context replaced by strings_of_context;
 wenzelm parents: 
6797diff
changeset | 129 | data: Object.T Symtab.table, (*user data*) | 
| 5819 | 130 | asms: | 
| 9470 | 131 | ((cterm list * exporter) list * (*assumes: A ==> _*) | 
| 6931 | 132 | (string * thm list) list) * | 
| 6847 
f175f56c57a6
tuned output: print_context replaced by strings_of_context;
 wenzelm parents: 
6797diff
changeset | 133 | ((string * string) list * string list), (*fixes: !!x. _*) | 
| 7606 | 134 | binds: (term * typ) option Vartab.table, (*term bindings*) | 
| 135 | thms: thm list option Symtab.table, (*local thms*) | |
| 8426 | 136 | cases: (string * RuleCases.T) list, (*local contexts*) | 
| 5819 | 137 | defs: | 
| 6847 
f175f56c57a6
tuned output: print_context replaced by strings_of_context;
 wenzelm parents: 
6797diff
changeset | 138 | typ Vartab.table * (*type constraints*) | 
| 
f175f56c57a6
tuned output: print_context replaced by strings_of_context;
 wenzelm parents: 
6797diff
changeset | 139 | sort Vartab.table * (*default sorts*) | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 140 | (string list * term list Symtab.table)}; (*used type variables*) | 
| 5819 | 141 | |
| 142 | exception CONTEXT of string * context; | |
| 143 | ||
| 144 | ||
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 145 | fun make_context (thy, data, asms, binds, thms, cases, defs) = | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 146 |   Context {thy = thy, data = data, asms = asms, binds = binds, thms = thms,
 | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 147 | cases = cases, defs = defs}; | 
| 5819 | 148 | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 149 | fun map_context f (Context {thy, data, asms, binds, thms, cases, defs}) =
 | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 150 | make_context (f (thy, data, asms, binds, thms, cases, defs)); | 
| 5819 | 151 | |
| 152 | fun theory_of (Context {thy, ...}) = thy;
 | |
| 153 | val sign_of = Theory.sign_of o theory_of; | |
| 154 | ||
| 7270 | 155 | fun prems_of (Context {asms = ((_, asms), _), ...}) = flat (map #2 asms);
 | 
| 156 | ||
| 5819 | 157 | |
| 158 | ||
| 159 | (** user data **) | |
| 160 | ||
| 161 | (* errors *) | |
| 162 | ||
| 163 | fun of_theory thy = "\nof theory " ^ Sign.str_of_sg (Theory.sign_of thy); | |
| 164 | ||
| 165 | fun err_inconsistent kinds = | |
| 166 |   error ("Attempt to merge different versions of " ^ commas_quote kinds ^ " proof data");
 | |
| 167 | ||
| 168 | fun err_dup_init thy kind = | |
| 169 |   error ("Duplicate initialization of " ^ quote kind ^ " proof data" ^ of_theory thy);
 | |
| 170 | ||
| 171 | fun err_undef ctxt kind = | |
| 172 |   raise CONTEXT ("Tried to access undefined " ^ quote kind ^ " proof data", ctxt);
 | |
| 173 | ||
| 174 | fun err_uninit ctxt kind = | |
| 175 |   raise CONTEXT ("Tried to access uninitialized " ^ quote kind ^ " proof data" ^
 | |
| 176 | of_theory (theory_of ctxt), ctxt); | |
| 177 | ||
| 178 | fun err_access ctxt kind = | |
| 179 |   raise CONTEXT ("Unauthorized access to " ^ quote kind ^ " proof data" ^
 | |
| 180 | of_theory (theory_of ctxt), ctxt); | |
| 181 | ||
| 182 | ||
| 183 | (* data kind 'Isar/proof_data' *) | |
| 184 | ||
| 185 | structure ProofDataDataArgs = | |
| 186 | struct | |
| 187 | val name = "Isar/proof_data"; | |
| 188 | type T = (Object.kind * ((theory -> Object.T) * (context -> Object.T -> unit))) Symtab.table; | |
| 189 | ||
| 190 | val empty = Symtab.empty; | |
| 6550 | 191 | val copy = I; | 
| 5819 | 192 | val prep_ext = I; | 
| 193 | fun merge tabs = Symtab.merge (Object.eq_kind o pairself fst) tabs | |
| 194 | handle Symtab.DUPS kinds => err_inconsistent kinds; | |
| 195 | fun print _ tab = Pretty.writeln (Pretty.strs (map #1 (Symtab.dest tab))); | |
| 196 | end; | |
| 197 | ||
| 198 | structure ProofDataData = TheoryDataFun(ProofDataDataArgs); | |
| 199 | val print_proof_data = ProofDataData.print; | |
| 200 | ||
| 201 | ||
| 202 | (* init proof data *) | |
| 203 | ||
| 204 | fun init_data kind meths thy = | |
| 205 | let | |
| 206 | val name = Object.name_of_kind kind; | |
| 207 | val tab = Symtab.update_new ((name, (kind, meths)), ProofDataData.get thy) | |
| 208 | handle Symtab.DUP _ => err_dup_init thy name; | |
| 209 | in thy |> ProofDataData.put tab end; | |
| 210 | ||
| 211 | ||
| 212 | (* access data *) | |
| 213 | ||
| 214 | fun lookup_data (ctxt as Context {data, ...}) kind =
 | |
| 215 | let | |
| 216 | val thy = theory_of ctxt; | |
| 217 | val name = Object.name_of_kind kind; | |
| 218 | in | |
| 219 | (case Symtab.lookup (ProofDataData.get thy, name) of | |
| 220 | Some (k, meths) => | |
| 221 | if Object.eq_kind (kind, k) then | |
| 222 | (case Symtab.lookup (data, name) of | |
| 223 | Some x => (x, meths) | |
| 224 | | None => err_undef ctxt name) | |
| 225 | else err_access ctxt name | |
| 226 | | None => err_uninit ctxt name) | |
| 227 | end; | |
| 228 | ||
| 229 | fun get_data kind f ctxt = | |
| 230 | let val (x, _) = lookup_data ctxt kind | |
| 231 | in f x handle Match => Object.kind_error kind end; | |
| 232 | ||
| 233 | fun print_data kind ctxt = | |
| 234 | let val (x, (_, prt)) = lookup_data ctxt kind | |
| 235 | in prt ctxt x end; | |
| 236 | ||
| 237 | fun put_data kind f x ctxt = | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 238 | (lookup_data ctxt kind; | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 239 | ctxt |> map_context (fn (thy, data, asms, binds, thms, cases, defs) => | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 240 | (thy, Symtab.update ((Object.name_of_kind kind, f x), data), asms, binds, thms, cases, defs))); | 
| 5819 | 241 | |
| 242 | ||
| 243 | (* init context *) | |
| 244 | ||
| 5874 | 245 | fun init thy = | 
| 246 | let val data = Symtab.map (fn (_, (f, _)) => f thy) (ProofDataData.get thy) in | |
| 8426 | 247 | make_context (thy, data, (([], []), ([], [])), Vartab.empty, Symtab.empty, [], | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 248 | (Vartab.empty, Vartab.empty, ([], Symtab.empty))) | 
| 5819 | 249 | end; | 
| 250 | ||
| 251 | ||
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 252 | (* get assumptions *) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 253 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 254 | fun assumptions (Context {asms = ((asms, _), _), ...}) = asms;
 | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 255 | fun fixed_names (Context {asms = (_, (fixes, _)), ...}) = map #2 fixes;
 | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 256 | fun used_table (Context {defs = (_, _, (_, tab)), ...}) = tab;
 | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 257 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 258 | |
| 8096 | 259 | |
| 7663 | 260 | (** default sorts and types **) | 
| 261 | ||
| 7670 | 262 | fun def_sort (Context {defs = (_, sorts, _), ...}) xi = Vartab.lookup (sorts, xi);
 | 
| 7663 | 263 | |
| 7670 | 264 | fun def_type (Context {binds, defs = (types, _, _), ...}) is_pat xi =
 | 
| 7663 | 265 | (case Vartab.lookup (types, xi) of | 
| 266 | None => | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 267 | if is_pat then None else | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 268 | (case Vartab.lookup (binds, xi) of | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 269 | Some (Some (_, T)) => Some (TypeInfer.polymorphicT T) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 270 | | _ => None) | 
| 7663 | 271 | | some => some); | 
| 272 | ||
| 273 | ||
| 5819 | 274 | |
| 275 | (** prepare types **) | |
| 276 | ||
| 9504 | 277 | local | 
| 278 | ||
| 279 | fun read_typ_aux read ctxt s = | |
| 280 | transform_error (read (sign_of ctxt, def_sort ctxt)) s | |
| 7663 | 281 | handle ERROR_MESSAGE msg => raise CONTEXT (msg, ctxt); | 
| 5819 | 282 | |
| 10554 | 283 | fun cert_typ_aux cert ctxt raw_T = | 
| 284 | cert (sign_of ctxt) raw_T | |
| 285 | handle TYPE (msg, _, _) => raise CONTEXT (msg, ctxt); | |
| 9504 | 286 | |
| 287 | in | |
| 288 | ||
| 289 | val read_typ = read_typ_aux Sign.read_typ; | |
| 290 | val read_typ_no_norm = read_typ_aux Sign.read_typ_no_norm; | |
| 291 | val cert_typ = cert_typ_aux Sign.certify_typ; | |
| 292 | val cert_typ_no_norm = cert_typ_aux Sign.certify_typ_no_norm; | |
| 293 | ||
| 294 | end; | |
| 295 | ||
| 5819 | 296 | |
| 7679 | 297 | (* internalize Skolem constants *) | 
| 298 | ||
| 9133 | 299 | fun fixes_of (Context {asms = (_, (fixes, _)), ...}) = fixes;
 | 
| 10583 | 300 | fun lookup_skolem ctxt x = assoc (fixes_of ctxt, x); | 
| 301 | fun get_skolem ctxt x = if_none (lookup_skolem ctxt x) x; | |
| 7679 | 302 | |
| 9325 | 303 | fun no_skolem no_internal ctxt x = | 
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 304 | if can Syntax.dest_skolem x then | 
| 7679 | 305 |     raise CONTEXT ("Illegal reference to internal Skolem constant: " ^ quote x, ctxt)
 | 
| 9325 | 306 | else if no_internal andalso can Syntax.dest_internal x then | 
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 307 |     raise CONTEXT ("Illegal reference to internal variable: " ^ quote x, ctxt)
 | 
| 7679 | 308 | else x; | 
| 309 | ||
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 310 | fun intern_skolem ctxt = | 
| 7679 | 311 | let | 
| 312 | fun intern (t as Free (x, T)) = | |
| 10583 | 313 | (case lookup_skolem ctxt (no_skolem true ctxt x) of | 
| 7679 | 314 | Some x' => Free (x', T) | 
| 315 | | None => t) | |
| 316 | | intern (t $ u) = intern t $ intern u | |
| 317 | | intern (Abs (x, T, t)) = Abs (x, T, intern t) | |
| 318 | | intern a = a; | |
| 319 | in intern end; | |
| 320 | ||
| 321 | ||
| 9133 | 322 | (* externalize Skolem constants -- for printing purposes only *) | 
| 323 | ||
| 324 | fun extern_skolem ctxt = | |
| 325 | let | |
| 326 | val rev_fixes = map Library.swap (fixes_of ctxt); | |
| 327 | ||
| 328 | fun extern (t as Free (x, T)) = | |
| 329 | (case assoc (rev_fixes, x) of | |
| 10583 | 330 | Some x' => Free (if lookup_skolem ctxt x' = Some x then x' else NameSpace.hidden x', T) | 
| 9133 | 331 | | None => t) | 
| 332 | | extern (t $ u) = extern t $ extern u | |
| 333 | | extern (Abs (x, T, t)) = Abs (x, T, extern t) | |
| 334 | | extern a = a; | |
| 335 | in extern end | |
| 336 | ||
| 8096 | 337 | |
| 5819 | 338 | (** prepare terms and propositions **) | 
| 339 | ||
| 340 | (* | |
| 341 | (1) read / certify wrt. signature of context | |
| 342 | (2) intern Skolem constants | |
| 343 | (3) expand term bindings | |
| 344 | *) | |
| 345 | ||
| 346 | ||
| 347 | (* read / certify wrt. signature *) (*exception ERROR*) (*exception TERM*) | |
| 348 | ||
| 5874 | 349 | fun read_def_termTs freeze sg (types, sorts, used) sTs = | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 350 | Sign.read_def_terms (sg, types, sorts) used freeze sTs; | 
| 5874 | 351 | |
| 352 | fun read_def_termT freeze sg defs sT = apfst hd (read_def_termTs freeze sg defs [sT]); | |
| 353 | ||
| 8096 | 354 | fun read_term_sg freeze sg defs s = #1 (read_def_termT freeze sg defs (s, TypeInfer.logicT)); | 
| 355 | fun read_prop_sg freeze sg defs s = #1 (read_def_termT freeze sg defs (s, propT)); | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 356 | fun read_terms_sg freeze sg defs = | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 357 | #1 o read_def_termTs freeze sg defs o map (rpair TypeInfer.logicT); | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 358 | fun read_props_sg freeze sg defs = #1 o read_def_termTs freeze sg defs o map (rpair propT); | 
| 5819 | 359 | |
| 360 | ||
| 361 | fun cert_term_sg sg t = Thm.term_of (Thm.cterm_of sg t); | |
| 362 | ||
| 363 | fun cert_prop_sg sg tm = | |
| 364 | let | |
| 365 | val ctm = Thm.cterm_of sg tm; | |
| 366 |     val {t, T, ...} = Thm.rep_cterm ctm;
 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 367 |   in if T = propT then t else raise TERM ("Term not of type prop", [t]) end;
 | 
| 5819 | 368 | |
| 369 | ||
| 370 | (* norm_term *) | |
| 371 | ||
| 372 | (*beta normal form for terms (not eta normal form), chase variables in | |
| 373 | bindings environment (code taken from Pure/envir.ML)*) | |
| 374 | ||
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 375 | fun unifyT ctxt (T, U) = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 376 | let val maxidx = Int.max (Term.maxidx_of_typ T, Term.maxidx_of_typ U) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 377 | in #1 (Type.unify (Sign.tsig_of (sign_of ctxt)) maxidx Vartab.empty (T, U)) end; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 378 | |
| 10554 | 379 | fun norm_term (ctxt as Context {binds, ...}) schematic =
 | 
| 5819 | 380 | let | 
| 381 | (*raised when norm has no effect on a term, to do sharing instead of copying*) | |
| 382 | exception SAME; | |
| 383 | ||
| 384 | fun norm (t as Var (xi, T)) = | |
| 385 | (case Vartab.lookup (binds, xi) of | |
| 7606 | 386 | Some (Some (u, U)) => | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 387 | let | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 388 | val env = unifyT ctxt (T, U) handle Type.TUNIFY => | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 389 |                   raise TYPE ("norm_term: ill-typed variable assigment", [T, U], [t, u]);
 | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 390 | val u' = Term.subst_TVars_Vartab env u; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 391 | in norm u' handle SAME => u' end | 
| 10554 | 392 | | _ => | 
| 393 | if schematic then raise SAME | |
| 394 |             else raise CONTEXT ("Unbound schematic variable: " ^ Syntax.string_of_vname xi, ctxt))
 | |
| 5819 | 395 | | norm (Abs (a, T, body)) = Abs (a, T, norm body) | 
| 396 | | norm (Abs (_, _, body) $ t) = normh (subst_bound (t, body)) | |
| 397 | | norm (f $ t) = | |
| 398 | ((case norm f of | |
| 399 | Abs (_, _, body) => normh (subst_bound (t, body)) | |
| 400 | | nf => nf $ (norm t handle SAME => t)) handle SAME => f $ norm t) | |
| 401 | | norm _ = raise SAME | |
| 402 | and normh t = norm t handle SAME => t | |
| 403 | in normh end; | |
| 404 | ||
| 405 | ||
| 6550 | 406 | (* dummy patterns *) | 
| 407 | ||
| 9540 | 408 | fun prepare_dummies t = #2 (Term.replace_dummy_patterns (1, t)); | 
| 6762 | 409 | |
| 9540 | 410 | fun reject_dummies ctxt t = Term.no_dummy_patterns t | 
| 411 |   handle TERM _ => raise CONTEXT ("Illegal dummy pattern(s) in term", ctxt);
 | |
| 6550 | 412 | |
| 413 | ||
| 5819 | 414 | (* read terms *) | 
| 415 | ||
| 10554 | 416 | local | 
| 417 | ||
| 418 | fun gen_read read app is_pat schematic (ctxt as Context {defs = (_, _, (used, _)), ...}) s =
 | |
| 7663 | 419 | (transform_error (read (sign_of ctxt) (def_type ctxt is_pat, def_sort ctxt, used)) s | 
| 420 | handle TERM (msg, _) => raise CONTEXT (msg, ctxt) | |
| 421 | | ERROR_MESSAGE msg => raise CONTEXT (msg, ctxt)) | |
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 422 | |> app (intern_skolem ctxt) | 
| 10554 | 423 | |> app (if is_pat then I else norm_term ctxt schematic) | 
| 7663 | 424 | |> app (if is_pat then prepare_dummies else (reject_dummies ctxt)); | 
| 5819 | 425 | |
| 10554 | 426 | in | 
| 427 | ||
| 428 | val read_termTs = gen_read (read_def_termTs false) (apfst o map) false false; | |
| 429 | val read_termT_pats = #1 oo gen_read (read_def_termTs false) (apfst o map) true false; | |
| 8096 | 430 | |
| 431 | fun read_term_pats T ctxt pats = read_termT_pats ctxt (map (rpair T) pats); | |
| 432 | val read_prop_pats = read_term_pats propT; | |
| 433 | ||
| 10554 | 434 | val read_term = gen_read (read_term_sg true) I false false; | 
| 435 | val read_prop = gen_read (read_prop_sg true) I false false; | |
| 436 | val read_terms = gen_read (read_terms_sg true) map false false; | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 437 | val read_props = gen_read (read_props_sg true) map false; | 
| 5819 | 438 | |
| 10554 | 439 | end; | 
| 440 | ||
| 5819 | 441 | |
| 442 | (* certify terms *) | |
| 443 | ||
| 10554 | 444 | local | 
| 445 | ||
| 446 | fun gen_cert cert is_pat schematic ctxt t = t | |
| 447 | |> (if is_pat then I else norm_term ctxt schematic) | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 448 | |> (fn t' => cert (sign_of ctxt) t' handle TERM (msg, _) => raise CONTEXT (msg, ctxt)); | 
| 5819 | 449 | |
| 10554 | 450 | in | 
| 8096 | 451 | |
| 10554 | 452 | val cert_term = gen_cert cert_term_sg false false; | 
| 453 | val cert_prop = gen_cert cert_prop_sg false false; | |
| 454 | val cert_props = map oo gen_cert cert_prop_sg false; | |
| 455 | ||
| 456 | fun cert_term_pats _ = map o gen_cert cert_term_sg true false; | |
| 457 | val cert_prop_pats = map o gen_cert cert_prop_sg true false; | |
| 458 | ||
| 459 | end; | |
| 5819 | 460 | |
| 461 | ||
| 462 | (* declare terms *) | |
| 463 | ||
| 10381 | 464 | local | 
| 465 | ||
| 5819 | 466 | val ins_types = foldl_aterms | 
| 467 | (fn (types, Free (x, T)) => Vartab.update (((x, ~1), T), types) | |
| 468 | | (types, Var v) => Vartab.update (v, types) | |
| 469 | | (types, _) => types); | |
| 470 | ||
| 471 | val ins_sorts = foldl_types (foldl_atyps | |
| 472 | (fn (sorts, TFree (x, S)) => Vartab.update (((x, ~1), S), sorts) | |
| 473 | | (sorts, TVar v) => Vartab.update (v, sorts) | |
| 474 | | (sorts, _) => sorts)); | |
| 475 | ||
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 476 | val ins_used = foldl_term_types (fn t => foldl_atyps | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 477 | (fn ((used, tab), TFree (x, _)) => (x ins used, Symtab.update_multi ((x, t), tab)) | 
| 5819 | 478 | | (used, _) => used)); | 
| 479 | ||
| 7663 | 480 | fun ins_skolem def_ty = foldr | 
| 5994 | 481 | (fn ((x, x'), types) => | 
| 7663 | 482 | (case def_ty x' of | 
| 5994 | 483 | Some T => Vartab.update (((x, ~1), T), types) | 
| 484 | | None => types)); | |
| 485 | ||
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 486 | fun map_defaults f = map_context (fn (thy, data, asms, binds, thms, cases, defs) => | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 487 | (thy, data, asms, binds, thms, cases, f defs)); | 
| 5819 | 488 | |
| 10381 | 489 | fun declare_syn (ctxt, t) = | 
| 5819 | 490 | ctxt | 
| 7670 | 491 | |> map_defaults (fn (types, sorts, used) => (ins_types (types, t), sorts, used)) | 
| 10381 | 492 | |> map_defaults (fn (types, sorts, used) => (types, ins_sorts (sorts, t), used)); | 
| 493 | ||
| 494 | fun declare_occ (ctxt as Context {asms = (_, (fixes, _)), ...}, t) =
 | |
| 495 | declare_syn (ctxt, t) | |
| 7670 | 496 | |> map_defaults (fn (types, sorts, used) => (types, sorts, ins_used (used, t))) | 
| 497 | |> map_defaults (fn (types, sorts, used) => | |
| 498 | (ins_skolem (fn x => Vartab.lookup (types, (x, ~1))) (fixes, types), sorts, used)); | |
| 5819 | 499 | |
| 10381 | 500 | in | 
| 5819 | 501 | |
| 10381 | 502 | fun declare_term t ctxt = declare_occ (ctxt, t); | 
| 503 | fun declare_terms ts ctxt = foldl declare_occ (ctxt, ts); | |
| 504 | fun predeclare_terms ts ctxt = foldl declare_syn (ctxt, ts); | |
| 505 | ||
| 506 | end; | |
| 5819 | 507 | |
| 508 | ||
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 509 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 510 | (** Hindley-Milner polymorphism **) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 511 | |
| 7925 | 512 | (* warn_extra_tfrees *) | 
| 513 | ||
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 514 | local | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 515 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 516 | fun used_free (a, ts) = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 517 | (case mapfilter (fn Free (x, _) => Some x | _ => None) ts of | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 518 | [] => None | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 519 | | xs => Some (a, xs)); | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 520 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 521 | fun warn_extra (names1: string list, tab1) (names2, tab2) = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 522 | if names1 = names2 then () | 
| 7925 | 523 | else | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 524 | let | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 525 | val extra = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 526 | Library.gen_rems Library.eq_fst (Symtab.dest tab2, Symtab.dest tab1) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 527 | |> mapfilter used_free; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 528 | val tfrees = map #1 extra; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 529 | val frees = Library.sort_strings (Library.distinct (flat (map #2 extra))); | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 530 | in | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 531 | if null extra then () | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 532 |       else warning ("Danger! Just introduced free type variable(s): " ^ commas tfrees ^ " in " ^
 | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 533 | space_implode " or " frees) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 534 | end; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 535 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 536 | in | 
| 7925 | 537 | |
| 538 | fun warn_extra_tfrees (ctxt1 as Context {defs = (_, _, used1), ...})
 | |
| 539 |     (ctxt2 as Context {defs = (_, _, used2), ...}) = (warn_extra used1 used2; ctxt2);
 | |
| 540 | ||
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 541 | end; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 542 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 543 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 544 | (* generalize type variables *) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 545 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 546 | fun gen_tfrees inner opt_outer = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 547 | let | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 548 | val inner_used = used_table inner; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 549 | val inner_fixes = fixed_names inner; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 550 | val (outer_used, outer_fixes) = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 551 | (case opt_outer of | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 552 | None => (Symtab.empty, []) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 553 | | Some ctxt => (used_table ctxt, fixed_names ctxt)); | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 554 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 555 | val extra_fixes = inner_fixes \\ outer_fixes; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 556 | fun still_fixed (Free (x, _)) = not (x mem_string extra_fixes) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 557 | | still_fixed _ = false; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 558 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 559 | fun add (gen, (a, xs)) = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 560 | if is_some (Symtab.lookup (outer_used, a)) orelse exists still_fixed xs | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 561 | then gen else a :: gen; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 562 | in Symtab.foldl add ([], inner_used) end; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 563 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 564 | fun generalizeT inner outer = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 565 | let | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 566 | val tfrees = gen_tfrees inner (Some outer); | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 567 | fun gen (x, S) = if x mem_string tfrees then TVar ((x, 0), S) else TFree (x, S); | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 568 | in Term.map_type_tfree gen end; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 569 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 570 | val generalize = Term.map_term_types oo generalizeT; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 571 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 572 | |
| 9553 | 573 | |
| 574 | (** export theorems **) | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 575 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 576 | fun get_free x (None, t as Free (y, _)) = if x = y then Some t else None | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 577 | | get_free _ (opt, _) = opt; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 578 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 579 | fun find_free t x = foldl_aterms (get_free x) (None, t); | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 580 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 581 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 582 | local | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 583 | |
| 9470 | 584 | fun export tfrees fixes goal_asms thm = | 
| 585 | thm | |
| 10810 | 586 | |> Tactic.norm_hhf | 
| 9470 | 587 | |> Seq.EVERY (rev (map op |> goal_asms)) | 
| 588 | |> Seq.map (fn rule => | |
| 589 | let | |
| 590 |       val {sign, prop, maxidx, ...} = Thm.rep_thm rule;
 | |
| 591 | val frees = map (Thm.cterm_of sign) (mapfilter (find_free prop) fixes); | |
| 592 | in | |
| 593 | rule | |
| 594 | |> Drule.forall_intr_list frees | |
| 10810 | 595 | |> Tactic.norm_hhf | 
| 9470 | 596 | |> Drule.tvars_intr_list tfrees | 
| 597 | end); | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 598 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 599 | fun diff_context inner None = (gen_tfrees inner None, fixed_names inner, assumptions inner) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 600 | | diff_context inner (Some outer) = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 601 | (gen_tfrees inner (Some outer), | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 602 | fixed_names inner \\ fixed_names outer, | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 603 | Library.drop (length (assumptions outer), assumptions inner)); | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 604 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 605 | in | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 606 | |
| 9470 | 607 | fun export_wrt is_goal inner opt_outer = | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 608 | let | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 609 | val (tfrees, fixes, asms) = diff_context inner opt_outer; | 
| 9470 | 610 | val goal_asms = map (fn (cprops, (exp, _)) => (map Drule.mk_cgoal cprops, exp)) asms; | 
| 611 | val tacs = flat (map (fn (cprops, (_, f)) => f is_goal (length cprops)) asms); | |
| 612 | in (export tfrees fixes goal_asms, tacs) end; | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 613 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 614 | end; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 615 | |
| 7925 | 616 | |
| 5819 | 617 | |
| 618 | (** bindings **) | |
| 619 | ||
| 620 | (* update_binds *) | |
| 621 | ||
| 7606 | 622 | fun del_bind (ctxt, xi) = | 
| 623 | ctxt | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 624 | |> map_context (fn (thy, data, asms, binds, thms, cases, defs) => | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 625 | (thy, data, asms, Vartab.update ((xi, None), binds), thms, cases, defs)); | 
| 7606 | 626 | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 627 | fun upd_bind (ctxt, ((x, i), t)) = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 628 | let | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 629 | val T = Term.fastype_of t; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 630 | val t' = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 631 | if null (Term.term_tvars t \\ Term.typ_tvars T) then t | 
| 8637 | 632 | else Var ((x ^ "_has_extra_type_vars_on_rhs", i), T); | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 633 | in | 
| 5819 | 634 | ctxt | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 635 | |> declare_term t' | 
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 636 | |> map_context (fn (thy, data, asms, binds, thms, cases, defs) => | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 637 | (thy, data, asms, Vartab.update (((x, i), Some (t', T)), binds), thms, cases, defs)) | 
| 5819 | 638 | end; | 
| 639 | ||
| 7606 | 640 | fun del_upd_bind (ctxt, (xi, None)) = del_bind (ctxt, xi) | 
| 641 | | del_upd_bind (ctxt, (xi, Some t)) = upd_bind (ctxt, (xi, t)); | |
| 642 | ||
| 5819 | 643 | fun update_binds bs ctxt = foldl upd_bind (ctxt, bs); | 
| 7606 | 644 | fun delete_update_binds bs ctxt = foldl del_upd_bind (ctxt, bs); | 
| 645 | ||
| 5819 | 646 | |
| 8096 | 647 | (* simult_matches *) | 
| 648 | ||
| 10554 | 649 | local | 
| 650 | ||
| 651 | val add_vars = Term.foldl_aterms (fn (vs, Var (xi, _)) => xi ins vs | (vs, _) => vs); | |
| 652 | fun vars_of ts = foldl add_vars ([], ts); | |
| 653 | ||
| 654 | in | |
| 655 | ||
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 656 | fun simult_matches ctxt [] = [] | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 657 | | simult_matches ctxt pairs = | 
| 8096 | 658 | let | 
| 10554 | 659 |         fun fail () = raise CONTEXT ("Pattern match failed!", ctxt);
 | 
| 660 | ||
| 8096 | 661 | val maxidx = foldl (fn (i, (t1, t2)) => | 
| 662 | Int.max (i, Int.max (Term.maxidx_of_term t1, Term.maxidx_of_term t2))) (~1, pairs); | |
| 10554 | 663 | val envs = Unify.smash_unifiers (sign_of ctxt, Envir.empty maxidx, | 
| 664 | map swap pairs); (*prefer assignment of variables from patterns*) | |
| 665 | val env = | |
| 8096 | 666 | (case Seq.pull envs of | 
| 10554 | 667 | None => fail () | 
| 668 | | Some (env, _) => env); (*ignore further results*) | |
| 669 | val domain = filter_out Term.is_replaced_dummy_pattern (vars_of (map #1 pairs)); | |
| 670 | val _ = (*may not assign variables from text*) | |
| 671 | if null (map #1 (Envir.alist_of env) inter vars_of (map #2 pairs)) then () | |
| 672 | else fail (); | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 673 | fun norm_bind (xi, t) = if xi mem domain then Some (xi, Envir.norm_term env t) else None; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 674 | in mapfilter norm_bind (Envir.alist_of env) end; | 
| 8096 | 675 | |
| 10554 | 676 | end; | 
| 677 | ||
| 8096 | 678 | |
| 679 | (* add_binds(_i) *) | |
| 5819 | 680 | |
| 7925 | 681 | local | 
| 682 | ||
| 5819 | 683 | fun gen_bind prep (ctxt, (xi as (x, _), raw_t)) = | 
| 7606 | 684 | ctxt |> delete_update_binds [(xi, apsome (prep ctxt) raw_t)]; | 
| 5819 | 685 | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 686 | fun gen_binds prep binds ctxt = foldl (gen_bind prep) (ctxt, binds); | 
| 7925 | 687 | |
| 10810 | 688 | in | 
| 689 | ||
| 10554 | 690 | fun drop_schematic (b as (xi, Some t)) = if null (Term.term_vars t) then b else (xi, None) | 
| 691 | | drop_schematic b = b; | |
| 692 | ||
| 5819 | 693 | val add_binds = gen_binds read_term; | 
| 694 | val add_binds_i = gen_binds cert_term; | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 695 | |
| 10554 | 696 | val auto_bind_goal = add_binds_i o map drop_schematic o AutoBind.goal; | 
| 697 | val auto_bind_facts = (add_binds_i o map drop_schematic) oo AutoBind.facts; | |
| 7925 | 698 | |
| 699 | end; | |
| 5819 | 700 | |
| 701 | ||
| 8096 | 702 | (* match_bind(_i) *) | 
| 5819 | 703 | |
| 8096 | 704 | local | 
| 705 | ||
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 706 | fun prep_bind prep_pats (ctxt, (raw_pats, t)) = | 
| 5819 | 707 | let | 
| 8096 | 708 | val ctxt' = declare_term t ctxt; | 
| 709 | val pats = prep_pats (fastype_of t) ctxt' raw_pats; | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 710 | val binds = simult_matches ctxt' (map (rpair t) pats); | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 711 | in (ctxt', binds) end; | 
| 7670 | 712 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 713 | fun gen_binds prep_terms prep_pats gen raw_binds ctxt = | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 714 | let | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 715 | val ts = prep_terms ctxt (map snd raw_binds); | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 716 | val (ctxt', binds) = | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 717 | apsnd flat (foldl_map (prep_bind prep_pats) (ctxt, map fst raw_binds ~~ ts)); | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 718 | val binds' = | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 719 | if gen then map (apsnd (generalize ctxt' ctxt)) binds | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 720 | else binds; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 721 | val binds'' = map (apsnd Some) binds'; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 722 | in | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 723 | warn_extra_tfrees ctxt | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 724 | (if gen then ctxt (*sic!*) |> declare_terms (map #2 binds') |> add_binds_i binds'' | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 725 | else ctxt' |> add_binds_i binds'') | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 726 | end; | 
| 8096 | 727 | |
| 728 | in | |
| 5935 | 729 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 730 | val match_bind = gen_binds read_terms read_term_pats; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 731 | val match_bind_i = gen_binds (map o cert_term) cert_term_pats; | 
| 8096 | 732 | |
| 733 | end; | |
| 5935 | 734 | |
| 735 | ||
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 736 | (* propositions with patterns *) | 
| 5935 | 737 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 738 | local | 
| 8096 | 739 | |
| 10554 | 740 | fun prep_propp schematic prep_props prep_pats (context, args) = | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 741 | let | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 742 | fun prep ((ctxt, prop :: props), (_, (raw_pats1, raw_pats2))) = | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 743 | let | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 744 | val ctxt' = declare_term prop ctxt; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 745 | val pats = prep_pats ctxt' (raw_pats1 @ raw_pats2); (*simultaneous type inference!*) | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 746 | val len1 = length raw_pats1; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 747 | in ((ctxt', props), (prop, (take (len1, pats), drop (len1, pats)))) end | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 748 | | prep _ = sys_error "prep_propp"; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 749 | val ((context', _), propp) = foldl_map (foldl_map prep) | 
| 10554 | 750 | ((context, prep_props schematic context (flat (map (map fst) args))), args); | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 751 | in (context', propp) end; | 
| 5935 | 752 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 753 | fun matches ctxt (prop, (pats1, pats2)) = | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 754 | simult_matches ctxt (map (rpair prop) pats1 @ map (rpair (Logic.strip_imp_concl prop)) pats2); | 
| 8096 | 755 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 756 | fun gen_bind_propp prepp (ctxt, raw_args) = | 
| 8096 | 757 | let | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 758 | val (ctxt', args) = prepp (ctxt, raw_args); | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 759 | val binds = flat (flat (map (map (matches ctxt')) args)); | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 760 | val propss = map (map #1) args; | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 761 | |
| 10554 | 762 | (*generalize result: context evaluated now, binds added later*) | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 763 | val gen = generalize ctxt' ctxt; | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 764 | fun gen_binds c = c |> add_binds_i (map (apsnd (Some o gen)) binds); | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 765 | in (ctxt' |> add_binds_i (map (apsnd Some) binds), (propss, gen_binds)) end; | 
| 8096 | 766 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 767 | in | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 768 | |
| 10554 | 769 | val read_propp = prep_propp false read_props read_prop_pats; | 
| 770 | val cert_propp = prep_propp false cert_props cert_prop_pats; | |
| 771 | val read_propp_schematic = prep_propp true read_props read_prop_pats; | |
| 772 | val cert_propp_schematic = prep_propp true cert_props cert_prop_pats; | |
| 773 | ||
| 774 | val bind_propp = gen_bind_propp read_propp; | |
| 775 | val bind_propp_i = gen_bind_propp cert_propp; | |
| 776 | val bind_propp_schematic = gen_bind_propp read_propp_schematic; | |
| 777 | val bind_propp_schematic_i = gen_bind_propp cert_propp_schematic; | |
| 6789 | 778 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 779 | end; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 780 | |
| 6789 | 781 | |
| 5819 | 782 | |
| 783 | (** theorems **) | |
| 784 | ||
| 6091 | 785 | (* get_thm(s) *) | 
| 5819 | 786 | |
| 9566 | 787 | (*beware of proper order of evaluation!*) | 
| 5819 | 788 | |
| 9566 | 789 | fun retrieve_thms f g (ctxt as Context {thy, thms, ...}) =
 | 
| 790 | let | |
| 791 | val sg_ref = Sign.self_ref (Theory.sign_of thy); | |
| 792 | val get_from_thy = f thy; | |
| 793 | in | |
| 794 | fn name => | |
| 795 | (case Symtab.lookup (thms, name) of | |
| 796 | Some (Some ths) => map (Thm.transfer_sg (Sign.deref sg_ref)) ths | |
| 797 | | _ => get_from_thy name) |> g name | |
| 798 | end; | |
| 5819 | 799 | |
| 9566 | 800 | val get_thm = retrieve_thms PureThy.get_thms PureThy.single_thm; | 
| 801 | val get_thm_closure = retrieve_thms PureThy.get_thms_closure PureThy.single_thm; | |
| 802 | val get_thms = retrieve_thms PureThy.get_thms (K I); | |
| 803 | val get_thms_closure = retrieve_thms PureThy.get_thms_closure (K I); | |
| 5819 | 804 | |
| 805 | ||
| 6091 | 806 | (* put_thm(s) *) | 
| 5819 | 807 | |
| 7479 | 808 | fun put_thms ("", _) = I
 | 
| 809 | | put_thms (name, ths) = map_context | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 810 | (fn (thy, data, asms, binds, thms, cases, defs) => | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 811 | (thy, data, asms, binds, Symtab.update ((name, Some ths), thms), cases, defs)); | 
| 5819 | 812 | |
| 6091 | 813 | fun put_thm (name, th) = put_thms (name, [th]); | 
| 5819 | 814 | |
| 6091 | 815 | fun put_thmss [] ctxt = ctxt | 
| 816 | | put_thmss (th :: ths) ctxt = ctxt |> put_thms th |> put_thmss ths; | |
| 5819 | 817 | |
| 818 | ||
| 7606 | 819 | (* reset_thms *) | 
| 820 | ||
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 821 | fun reset_thms name = map_context (fn (thy, data, asms, binds, thms, cases, defs) => | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 822 | (thy, data, asms, binds, Symtab.update ((name, None), thms), cases, defs)); | 
| 7606 | 823 | |
| 824 | ||
| 6091 | 825 | (* have_thmss *) | 
| 5819 | 826 | |
| 9196 | 827 | fun have_thss (ctxt, ((name, more_attrs), ths_attrs)) = | 
| 5819 | 828 | let | 
| 829 | fun app ((ct, ths), (th, attrs)) = | |
| 6091 | 830 | let val (ct', th') = Thm.applys_attributes ((ct, th), attrs @ more_attrs) | 
| 5819 | 831 | in (ct', th' :: ths) end | 
| 832 | val (ctxt', rev_thms) = foldl app ((ctxt, []), ths_attrs); | |
| 9196 | 833 | val thms = flat (rev rev_thms); | 
| 6091 | 834 | in (ctxt' |> put_thms (name, thms), (name, thms)) end; | 
| 5819 | 835 | |
| 9196 | 836 | fun have_thmss args ctxt = foldl_map have_thss (ctxt, args); | 
| 837 | ||
| 5819 | 838 | |
| 839 | ||
| 840 | (** assumptions **) | |
| 841 | ||
| 842 | (* assume *) | |
| 843 | ||
| 7270 | 844 | local | 
| 6797 | 845 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 846 | fun add_assm (ctxt, ((name, attrs), props)) = | 
| 5819 | 847 | let | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 848 | val cprops = map (Thm.cterm_of (sign_of ctxt)) props; | 
| 10810 | 849 | val asms = map (Tactic.norm_hhf o Drule.assume_goal) cprops; | 
| 5919 | 850 | |
| 851 | val ths = map (fn th => ([th], [])) asms; | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 852 | val (ctxt', [(_, thms)]) = | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 853 | ctxt | 
| 6797 | 854 | |> auto_bind_facts name props | 
| 9196 | 855 | |> have_thmss [((name, attrs @ [Drule.tag_assumption]), ths)]; | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 856 | in (ctxt', (cprops, (name, asms), (name, thms))) end; | 
| 5819 | 857 | |
| 9470 | 858 | fun gen_assms prepp exp args ctxt = | 
| 859 | let | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 860 | val (ctxt1, propss) = prepp (ctxt, map snd args); | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 861 | val (ctxt2, results) = foldl_map add_assm (ctxt1, map fst args ~~ propss); | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 862 | |
| 9470 | 863 | val cprops = flat (map #1 results); | 
| 864 | val asmss = map #2 results; | |
| 865 | val thmss = map #3 results; | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 866 | val ctxt3 = | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 867 | ctxt2 | 
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 868 | |> map_context (fn (thy, data, ((asms_ct, asms_th), fixes), binds, thms, cases, defs) => | 
| 9470 | 869 | (thy, data, ((asms_ct @ [(cprops, exp)], asms_th @ asmss), fixes), binds, thms, | 
| 870 | cases, defs)); | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 871 | in (warn_extra_tfrees ctxt ctxt3, (thmss, prems_of ctxt3)) end; | 
| 5819 | 872 | |
| 7270 | 873 | in | 
| 874 | ||
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 875 | val assume = gen_assms (apsnd #1 o bind_propp); | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 876 | val assume_i = gen_assms (apsnd #1 o bind_propp_i); | 
| 7270 | 877 | |
| 878 | end; | |
| 5819 | 879 | |
| 880 | ||
| 8096 | 881 | (* variables *) | 
| 882 | ||
| 10381 | 883 | local | 
| 884 | ||
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 885 | fun prep_vars prep_typ (ctxt, (xs, raw_T)) = | 
| 8096 | 886 | let | 
| 9325 | 887 | val _ = (case filter (not o Syntax.is_identifier) (map (no_skolem false ctxt) xs) of | 
| 8096 | 888 |       [] => () | bads => raise CONTEXT ("Bad variable name(s): " ^ commas_quote bads, ctxt));
 | 
| 889 | ||
| 890 | val opt_T = apsome (prep_typ ctxt) raw_T; | |
| 891 | val T = if_none opt_T TypeInfer.logicT; | |
| 10381 | 892 | val ctxt' = ctxt |> predeclare_terms (map (fn x => Free (x, T)) xs); | 
| 8096 | 893 | in (ctxt', (xs, opt_T)) end; | 
| 894 | ||
| 10381 | 895 | in | 
| 896 | ||
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 897 | val read_vars = prep_vars read_typ; | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 898 | val cert_vars = prep_vars cert_typ; | 
| 8096 | 899 | |
| 10381 | 900 | end; | 
| 901 | ||
| 8096 | 902 | |
| 5819 | 903 | (* fix *) | 
| 904 | ||
| 8096 | 905 | local | 
| 906 | ||
| 907 | fun add_vars xs (fixes, names) = | |
| 908 | let | |
| 909 | val xs' = variantlist (xs, names); | |
| 910 | val fixes' = (xs ~~ map Syntax.skolem xs') @ fixes; | |
| 911 | val names' = xs' @ names; | |
| 912 | in (fixes', names') end; | |
| 913 | ||
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 914 | fun map_vars f = map_context (fn (thy, data, (assumes, vars), binds, thms, cases, defs) => | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 915 | (thy, data, (assumes, f vars), binds, thms, cases, defs)); | 
| 5819 | 916 | |
| 8096 | 917 | fun gen_fix prep raw_vars ctxt = | 
| 918 | let | |
| 919 | val (ctxt', varss) = foldl_map prep (ctxt, raw_vars); | |
| 920 | val xs = flat (map fst varss); | |
| 921 | in | |
| 922 | (case Library.duplicates xs of | |
| 923 | [] => () | |
| 924 |     | dups => raise CONTEXT ("Duplicate variable name(s): " ^ commas_quote dups, ctxt));
 | |
| 925 | ctxt' |> map_vars (add_vars xs) | |
| 926 | end; | |
| 5819 | 927 | |
| 8096 | 928 | in | 
| 7679 | 929 | |
| 8096 | 930 | val fix = gen_fix read_vars; | 
| 931 | val fix_i = gen_fix cert_vars; | |
| 932 | ||
| 933 | end; | |
| 5819 | 934 | |
| 6895 | 935 | |
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 936 | (*Note: improper use may result in variable capture / dynamic scoping!*) | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 937 | fun bind_skolem ctxt xs = | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 938 | let | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 939 | val ctxt' = ctxt |> fix_i [(xs, None)]; | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 940 | fun bind (t as Free (x, T)) = | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 941 | if x mem_string xs then | 
| 10583 | 942 | (case lookup_skolem ctxt' x of Some x' => Free (x', T) | None => t) | 
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 943 | else t | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 944 | | bind (t $ u) = bind t $ bind u | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 945 | | bind (Abs (x, T, t)) = Abs (x, T, bind t) | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 946 | | bind a = a; | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 947 | in bind end; | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 948 | |
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 949 | |
| 5819 | 950 | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 951 | (** cases **) | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 952 | |
| 10810 | 953 | fun check_case ctxt name {fixes, assumes, binds} =
 | 
| 954 | if null (foldr Term.add_typ_tvars (map snd fixes, [])) andalso | |
| 955 | null (foldr Term.add_term_vars (assumes, [])) then | |
| 956 |       {fixes = fixes, assumes = assumes, binds = map drop_schematic binds}
 | |
| 8403 | 957 |   else raise CONTEXT ("Illegal schematic variable(s) in case " ^ quote name, ctxt);
 | 
| 958 | ||
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 959 | fun get_case (ctxt as Context {cases, ...}) name =
 | 
| 8426 | 960 | (case assoc (cases, name) of | 
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 961 |     None => raise CONTEXT ("Unknown case: " ^ quote name, ctxt)
 | 
| 10810 | 962 | | Some c => check_case ctxt name c); | 
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 963 | |
| 8384 | 964 | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 965 | fun add_cases xs = map_context (fn (thy, data, asms, binds, thms, cases, defs) => | 
| 8426 | 966 | (thy, data, asms, binds, thms, rev (filter_out (equal "" o #1) xs) @ cases, defs)); | 
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 967 | |
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 968 | |
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 969 | |
| 10810 | 970 | (** print context information **) | 
| 971 | ||
| 972 | val show_hyps = ref false; | |
| 973 | ||
| 974 | fun pretty_thm thm = | |
| 975 | if ! show_hyps then setmp Display.show_hyps true Display.pretty_thm_no_quote thm | |
| 976 | else Display.pretty_cterm (#prop (Thm.crep_thm thm)); | |
| 977 | ||
| 978 | val verbose = ref false; | |
| 979 | fun verb f x = if ! verbose then f (x ()) else []; | |
| 980 | fun verb_single x = verb Library.single x; | |
| 981 | ||
| 982 | fun setmp_verbose f x = Library.setmp verbose true f x; | |
| 983 | ||
| 984 | fun pretty_items prt name items = | |
| 985 | let | |
| 986 | fun prt_itms (name, [x]) = Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt x] | |
| 987 | | prt_itms (name, xs) = Pretty.big_list (name ^ ":") (map prt xs); | |
| 988 | in | |
| 989 | if null items andalso not (! verbose) then [] | |
| 990 | else [Pretty.big_list name (map prt_itms items)] | |
| 991 | end; | |
| 992 | ||
| 993 | ||
| 994 | (* term bindings *) | |
| 995 | ||
| 996 | val smash_option = fn (_, None) => None | (xi, Some b) => Some (xi, b); | |
| 997 | ||
| 998 | fun pretty_binds (ctxt as Context {binds, ...}) =
 | |
| 999 | let | |
| 1000 | val prt_term = Sign.pretty_term (sign_of ctxt); | |
| 1001 | fun prt_bind (xi, (t, T)) = prt_term (Logic.mk_equals (Var (xi, T), t)); | |
| 1002 | val bs = mapfilter smash_option (Vartab.dest binds); | |
| 1003 | in | |
| 1004 | if null bs andalso not (! verbose) then [] | |
| 1005 | else [Pretty.big_list "term bindings:" (map prt_bind bs)] | |
| 1006 | end; | |
| 1007 | ||
| 1008 | val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds; | |
| 1009 | ||
| 1010 | ||
| 1011 | (* local theorems *) | |
| 1012 | ||
| 1013 | fun pretty_thms (Context {thms, ...}) =
 | |
| 1014 | pretty_items pretty_thm "facts:" (mapfilter smash_option (Symtab.dest thms)); | |
| 1015 | ||
| 1016 | val print_thms = Pretty.writeln o Pretty.chunks o pretty_thms; | |
| 1017 | ||
| 1018 | ||
| 1019 | (* local contexts *) | |
| 1020 | ||
| 10830 | 1021 | fun apply_case ({fixes, assumes, binds}: RuleCases.T) ctxt =
 | 
| 10810 | 1022 | let | 
| 10830 | 1023 | fun bind (c, (x, T)) = (c |> fix_i [([x], Some T)], bind_skolem c [x] (Free (x, T))); | 
| 1024 | val (ctxt', xs) = foldl_map bind (ctxt, fixes); | |
| 10810 | 1025 | fun app t = foldl Term.betapply (t, xs); | 
| 10830 | 1026 | in (ctxt', (map (apsnd (apsome app)) binds, map app assumes)) end; | 
| 10810 | 1027 | |
| 1028 | fun pretty_cases (ctxt as Context {cases, ...}) =
 | |
| 1029 | let | |
| 1030 | val prt_term = Sign.pretty_term (sign_of ctxt); | |
| 1031 | fun prt_let (xi, t) = Pretty.block | |
| 10818 | 1032 | [Pretty.quote (prt_term (Var (xi, Term.fastype_of t))), Pretty.str " =", Pretty.brk 1, | 
| 10810 | 1033 | Pretty.quote (prt_term t)]; | 
| 1034 | ||
| 1035 | fun prt_sect _ _ _ [] = [] | |
| 1036 | | prt_sect s sep prt xs = [Pretty.block (Pretty.breaks (Pretty.str s :: | |
| 1037 | flat (Library.separate sep (map (Library.single o prt) xs))))]; | |
| 1038 | ||
| 10830 | 1039 | fun prt_case (name, (fixes, (lets, asms))) = Pretty.block (Pretty.fbreaks | 
| 10810 | 1040 | (Pretty.str (name ^ ":") :: | 
| 10830 | 1041 | prt_sect "fix" [] (prt_term o Free) fixes @ | 
| 10810 | 1042 | prt_sect "let" [Pretty.str "and"] prt_let | 
| 1043 | (mapfilter (fn (xi, Some t) => Some (xi, t) | _ => None) lets) @ | |
| 1044 | prt_sect "assume" [] (Pretty.quote o prt_term) asms)); | |
| 1045 | ||
| 1046 | val cases' = rev (Library.gen_distinct Library.eq_fst cases); | |
| 1047 | in | |
| 1048 | if null cases andalso not (! verbose) then [] | |
| 10830 | 1049 | else [Pretty.big_list "cases:" | 
| 1050 | (map (prt_case o apsnd (fn c => (#fixes c, #2 (apply_case c ctxt)))) cases')] | |
| 10810 | 1051 | end; | 
| 1052 | ||
| 1053 | val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases; | |
| 1054 | ||
| 1055 | ||
| 1056 | (* prems *) | |
| 1057 | ||
| 1058 | val prems_limit = ref 10; | |
| 1059 | ||
| 1060 | fun pretty_prems ctxt = | |
| 1061 | let | |
| 1062 | val limit = ! prems_limit; | |
| 1063 | val prems = prems_of ctxt; | |
| 1064 | val len = length prems; | |
| 1065 | val prt_prems = | |
| 1066 | (if len <= limit then [] else [Pretty.str "..."]) @ | |
| 1067 | map pretty_thm (Library.drop (len - limit, prems)); | |
| 1068 | in if null prems then [] else [Pretty.big_list "prems:" prt_prems] end; | |
| 1069 | ||
| 1070 | ||
| 1071 | (* main context *) | |
| 1072 | ||
| 1073 | fun pretty_context (ctxt as Context {asms = (_, (fixes, _)), cases,
 | |
| 1074 | defs = (types, sorts, (used, _)), ...}) = | |
| 1075 | let | |
| 1076 | val sign = sign_of ctxt; | |
| 1077 | ||
| 1078 | val prt_term = Sign.pretty_term sign; | |
| 1079 | val prt_typ = Sign.pretty_typ sign; | |
| 1080 | val prt_sort = Sign.pretty_sort sign; | |
| 1081 | ||
| 1082 | (*theory*) | |
| 1083 | val pretty_thy = Pretty.block [Pretty.str "Theory:", Pretty.brk 1, Sign.pretty_sg sign]; | |
| 1084 | ||
| 1085 | (*fixes*) | |
| 1086 | fun prt_fix (x, x') = Pretty.block | |
| 1087 | [prt_term (Syntax.free x), Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')]; | |
| 1088 | ||
| 1089 | fun prt_fixes [] = [] | |
| 1090 | | prt_fixes xs = [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 :: | |
| 1091 | Pretty.commas (map prt_fix xs))]; | |
| 1092 | ||
| 1093 | (*defaults*) | |
| 1094 | fun prt_atom prt prtT (x, X) = Pretty.block | |
| 1095 | [prt x, Pretty.str " ::", Pretty.brk 1, prtT X]; | |
| 1096 | ||
| 1097 | fun prt_var (x, ~1) = prt_term (Syntax.free x) | |
| 1098 | | prt_var xi = prt_term (Syntax.var xi); | |
| 1099 | ||
| 1100 | fun prt_varT (x, ~1) = prt_typ (TFree (x, [])) | |
| 1101 | | prt_varT xi = prt_typ (TVar (xi, [])); | |
| 1102 | ||
| 1103 | val prt_defT = prt_atom prt_var prt_typ; | |
| 1104 | val prt_defS = prt_atom prt_varT prt_sort; | |
| 1105 | in | |
| 1106 | verb_single (K pretty_thy) @ | |
| 1107 | prt_fixes (rev (filter_out (can Syntax.dest_internal o #1) fixes)) @ | |
| 1108 | pretty_prems ctxt @ | |
| 1109 | verb pretty_binds (K ctxt) @ | |
| 1110 | verb pretty_thms (K ctxt) @ | |
| 1111 | verb pretty_cases (K ctxt) @ | |
| 1112 | verb_single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @ | |
| 1113 | verb_single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts))) @ | |
| 1114 |     verb_single (fn () => Pretty.strs ("used type variable names:" :: used))
 | |
| 1115 | end; | |
| 1116 | ||
| 1117 | ||
| 1118 | ||
| 5819 | 1119 | (** theory setup **) | 
| 1120 | ||
| 1121 | val setup = [ProofDataData.init]; | |
| 1122 | ||
| 1123 | ||
| 1124 | end; |