| author | wenzelm | 
| Thu, 13 Apr 2006 12:00:59 +0200 | |
| changeset 19421 | 1051bde222db | 
| parent 19411 | 8e207f560240 | 
| child 19422 | bba26da0f227 | 
| permissions | -rw-r--r-- | 
| 5819 | 1 | (* Title: Pure/Isar/proof_context.ML | 
| 2 | ID: $Id$ | |
| 3 | Author: Markus Wenzel, TU Muenchen | |
| 4 | ||
| 19001 | 5 | The key concept of Isar proof contexts: elevates primitive local | 
| 6 | reasoning Gamma |- phi to a structured concept, with generic context | |
| 7 | elements, polymorphic abbreviations, and extra-logical data. | |
| 5819 | 8 | *) | 
| 9 | ||
| 10 | signature PROOF_CONTEXT = | |
| 11 | sig | |
| 17756 | 12 | type context (*= Context.proof*) | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 13 | type export | 
| 5819 | 14 | val theory_of: context -> theory | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 15 | val init: theory -> context | 
| 19387 | 16 | val full_name: context -> bstring -> string | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 17 | val set_body: bool -> context -> context | 
| 18743 | 18 | val restore_body: context -> context -> context | 
| 17451 | 19 | val assms_of: context -> term list | 
| 7557 | 20 | val prems_of: context -> thm list | 
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 21 | val fact_index_of: context -> FactIndex.T | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 22 | val is_fixed: context -> string -> bool | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 23 | val is_known: context -> string -> bool | 
| 17072 | 24 | val transfer: theory -> context -> context | 
| 19019 | 25 | val map_theory: (theory -> theory) -> context -> context | 
| 14828 | 26 | val pretty_term: context -> term -> Pretty.T | 
| 27 | val pretty_typ: context -> typ -> Pretty.T | |
| 28 | val pretty_sort: context -> sort -> Pretty.T | |
| 19411 | 29 | val pretty_classrel: context -> class list -> Pretty.T | 
| 30 | val pretty_arity: context -> arity -> Pretty.T | |
| 14828 | 31 | val pp: context -> Pretty.pp | 
| 32 | val pretty_thm: context -> thm -> Pretty.T | |
| 33 | val pretty_thms: context -> thm list -> Pretty.T | |
| 34 | val pretty_fact: context -> string * thm list -> Pretty.T | |
| 17072 | 35 | val pretty_proof: context -> Proofterm.proof -> Pretty.T | 
| 36 | val pretty_proof_of: context -> bool -> thm -> Pretty.T | |
| 17360 
fa1f262dbc4e
added add_view, export_view (supercedes adhoc view arguments);
 wenzelm parents: 
17221diff
changeset | 37 | val string_of_typ: context -> typ -> string | 
| 14828 | 38 | val string_of_term: context -> term -> string | 
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 39 | val string_of_thm: context -> thm -> string | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 40 | val used_types: context -> string list | 
| 12414 | 41 | val default_type: context -> string -> typ option | 
| 5819 | 42 | val read_typ: context -> string -> typ | 
| 16348 | 43 | val read_typ_syntax: context -> string -> typ | 
| 44 | val read_typ_abbrev: context -> string -> typ | |
| 5819 | 45 | val cert_typ: context -> typ -> typ | 
| 16348 | 46 | val cert_typ_syntax: context -> typ -> typ | 
| 47 | val cert_typ_abbrev: context -> typ -> typ | |
| 10583 | 48 | val get_skolem: context -> string -> string | 
| 18255 | 49 | val revert_skolem: context -> string -> string | 
| 9133 | 50 | val extern_skolem: context -> term -> term | 
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 51 | val read_termTs: context -> (string -> bool) -> (indexname -> typ option) | 
| 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 52 | -> (indexname -> sort option) -> string list -> (string * typ) list | 
| 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 53 | -> term list * (indexname * typ) list | 
| 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 54 | val read_termTs_schematic: context -> (string -> bool) -> (indexname -> typ option) | 
| 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 55 | -> (indexname -> sort option) -> string list -> (string * typ) list | 
| 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 56 | -> term list * (indexname * typ) list | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 57 | val read_term_legacy: context -> string -> term | 
| 5819 | 58 | val read_term: context -> string -> term | 
| 59 | val read_prop: context -> string -> term | |
| 11925 | 60 | val read_prop_schematic: context -> string -> term | 
| 8096 | 61 | val read_term_pats: typ -> context -> string list -> term list | 
| 62 | val read_prop_pats: context -> string list -> term list | |
| 5819 | 63 | val cert_term: context -> term -> term | 
| 64 | val cert_prop: context -> term -> term | |
| 8096 | 65 | val cert_term_pats: typ -> context -> term list -> term list | 
| 66 | val cert_prop_pats: context -> term list -> term list | |
| 5819 | 67 | val declare_term: term -> context -> context | 
| 18770 | 68 | val infer_type: context -> string -> typ | 
| 69 | val inferred_param: string -> context -> (string * typ) * context | |
| 70 | val inferred_fixes: context -> (string * typ) list * context | |
| 15703 | 71 | val read_tyname: context -> string -> typ | 
| 72 | val read_const: context -> string -> term | |
| 19019 | 73 | val rename_frees: context -> term list -> (string * 'a) list -> (string * 'a) list | 
| 7925 | 74 | val warn_extra_tfrees: context -> context -> context | 
| 12550 
32843ad8160a
generalize type variables properly: start with occurrences in objects
 wenzelm parents: 
12530diff
changeset | 75 | val generalize: context -> context -> term list -> term list | 
| 19270 | 76 | val monomorphic: context -> term list -> term list | 
| 19001 | 77 | val polymorphic: context -> term list -> term list | 
| 19270 | 78 | val hidden_polymorphism: term -> typ -> (indexname * sort) list | 
| 18785 
5ae1f1c1b764
renamed export to export_standard (again!), because it includes Drule.local_standard';
 wenzelm parents: 
18770diff
changeset | 79 | val export_standard: context -> context -> thm -> thm | 
| 18042 | 80 | val exports: context -> context -> thm -> thm Seq.seq | 
| 81 | val goal_exports: context -> context -> thm -> thm Seq.seq | |
| 10810 | 82 | val drop_schematic: indexname * term option -> indexname * term option | 
| 83 | val add_binds: (indexname * string option) list -> context -> context | |
| 84 | val add_binds_i: (indexname * term option) list -> context -> context | |
| 12147 | 85 | val auto_bind_goal: term list -> context -> context | 
| 86 | val auto_bind_facts: term list -> context -> context | |
| 18310 | 87 | val match_bind: bool -> (string list * string) list -> context -> term list * context | 
| 88 | val match_bind_i: bool -> (term list * term) list -> context -> term list * context | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 89 | val read_propp: context * (string * (string list * string list)) list list | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 90 | -> context * (term * (term list * term list)) list list | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 91 | val cert_propp: context * (term * (term list * term list)) list list | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 92 | -> context * (term * (term list * term list)) list list | 
| 10554 | 93 | val read_propp_schematic: context * (string * (string list * string list)) list list | 
| 94 | -> context * (term * (term list * term list)) list list | |
| 95 | val cert_propp_schematic: context * (term * (term list * term list)) list list | |
| 96 | -> context * (term * (term list * term list)) list list | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 97 | val bind_propp: context * (string * (string list * string list)) list list | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 98 | -> context * (term list list * (context -> context)) | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 99 | 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 | 100 | -> context * (term list list * (context -> context)) | 
| 10554 | 101 | val bind_propp_schematic: context * (string * (string list * string list)) list list | 
| 102 | -> context * (term list list * (context -> context)) | |
| 103 | val bind_propp_schematic_i: context * (term * (term list * term list)) list list | |
| 104 | -> context * (term list list * (context -> context)) | |
| 18042 | 105 | val fact_tac: thm list -> int -> tactic | 
| 106 | val some_fact_tac: context -> int -> tactic | |
| 15456 
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
 berghofe parents: 
15452diff
changeset | 107 | val get_thm: context -> thmref -> thm | 
| 
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
 berghofe parents: 
15452diff
changeset | 108 | val get_thm_closure: context -> thmref -> thm | 
| 
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
 berghofe parents: 
15452diff
changeset | 109 | val get_thms: context -> thmref -> thm list | 
| 
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
 berghofe parents: 
15452diff
changeset | 110 | val get_thms_closure: context -> thmref -> thm list | 
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 111 | val valid_thms: context -> string * thm list -> bool | 
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 112 | val lthms_containing: context -> FactIndex.spec -> (string * thm list) list | 
| 16348 | 113 | val extern_thm: context -> string -> xstring | 
| 19019 | 114 | val no_base_names: context -> context | 
| 16147 | 115 | val qualified_names: context -> context | 
| 19062 
0fd52e819c24
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19033diff
changeset | 116 | val sticky_prefix: string -> context -> context | 
| 16147 | 117 | val restore_naming: context -> context -> context | 
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 118 | val hide_thms: bool -> string list -> context -> context | 
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 119 | val put_thms: bool -> string * thm list option -> context -> context | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 120 | val put_thms_internal: string * thm list option -> context -> context | 
| 14564 | 121 | val note_thmss: | 
| 18728 | 122 | ((bstring * attribute list) * (thmref * attribute list) list) list -> | 
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 123 | context -> (bstring * thm list) list * context | 
| 14564 | 124 | val note_thmss_i: | 
| 18728 | 125 | ((bstring * attribute list) * (thm list * attribute list) list) list -> | 
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 126 | context -> (bstring * thm list) list * context | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 127 | val read_vars: (string * string option * mixfix) list -> context -> | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 128 | (string * typ option * mixfix) list * context | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 129 | val cert_vars: (string * typ option * mixfix) list -> context -> | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 130 | (string * typ option * mixfix) list * context | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 131 | val read_vars_legacy: (string * string option * mixfix) list -> context -> | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 132 | (string * typ option * mixfix) list * context | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 133 | val cert_vars_legacy: (string * typ option * mixfix) list -> context -> | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 134 | (string * typ option * mixfix) list * context | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 135 | val add_fixes: (string * string option * mixfix) list -> context -> string list * context | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 136 | val add_fixes_i: (string * typ option * mixfix) list -> context -> string list * context | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 137 | val add_fixes_legacy: (string * typ option * mixfix) list -> context -> string list * context | 
| 18809 | 138 | val invent_fixes: string list -> context -> string list * context | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 139 | val fix_frees: term -> context -> context | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 140 | val auto_fixes: context * (term list list * 'a) -> context * (term list list * 'a) | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 141 | val bind_fixes: string list -> context -> (term -> term) * context | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 142 | val add_assms: export -> | 
| 18728 | 143 | ((string * attribute list) * (string * (string list * string list)) list) list -> | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 144 | context -> (bstring * thm list) list * context | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 145 | val add_assms_i: export -> | 
| 18728 | 146 | ((string * attribute list) * (term * (term list * term list)) list) list -> | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 147 | context -> (bstring * thm list) list * context | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 148 | val assume_export: export | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 149 | val presume_export: export | 
| 17360 
fa1f262dbc4e
added add_view, export_view (supercedes adhoc view arguments);
 wenzelm parents: 
17221diff
changeset | 150 | val add_view: context -> cterm list -> context -> context | 
| 18042 | 151 | val export_view: cterm list -> context -> context -> thm -> thm | 
| 18609 | 152 | val add_cases: bool -> (string * RuleCases.T option) list -> context -> context | 
| 153 | val apply_case: RuleCases.T -> context -> (string * term list) list * context | |
| 16147 | 154 | val get_case: context -> string -> string option list -> RuleCases.T | 
| 19371 | 155 | val expand_abbrevs: bool -> context -> context | 
| 156 | val add_abbrevs: string * bool -> (bstring * string * mixfix) list -> context -> context | |
| 157 | val add_abbrevs_i: string * bool -> (bstring * term * mixfix) list -> context -> context | |
| 10810 | 158 | val verbose: bool ref | 
| 159 |   val setmp_verbose: ('a -> 'b) -> 'a -> 'b
 | |
| 12072 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 160 | val print_syntax: context -> unit | 
| 10810 | 161 | val print_binds: context -> unit | 
| 12057 | 162 | val print_lthms: context -> unit | 
| 10810 | 163 | val print_cases: context -> unit | 
| 164 | val prems_limit: int ref | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 165 | val pretty_ctxt: context -> Pretty.T list | 
| 10810 | 166 | val pretty_context: context -> Pretty.T list | 
| 18809 | 167 | val debug: bool ref | 
| 168 | val pprint_context: context -> pprint_args -> unit | |
| 5819 | 169 | end; | 
| 170 | ||
| 16540 | 171 | structure ProofContext: PROOF_CONTEXT = | 
| 5819 | 172 | struct | 
| 173 | ||
| 16540 | 174 | type context = Context.proof; | 
| 5819 | 175 | |
| 16540 | 176 | val theory_of = Context.theory_of_proof; | 
| 19001 | 177 | val tsig_of = Sign.tsig_of o theory_of; | 
| 178 | ||
| 16540 | 179 | val init = Context.init_proof; | 
| 12057 | 180 | |
| 7270 | 181 | |
| 5819 | 182 | |
| 16540 | 183 | (** Isar proof context information **) | 
| 5819 | 184 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 185 | type export = bool -> cterm list -> thm -> thm Seq.seq; | 
| 5819 | 186 | |
| 16540 | 187 | datatype ctxt = | 
| 188 | Ctxt of | |
| 19001 | 189 |    {naming: NameSpace.naming,                     (*local naming conventions*)
 | 
| 190 | syntax: LocalSyntax.T, (*local syntax*) | |
| 19033 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 191 | consts: Consts.T * Consts.T, (*global/local consts*) | 
| 19001 | 192 | fixes: bool * (string * string) list, (*fixes: !!x. _ with proof body flag*) | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 193 | assms: | 
| 19001 | 194 | ((cterm list * export) list * (*assumes and views: A ==> _*) | 
| 195 | (string * thm list) list), (*prems: A |- A*) | |
| 196 | binds: (typ * term) Vartab.table, (*term bindings*) | |
| 197 | thms: thm list NameSpace.table * FactIndex.T, (*local thms*) | |
| 198 | cases: (string * (RuleCases.T * bool)) list, (*local contexts*) | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 199 | defaults: | 
| 19001 | 200 | typ Vartab.table * (*type constraints*) | 
| 201 | sort Vartab.table * (*default sorts*) | |
| 202 | string list * (*used type variables*) | |
| 203 | term list Symtab.table}; (*type variable occurrences*) | |
| 5819 | 204 | |
| 19001 | 205 | fun make_ctxt (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) = | 
| 206 |   Ctxt {naming = naming, syntax = syntax, consts = consts, fixes = fixes, assms = assms,
 | |
| 207 | binds = binds, thms = thms, cases = cases, defaults = defaults}; | |
| 5819 | 208 | |
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 209 | val local_naming = NameSpace.default_naming |> NameSpace.add_path "local"; | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 210 | |
| 16540 | 211 | structure ContextData = ProofDataFun | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 212 | ( | 
| 16540 | 213 | val name = "Isar/context"; | 
| 214 | type T = ctxt; | |
| 215 | fun init thy = | |
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 216 | make_ctxt (local_naming, LocalSyntax.init thy, | 
| 19033 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 217 | (Sign.consts_of thy, Sign.consts_of thy), (false, []), ([], []), | 
| 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 218 | Vartab.empty, (NameSpace.empty_table, FactIndex.empty), [], | 
| 16540 | 219 | (Vartab.empty, Vartab.empty, [], Symtab.empty)); | 
| 220 | fun print _ _ = (); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 221 | ); | 
| 5819 | 222 | |
| 18708 | 223 | val _ = Context.add_setup ContextData.init; | 
| 5819 | 224 | |
| 16540 | 225 | fun rep_context ctxt = ContextData.get ctxt |> (fn Ctxt args => args); | 
| 5819 | 226 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 227 | fun map_context f = | 
| 19001 | 228 |   ContextData.map (fn Ctxt {naming, syntax, consts, fixes, assms, binds, thms, cases, defaults} =>
 | 
| 229 | make_ctxt (f (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults))); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 230 | |
| 19001 | 231 | fun map_naming f = | 
| 232 | map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) => | |
| 233 | (f naming, syntax, consts, fixes, assms, binds, thms, cases, defaults)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 234 | |
| 19001 | 235 | fun map_syntax f = | 
| 236 | map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) => | |
| 237 | (naming, f syntax, consts, fixes, assms, binds, thms, cases, defaults)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 238 | |
| 19001 | 239 | fun map_consts f = | 
| 240 | map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) => | |
| 241 | (naming, syntax, f consts, fixes, assms, binds, thms, cases, defaults)); | |
| 242 | ||
| 243 | fun map_fixes f = | |
| 244 | map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) => | |
| 245 | (naming, syntax, consts, f fixes, assms, binds, thms, cases, defaults)); | |
| 18971 | 246 | |
| 19001 | 247 | fun map_assms f = | 
| 248 | map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) => | |
| 249 | (naming, syntax, consts, fixes, f assms, binds, thms, cases, defaults)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 250 | |
| 19001 | 251 | fun map_binds f = | 
| 252 | map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) => | |
| 253 | (naming, syntax, consts, fixes, assms, f binds, thms, cases, defaults)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 254 | |
| 19001 | 255 | fun map_thms f = | 
| 256 | map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) => | |
| 257 | (naming, syntax, consts, fixes, assms, binds, f thms, cases, defaults)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 258 | |
| 19001 | 259 | fun map_cases f = | 
| 260 | map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) => | |
| 261 | (naming, syntax, consts, fixes, assms, binds, thms, f cases, defaults)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 262 | |
| 19001 | 263 | fun map_defaults f = | 
| 264 | map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) => | |
| 265 | (naming, syntax, consts, fixes, assms, binds, thms, cases, f defaults)); | |
| 266 | ||
| 267 | val naming_of = #naming o rep_context; | |
| 19387 | 268 | val full_name = NameSpace.full o naming_of; | 
| 5819 | 269 | |
| 16540 | 270 | val syntax_of = #syntax o rep_context; | 
| 19001 | 271 | val syn_of = LocalSyntax.syn_of o syntax_of; | 
| 272 | ||
| 19033 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 273 | val consts_of = #2 o #consts o rep_context; | 
| 5819 | 274 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 275 | val is_body = #1 o #fixes o rep_context; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 276 | fun set_body b = map_fixes (fn (_, fixes) => (b, fixes)); | 
| 18743 | 277 | fun restore_body ctxt = set_body (is_body ctxt); | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 278 | |
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 279 | val fixes_of = #2 o #fixes o rep_context; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 280 | val fixed_names_of = map #2 o fixes_of; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 281 | |
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 282 | val assumptions_of = #1 o #assms o rep_context; | 
| 17451 | 283 | val assms_of = map Thm.term_of o List.concat o map #1 o assumptions_of; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 284 | val prems_of = List.concat o map #2 o #2 o #assms o rep_context; | 
| 5819 | 285 | |
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 286 | val binds_of = #binds o rep_context; | 
| 5819 | 287 | |
| 16540 | 288 | val thms_of = #thms o rep_context; | 
| 19001 | 289 | val fact_index_of = #2 o thms_of; | 
| 16540 | 290 | |
| 291 | val cases_of = #cases o rep_context; | |
| 5819 | 292 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 293 | val defaults_of = #defaults o rep_context; | 
| 16540 | 294 | val type_occs_of = #4 o defaults_of; | 
| 5819 | 295 | |
| 19019 | 296 | fun is_fixed ctxt x = exists (fn (_, y) => x = y) (fixes_of ctxt); | 
| 16894 | 297 | fun is_known ctxt x = Vartab.defined (#1 (defaults_of ctxt)) (x, ~1) orelse is_fixed ctxt x; | 
| 5819 | 298 | |
| 299 | ||
| 19001 | 300 | (* transfer *) | 
| 12093 | 301 | |
| 19001 | 302 | fun transfer_syntax thy = | 
| 303 | map_syntax (LocalSyntax.rebuild thy) #> | |
| 19033 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 304 | map_consts (fn consts as (global_consts, local_consts) => | 
| 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 305 | let val thy_consts = Sign.consts_of thy in | 
| 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 306 | if Consts.eq_consts (thy_consts, global_consts) then consts | 
| 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 307 | else (thy_consts, Consts.merge (thy_consts, local_consts)) | 
| 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 308 | end); | 
| 17072 | 309 | |
| 19001 | 310 | fun transfer thy = Context.transfer_proof thy #> transfer_syntax thy; | 
| 17072 | 311 | |
| 19019 | 312 | fun map_theory f ctxt = transfer (f (theory_of ctxt)) ctxt; | 
| 313 | ||
| 12093 | 314 | |
| 315 | ||
| 14828 | 316 | (** pretty printing **) | 
| 317 | ||
| 19310 | 318 | local | 
| 319 | ||
| 19371 | 320 | fun rewrite_term thy rews t = | 
| 321 | if can Term.type_of t then Pattern.rewrite_term thy rews [] t | |
| 322 | else (warning "Printing ill-typed term -- cannot expand abbreviations"; t); | |
| 323 | ||
| 19001 | 324 | fun pretty_term' abbrevs ctxt t = | 
| 18971 | 325 | let | 
| 19001 | 326 | val thy = theory_of ctxt; | 
| 327 | val syntax = syntax_of ctxt; | |
| 18971 | 328 | val consts = consts_of ctxt; | 
| 19001 | 329 | val t' = t | 
| 19371 | 330 | |> K abbrevs ? rewrite_term thy (Consts.abbrevs_of consts (! print_mode @ [""])) | 
| 331 | |> Sign.extern_term (Consts.extern_early consts) thy | |
| 332 | |> LocalSyntax.extern_term syntax; | |
| 333 | in | |
| 334 | Sign.pretty_term' (Context.Proof ctxt) (LocalSyntax.syn_of syntax) (Consts.extern consts) t' | |
| 335 | end; | |
| 18971 | 336 | |
| 19310 | 337 | in | 
| 338 | ||
| 19001 | 339 | val pretty_term = pretty_term' true; | 
| 19310 | 340 | val pretty_term_no_abbrevs = pretty_term' false; | 
| 341 | ||
| 342 | end; | |
| 343 | ||
| 16458 | 344 | fun pretty_typ ctxt T = Sign.pretty_typ (theory_of ctxt) T; | 
| 345 | fun pretty_sort ctxt S = Sign.pretty_sort (theory_of ctxt) S; | |
| 346 | fun pretty_classrel ctxt cs = Sign.pretty_classrel (theory_of ctxt) cs; | |
| 347 | fun pretty_arity ctxt ar = Sign.pretty_arity (theory_of ctxt) ar; | |
| 14828 | 348 | |
| 14974 
b1ecb7859c99
avoid premature evaluation of syn_of (wastes time in conjunction with pp);
 wenzelm parents: 
14901diff
changeset | 349 | fun pp ctxt = Pretty.pp (pretty_term ctxt, pretty_typ ctxt, pretty_sort ctxt, | 
| 
b1ecb7859c99
avoid premature evaluation of syn_of (wastes time in conjunction with pp);
 wenzelm parents: 
14901diff
changeset | 350 | pretty_classrel ctxt, pretty_arity ctxt); | 
| 14828 | 351 | |
| 17451 | 352 | fun pretty_thm ctxt th = | 
| 353 | Display.pretty_thm_aux (pp ctxt) false true (assms_of ctxt) th; | |
| 14828 | 354 | |
| 355 | fun pretty_thms ctxt [th] = pretty_thm ctxt th | |
| 356 | | pretty_thms ctxt ths = Pretty.blk (0, Pretty.fbreaks (map (pretty_thm ctxt) ths)); | |
| 357 | ||
| 358 | fun pretty_fact ctxt ("", ths) = pretty_thms ctxt ths
 | |
| 359 | | pretty_fact ctxt (a, [th]) = | |
| 360 | Pretty.block [Pretty.str (a ^ ":"), Pretty.brk 1, pretty_thm ctxt th] | |
| 361 | | pretty_fact ctxt (a, ths) = | |
| 362 | Pretty.block (Pretty.fbreaks (Pretty.str (a ^ ":") :: map (pretty_thm ctxt) ths)); | |
| 363 | ||
| 17072 | 364 | fun pretty_proof ctxt prf = | 
| 19310 | 365 | pretty_term_no_abbrevs (ctxt |> transfer_syntax (ProofSyntax.proof_syntax prf (theory_of ctxt))) | 
| 17072 | 366 | (ProofSyntax.term_of_proof prf); | 
| 367 | ||
| 368 | fun pretty_proof_of ctxt full th = | |
| 369 | pretty_proof ctxt (ProofSyntax.proof_of full th); | |
| 370 | ||
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 371 | val string_of_typ = Pretty.string_of oo pretty_typ; | 
| 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 372 | val string_of_term = Pretty.string_of oo pretty_term; | 
| 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 373 | val string_of_thm = Pretty.string_of oo pretty_thm; | 
| 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 374 | |
| 14828 | 375 | |
| 376 | ||
| 7663 | 377 | (** default sorts and types **) | 
| 378 | ||
| 17412 | 379 | val def_sort = Vartab.lookup o #2 o defaults_of; | 
| 7663 | 380 | |
| 16540 | 381 | fun def_type ctxt pattern xi = | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 382 |   let val {binds, defaults = (types, _, _, _), ...} = rep_context ctxt in
 | 
| 17412 | 383 | (case Vartab.lookup types xi of | 
| 16540 | 384 | NONE => | 
| 385 | if pattern then NONE | |
| 18953 
93903be7ff66
norm_term: Sign.const_expansion, Envir.expand_atom;
 wenzelm parents: 
18928diff
changeset | 386 | else Vartab.lookup binds xi |> Option.map (TypeInfer.polymorphicT o #1) | 
| 16540 | 387 | | some => some) | 
| 388 | end; | |
| 7663 | 389 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 390 | val used_types = #3 o defaults_of; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 391 | |
| 17412 | 392 | fun default_type ctxt x = Vartab.lookup (#1 (defaults_of ctxt)) (x, ~1); | 
| 12414 | 393 | |
| 7663 | 394 | |
| 5819 | 395 | |
| 396 | (** prepare types **) | |
| 397 | ||
| 9504 | 398 | local | 
| 399 | ||
| 400 | fun read_typ_aux read ctxt s = | |
| 18857 | 401 | read (syn_of ctxt) (Context.Proof ctxt) (def_sort ctxt) s; | 
| 5819 | 402 | |
| 10554 | 403 | fun cert_typ_aux cert ctxt raw_T = | 
| 18678 | 404 | cert (theory_of ctxt) raw_T handle TYPE (msg, _, _) => error msg; | 
| 9504 | 405 | |
| 406 | in | |
| 407 | ||
| 16348 | 408 | val read_typ = read_typ_aux Sign.read_typ'; | 
| 409 | val read_typ_syntax = read_typ_aux Sign.read_typ_syntax'; | |
| 410 | val read_typ_abbrev = read_typ_aux Sign.read_typ_abbrev'; | |
| 411 | val cert_typ = cert_typ_aux Sign.certify_typ; | |
| 412 | val cert_typ_syntax = cert_typ_aux Sign.certify_typ_syntax; | |
| 413 | val cert_typ_abbrev = cert_typ_aux Sign.certify_typ_abbrev; | |
| 9504 | 414 | |
| 415 | end; | |
| 416 | ||
| 5819 | 417 | |
| 7679 | 418 | (* internalize Skolem constants *) | 
| 419 | ||
| 17184 | 420 | val lookup_skolem = AList.lookup (op =) o fixes_of; | 
| 18187 | 421 | fun get_skolem ctxt x = the_default x (lookup_skolem ctxt x); | 
| 7679 | 422 | |
| 18678 | 423 | fun no_skolem internal x = | 
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 424 | if can Syntax.dest_skolem x then | 
| 18678 | 425 |     error ("Illegal reference to internal Skolem constant: " ^ quote x)
 | 
| 12504 | 426 | else if not internal andalso can Syntax.dest_internal x then | 
| 18678 | 427 |     error ("Illegal reference to internal variable: " ^ quote x)
 | 
| 7679 | 428 | else x; | 
| 429 | ||
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 430 | fun intern_skolem ctxt internal = | 
| 7679 | 431 | let | 
| 432 | fun intern (t as Free (x, T)) = | |
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 433 | if internal x then t | 
| 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 434 | else | 
| 18678 | 435 | (case lookup_skolem ctxt (no_skolem false x) of | 
| 15531 | 436 | SOME x' => Free (x', T) | 
| 437 | | NONE => t) | |
| 7679 | 438 | | intern (t $ u) = intern t $ intern u | 
| 439 | | intern (Abs (x, T, t)) = Abs (x, T, intern t) | |
| 440 | | intern a = a; | |
| 441 | in intern end; | |
| 442 | ||
| 443 | ||
| 18187 | 444 | (* externalize Skolem constants -- approximation only! *) | 
| 445 | ||
| 18255 | 446 | fun rev_skolem ctxt = | 
| 18187 | 447 | let val rev_fixes = map Library.swap (fixes_of ctxt) | 
| 448 | in AList.lookup (op =) rev_fixes end; | |
| 9133 | 449 | |
| 18255 | 450 | fun revert_skolem ctxt x = | 
| 451 | (case rev_skolem ctxt x of | |
| 452 | SOME x' => x' | |
| 18375 | 453 | | NONE => perhaps (try Syntax.dest_skolem) x); | 
| 18255 | 454 | |
| 9133 | 455 | fun extern_skolem ctxt = | 
| 456 | let | |
| 18255 | 457 | val revert = rev_skolem ctxt; | 
| 9133 | 458 | fun extern (t as Free (x, T)) = | 
| 18187 | 459 | (case revert x of | 
| 460 | SOME x' => Free (if lookup_skolem ctxt x' = SOME x then x' else NameSpace.hidden x', T) | |
| 461 | | NONE => t) | |
| 9133 | 462 | | extern (t $ u) = extern t $ extern u | 
| 463 | | extern (Abs (x, T, t)) = Abs (x, T, extern t) | |
| 464 | | extern a = a; | |
| 465 | in extern end | |
| 466 | ||
| 8096 | 467 | |
| 18187 | 468 | |
| 5819 | 469 | (** prepare terms and propositions **) | 
| 470 | ||
| 471 | (* | |
| 16501 | 472 | (1) read / certify wrt. theory of context | 
| 5819 | 473 | (2) intern Skolem constants | 
| 474 | (3) expand term bindings | |
| 475 | *) | |
| 476 | ||
| 477 | ||
| 16501 | 478 | (* read wrt. theory *) (*exception ERROR*) | 
| 5819 | 479 | |
| 18857 | 480 | fun read_def_termTs freeze pp syn ctxt (types, sorts, used) sTs = | 
| 18971 | 481 | Sign.read_def_terms' pp (Sign.is_logtype (theory_of ctxt)) syn (consts_of ctxt) | 
| 18857 | 482 | (Context.Proof ctxt) (types, sorts) used freeze sTs; | 
| 5874 | 483 | |
| 18857 | 484 | fun read_def_termT freeze pp syn ctxt defaults sT = | 
| 485 | apfst hd (read_def_termTs freeze pp syn ctxt defaults [sT]); | |
| 14828 | 486 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 487 | fun read_term_thy freeze pp syn thy defaults s = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 488 | #1 (read_def_termT freeze pp syn thy defaults (s, TypeInfer.logicT)); | 
| 5874 | 489 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 490 | fun read_prop_thy freeze pp syn thy defaults s = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 491 | #1 (read_def_termT freeze pp syn thy defaults (s, propT)); | 
| 12072 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 492 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 493 | fun read_terms_thy freeze pp syn thy defaults = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 494 | #1 o read_def_termTs freeze pp syn thy defaults o map (rpair TypeInfer.logicT); | 
| 12072 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 495 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 496 | fun read_props_thy freeze pp syn thy defaults = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 497 | #1 o read_def_termTs freeze pp syn thy defaults o map (rpair propT); | 
| 5819 | 498 | |
| 499 | ||
| 19001 | 500 | (* local abbreviations *) | 
| 5819 | 501 | |
| 19371 | 502 | fun certify_consts ctxt = | 
| 19001 | 503 | Consts.certify (pp ctxt) (tsig_of ctxt) (consts_of ctxt); | 
| 504 | ||
| 505 | fun expand_binds ctxt schematic = | |
| 5819 | 506 | let | 
| 18971 | 507 | val binds = binds_of ctxt; | 
| 5819 | 508 | |
| 19001 | 509 | fun expand_var (xi, T) = | 
| 18971 | 510 | (case Vartab.lookup binds xi of | 
| 19001 | 511 | SOME t => Envir.expand_atom (tsig_of ctxt) T t | 
| 18971 | 512 | | NONE => | 
| 513 | if schematic then Var (xi, T) | |
| 514 |           else error ("Unbound schematic variable: " ^ Syntax.string_of_vname xi));
 | |
| 19001 | 515 | in Envir.beta_norm o Term.map_aterms (fn Var v => expand_var v | a => a) end; | 
| 5819 | 516 | |
| 517 | ||
| 6550 | 518 | (* dummy patterns *) | 
| 519 | ||
| 18310 | 520 | val prepare_dummies = | 
| 521 | let val next = ref 1 in | |
| 522 | fn t => | |
| 523 | let val (i, u) = Term.replace_dummy_patterns (! next, t) | |
| 524 | in next := i; u end | |
| 525 | end; | |
| 6762 | 526 | |
| 18678 | 527 | fun reject_dummies t = Term.no_dummy_patterns t | 
| 528 | handle TERM _ => error "Illegal dummy pattern(s) in term"; | |
| 6550 | 529 | |
| 530 | ||
| 5819 | 531 | (* read terms *) | 
| 532 | ||
| 10554 | 533 | local | 
| 534 | ||
| 15531 | 535 | fun append_env e1 e2 x = (case e2 x of NONE => e1 x | some => some); | 
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 536 | |
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 537 | fun gen_read' read app pattern schematic | 
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 538 | ctxt internal more_types more_sorts more_used s = | 
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13629diff
changeset | 539 | let | 
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 540 | val types = append_env (def_type ctxt pattern) more_types; | 
| 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 541 | val sorts = append_env (def_sort ctxt) more_sorts; | 
| 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 542 | val used = used_types ctxt @ more_used; | 
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13629diff
changeset | 543 | in | 
| 18857 | 544 | (read (pp ctxt) (syn_of ctxt) ctxt (types, sorts, used) s | 
| 18678 | 545 | handle TERM (msg, _) => error msg) | 
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 546 | |> app (intern_skolem ctxt internal) | 
| 19371 | 547 | |> app (certify_consts ctxt) | 
| 19001 | 548 | |> app (if pattern then I else expand_binds ctxt schematic) | 
| 18678 | 549 | |> app (if pattern then prepare_dummies else reject_dummies) | 
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 550 | end; | 
| 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 551 | |
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 552 | fun gen_read read app pattern schematic ctxt = | 
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 553 | gen_read' read app pattern schematic ctxt (K false) (K NONE) (K NONE) []; | 
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 554 | |
| 10554 | 555 | in | 
| 556 | ||
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 557 | val read_termTs = gen_read' (read_def_termTs false) (apfst o map) false false; | 
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 558 | val read_termTs_schematic = gen_read' (read_def_termTs false) (apfst o map) false true; | 
| 8096 | 559 | |
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 560 | fun read_term_pats T ctxt = | 
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 561 | #1 o gen_read (read_def_termTs false) (apfst o map) true false ctxt o map (rpair T); | 
| 8096 | 562 | val read_prop_pats = read_term_pats propT; | 
| 563 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 564 | fun read_term_legacy ctxt = | 
| 16458 | 565 | gen_read' (read_term_thy true) I false false ctxt (K true) (K NONE) (K NONE) []; | 
| 14720 
ceff6d4fb836
cleanup up read functions, include liberal versions;
 wenzelm parents: 
14707diff
changeset | 566 | |
| 19143 | 567 | val read_term = gen_read (read_term_thy true) I false false; | 
| 568 | val read_prop = gen_read (read_prop_thy true) I false false; | |
| 569 | val read_prop_schematic = gen_read (read_prop_thy true) I false true; | |
| 570 | val read_terms = gen_read (read_terms_thy true) map false false; | |
| 571 | fun read_props schematic = gen_read (read_props_thy true) map false schematic; | |
| 5819 | 572 | |
| 10554 | 573 | end; | 
| 574 | ||
| 5819 | 575 | |
| 576 | (* certify terms *) | |
| 577 | ||
| 19371 | 578 | val test = ref (NONE: (context * term) option); | 
| 579 | ||
| 10554 | 580 | local | 
| 581 | ||
| 18971 | 582 | fun gen_cert prop pattern schematic ctxt t = t | 
| 19371 | 583 | |> certify_consts ctxt | 
| 19001 | 584 | |> (if pattern then I else expand_binds ctxt schematic) | 
| 19371 | 585 | |> (fn t' => #1 (Sign.certify' false prop (pp ctxt) (consts_of ctxt) (theory_of ctxt) t') | 
| 18678 | 586 | handle TYPE (msg, _, _) => error msg | 
| 587 | | TERM (msg, _) => error msg); | |
| 16501 | 588 | |
| 10554 | 589 | in | 
| 8096 | 590 | |
| 18971 | 591 | val cert_term = gen_cert false false false; | 
| 592 | val cert_prop = gen_cert true false false; | |
| 593 | val cert_props = map oo gen_cert true false; | |
| 10554 | 594 | |
| 18971 | 595 | fun cert_term_pats _ = map o gen_cert false true false; | 
| 596 | val cert_prop_pats = map o gen_cert true true false; | |
| 10554 | 597 | |
| 598 | end; | |
| 5819 | 599 | |
| 600 | ||
| 601 | (* declare terms *) | |
| 602 | ||
| 10381 | 603 | local | 
| 604 | ||
| 16861 | 605 | val ins_types = fold_aterms | 
| 17412 | 606 | (fn Free (x, T) => Vartab.update ((x, ~1), T) | 
| 607 | | Var v => Vartab.update v | |
| 16861 | 608 | | _ => I); | 
| 5819 | 609 | |
| 16861 | 610 | val ins_sorts = fold_types (fold_atyps | 
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 611 | (fn TFree (x, S) => Vartab.update ((x, ~1), S) | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 612 | | TVar v => Vartab.update v | 
| 16861 | 613 | | _ => I)); | 
| 5819 | 614 | |
| 16861 | 615 | val ins_used = fold_term_types (fn t => | 
| 616 | fold_atyps (fn TFree (x, _) => insert (op =) x | _ => I)); | |
| 12291 | 617 | |
| 16861 | 618 | val ins_occs = fold_term_types (fn t => | 
| 18953 
93903be7ff66
norm_term: Sign.const_expansion, Envir.expand_atom;
 wenzelm parents: 
18928diff
changeset | 619 | fold_atyps (fn TFree (x, _) => Symtab.update_list (x, t) | _ => I)); | 
| 5819 | 620 | |
| 16861 | 621 | fun ins_skolem def_ty = fold_rev (fn (x, x') => | 
| 622 | (case def_ty x' of | |
| 17412 | 623 | SOME T => Vartab.update ((x, ~1), T) | 
| 16861 | 624 | | NONE => I)); | 
| 5994 | 625 | |
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 626 | in | 
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 627 | |
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 628 | fun declare_syntax t = map_defaults (fn (types, sorts, used, occ) => | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 629 | (ins_types t types, | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 630 | ins_sorts t sorts, | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 631 | ins_used t used, | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 632 | occ)); | 
| 10381 | 633 | |
| 19001 | 634 | fun declare_var (x, opt_T, mx) ctxt = | 
| 635 | let val T = (case opt_T of SOME T => T | NONE => TypeInfer.mixfixT mx) | |
| 636 | in ((x, T, mx), ctxt |> declare_syntax (Free (x, T))) end; | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 637 | |
| 16540 | 638 | fun declare_term t ctxt = | 
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 639 | ctxt | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 640 | |> declare_syntax t | 
| 12291 | 641 | |> map_defaults (fn (types, sorts, used, occ) => | 
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 642 | (ins_skolem (fn x => Vartab.lookup types (x, ~1)) (fixes_of ctxt) types, | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 643 | sorts, | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 644 | used, | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 645 | ins_occs t occ)); | 
| 5819 | 646 | |
| 18770 | 647 | end; | 
| 648 | ||
| 649 | ||
| 650 | (* inferred types of parameters *) | |
| 651 | ||
| 652 | fun infer_type ctxt x = | |
| 653 | (case try (fn () => | |
| 18971 | 654 | Sign.infer_types (pp ctxt) (theory_of ctxt) (consts_of ctxt) (def_type ctxt false) | 
| 655 | (def_sort ctxt) (used_types ctxt) true ([Free (x, dummyT)], TypeInfer.logicT)) () of | |
| 18770 | 656 | SOME (Free (_, T), _) => T | 
| 657 |   | _ => error ("Failed to infer type of fixed variable " ^ quote x));
 | |
| 658 | ||
| 659 | fun inferred_param x ctxt = | |
| 18619 | 660 | let val T = infer_type ctxt x | 
| 19019 | 661 | in ((x, T), ctxt |> declare_syntax (Free (x, T))) end; | 
| 18619 | 662 | |
| 18770 | 663 | fun inferred_fixes ctxt = | 
| 664 | fold_map inferred_param (rev (fixed_names_of ctxt)) ctxt; | |
| 5819 | 665 | |
| 666 | ||
| 15703 | 667 | (* type and constant names *) | 
| 668 | ||
| 669 | fun read_tyname ctxt c = | |
| 18340 | 670 | if member (op =) (used_types ctxt) c then | 
| 18187 | 671 | TFree (c, the_default (Sign.defaultS (theory_of ctxt)) (def_sort ctxt (c, ~1))) | 
| 16458 | 672 | else Sign.read_tyname (theory_of ctxt) c; | 
| 15703 | 673 | |
| 674 | fun read_const ctxt c = | |
| 675 | (case lookup_skolem ctxt c of | |
| 676 | SOME c' => Free (c', dummyT) | |
| 18971 | 677 | | NONE => Consts.read_const (consts_of ctxt) c); | 
| 15703 | 678 | |
| 679 | ||
| 19019 | 680 | (* renaming term/type frees *) | 
| 681 | ||
| 682 | fun rename_frees ctxt ts frees = | |
| 683 | let | |
| 684 | val (types, sorts, _, _) = defaults_of (ctxt |> fold declare_syntax ts); | |
| 685 | fun rename (x, X) xs = | |
| 686 | let | |
| 19274 | 687 | fun used y = y = "" orelse y = "'" orelse member (op =) xs y orelse | 
| 19019 | 688 | Vartab.defined types (y, ~1) orelse Vartab.defined sorts (y, ~1); | 
| 689 | val x' = Term.variant_name used x; | |
| 690 | in ((x', X), x' :: xs) end; | |
| 691 | in #1 (fold_map rename frees []) end; | |
| 692 | ||
| 693 | ||
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 694 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 695 | (** Hindley-Milner polymorphism **) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 696 | |
| 7925 | 697 | (* warn_extra_tfrees *) | 
| 698 | ||
| 16540 | 699 | fun warn_extra_tfrees ctxt1 ctxt2 = | 
| 12130 
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
 wenzelm parents: 
12123diff
changeset | 700 | let | 
| 17451 | 701 | fun occs_typ a (Type (_, Ts)) = exists (occs_typ a) Ts | 
| 702 | | occs_typ a (TFree (b, _)) = a = b | |
| 703 | | occs_typ _ (TVar _) = false; | |
| 704 | fun occs_free a (Free (x, _)) = | |
| 705 | (case def_type ctxt1 false (x, ~1) of | |
| 706 | SOME T => if occs_typ a T then I else cons (a, x) | |
| 707 | | NONE => cons (a, x)) | |
| 708 | | occs_free _ _ = I; | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 709 | |
| 17451 | 710 | val occs1 = type_occs_of ctxt1 and occs2 = type_occs_of ctxt2; | 
| 711 | val extras = Symtab.fold (fn (a, ts) => | |
| 712 | if Symtab.defined occs1 a then I else fold (occs_free a) ts) occs2 []; | |
| 18428 | 713 | val tfrees = map #1 extras |> sort_distinct string_ord; | 
| 714 | val frees = map #2 extras |> sort_distinct string_ord; | |
| 12130 
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
 wenzelm parents: 
12123diff
changeset | 715 | in | 
| 
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
 wenzelm parents: 
12123diff
changeset | 716 | if null extras then () | 
| 17451 | 717 |     else warning ("Introduced fixed type variable(s): " ^ commas tfrees ^ " in " ^
 | 
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 718 | space_implode " or " (map (string_of_term ctxt2 o Syntax.free) frees)); | 
| 12130 
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
 wenzelm parents: 
12123diff
changeset | 719 | ctxt2 | 
| 
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
 wenzelm parents: 
12123diff
changeset | 720 | end; | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 721 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 722 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 723 | (* generalize type variables *) | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 724 | |
| 12550 
32843ad8160a
generalize type variables properly: start with occurrences in objects
 wenzelm parents: 
12530diff
changeset | 725 | fun generalize_tfrees inner outer = | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 726 | let | 
| 19310 | 727 | val extra_fixes = subtract (op =) (fixed_names_of outer) (fixed_names_of inner); | 
| 18340 | 728 | fun still_fixed (Free (x, _)) = not (member (op =) extra_fixes x) | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 729 | | still_fixed _ = false; | 
| 16540 | 730 | val occs_inner = type_occs_of inner; | 
| 731 | val occs_outer = type_occs_of outer; | |
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 732 | fun add a gen = | 
| 16894 | 733 | if Symtab.defined occs_outer a orelse | 
| 18953 
93903be7ff66
norm_term: Sign.const_expansion, Envir.expand_atom;
 wenzelm parents: 
18928diff
changeset | 734 | exists still_fixed (Symtab.lookup_list occs_inner a) | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 735 | then gen else a :: gen; | 
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 736 | in fn tfrees => fold add tfrees [] end; | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 737 | |
| 12550 
32843ad8160a
generalize type variables properly: start with occurrences in objects
 wenzelm parents: 
12530diff
changeset | 738 | fun generalize inner outer ts = | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 739 | let | 
| 18187 | 740 | val tfrees = generalize_tfrees inner outer (map #1 (fold Term.add_tfrees ts [])); | 
| 18340 | 741 | fun gen (x, S) = if member (op =) tfrees x then TVar ((x, 0), S) else TFree (x, S); | 
| 12550 
32843ad8160a
generalize type variables properly: start with occurrences in objects
 wenzelm parents: 
12530diff
changeset | 742 | in map (Term.map_term_types (Term.map_type_tfree gen)) ts end; | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 743 | |
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 744 | |
| 19001 | 745 | (* polymorphic terms *) | 
| 746 | ||
| 19270 | 747 | fun monomorphic ctxt ts = | 
| 748 | let | |
| 749 | val tvars = fold Term.add_tvars ts []; | |
| 19274 | 750 | val tfrees = map TFree (rename_frees ctxt ts (map (pair "'" o #2) tvars)); | 
| 19270 | 751 | val specialize = Term.instantiate ((tvars ~~ tfrees), []); | 
| 752 | in map specialize ts end; | |
| 753 | ||
| 19001 | 754 | fun polymorphic ctxt ts = | 
| 755 | generalize (ctxt |> fold declare_term ts) ctxt ts; | |
| 756 | ||
| 19270 | 757 | fun hidden_polymorphism t T = | 
| 758 | let | |
| 759 | val tvarsT = Term.add_tvarsT T []; | |
| 760 | val extra_tvars = Term.fold_types (Term.fold_atyps | |
| 761 | (fn TVar v => if member (op =) tvarsT v then I else insert (op =) v | _ => I)) t []; | |
| 762 | in extra_tvars end; | |
| 19001 | 763 | |
| 764 | ||
| 9553 | 765 | |
| 766 | (** export theorems **) | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 767 | |
| 18042 | 768 | fun common_exports is_goal inner outer = | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 769 | let | 
| 12550 
32843ad8160a
generalize type variables properly: start with occurrences in objects
 wenzelm parents: 
12530diff
changeset | 770 | val gen = generalize_tfrees inner outer; | 
| 19310 | 771 | val fixes = subtract (op =) (fixed_names_of outer) (fixed_names_of inner); | 
| 12057 | 772 | val asms = Library.drop (length (assumptions_of outer), assumptions_of inner); | 
| 11816 | 773 | val exp_asms = map (fn (cprops, exp) => exp is_goal cprops) asms; | 
| 16948 | 774 | in | 
| 18255 | 775 | Goal.norm_hhf_protect | 
| 16948 | 776 | #> Seq.EVERY (rev exp_asms) | 
| 777 | #> Seq.map (fn rule => | |
| 11816 | 778 | let | 
| 16992 | 779 | val thy = Thm.theory_of_thm rule; | 
| 780 | val prop = Thm.full_prop_of rule; | |
| 18152 | 781 | val frees = map (Thm.cterm_of thy) (List.mapPartial (Term.find_free prop) fixes); | 
| 12550 
32843ad8160a
generalize type variables properly: start with occurrences in objects
 wenzelm parents: 
12530diff
changeset | 782 | val tfrees = gen (Term.add_term_tfree_names (prop, [])); | 
| 11816 | 783 | in | 
| 784 | rule | |
| 785 | |> Drule.forall_intr_list frees | |
| 18255 | 786 | |> Goal.norm_hhf_protect | 
| 18138 | 787 | |> Drule.tvars_intr_list tfrees |> #2 | 
| 11816 | 788 | end) | 
| 789 | end; | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 790 | |
| 18785 
5ae1f1c1b764
renamed export to export_standard (again!), because it includes Drule.local_standard';
 wenzelm parents: 
18770diff
changeset | 791 | fun export_standard inner outer = | 
| 18122 | 792 | let val exp = common_exports false inner outer in | 
| 13378 | 793 | fn th => | 
| 18122 | 794 | (case Seq.pull (exp th) of | 
| 15531 | 795 | SOME (th', _) => th' |> Drule.local_standard | 
| 16850 | 796 | | NONE => sys_error "Failed to export theorem") | 
| 13378 | 797 | end; | 
| 12704 | 798 | |
| 18122 | 799 | val exports = common_exports false; | 
| 800 | val goal_exports = common_exports true; | |
| 7925 | 801 | |
| 5819 | 802 | |
| 15758 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 803 | |
| 5819 | 804 | (** bindings **) | 
| 805 | ||
| 15758 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 806 | (* delete_update_binds *) | 
| 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 807 | |
| 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 808 | local | 
| 5819 | 809 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 810 | val del_bind = map_binds o Vartab.delete_safe; | 
| 7606 | 811 | |
| 15758 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 812 | fun upd_bind ((x, i), t) = | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 813 | let | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 814 | val T = Term.fastype_of t; | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 815 | val t' = | 
| 19270 | 816 | if null (hidden_polymorphism t T) then t | 
| 8637 | 817 | else Var ((x ^ "_has_extra_type_vars_on_rhs", i), T); | 
| 18953 
93903be7ff66
norm_term: Sign.const_expansion, Envir.expand_atom;
 wenzelm parents: 
18928diff
changeset | 818 | in declare_term t' #> map_binds (Vartab.update ((x, i), (T, t'))) end; | 
| 5819 | 819 | |
| 15758 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 820 | fun del_upd_bind (xi, NONE) = del_bind xi | 
| 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 821 | | del_upd_bind (xi, SOME t) = upd_bind (xi, t); | 
| 7606 | 822 | |
| 15758 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 823 | in | 
| 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 824 | |
| 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 825 | val delete_update_binds = fold del_upd_bind; | 
| 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 826 | |
| 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 827 | end; | 
| 7606 | 828 | |
| 5819 | 829 | |
| 8096 | 830 | (* simult_matches *) | 
| 831 | ||
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 832 | fun simult_matches ctxt [] = [] | 
| 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 833 | | simult_matches ctxt pairs = | 
| 8096 | 834 | let | 
| 18678 | 835 | fun fail () = error "Pattern match failed!"; | 
| 10554 | 836 | |
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 837 | val maxidx = fold (fn (t1, t2) => fn i => | 
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 838 | Int.max (Int.max (Term.maxidx_of_term t1, Term.maxidx_of_term t2), i)) pairs ~1; | 
| 16458 | 839 | val envs = Unify.smash_unifiers (theory_of ctxt, Envir.empty maxidx, | 
| 10554 | 840 | map swap pairs); (*prefer assignment of variables from patterns*) | 
| 841 | val env = | |
| 8096 | 842 | (case Seq.pull envs of | 
| 15531 | 843 | NONE => fail () | 
| 844 | | SOME (env, _) => env); (*ignore further results*) | |
| 12309 
03e9287be350
name space for local thms (export cond_extern, qualified);
 wenzelm parents: 
12291diff
changeset | 845 | val domain = | 
| 
03e9287be350
name space for local thms (export cond_extern, qualified);
 wenzelm parents: 
12291diff
changeset | 846 | filter_out Term.is_replaced_dummy_pattern (map #1 (Drule.vars_of_terms (map #1 pairs))); | 
| 10554 | 847 | val _ = (*may not assign variables from text*) | 
| 12309 
03e9287be350
name space for local thms (export cond_extern, qualified);
 wenzelm parents: 
12291diff
changeset | 848 | if null (map #1 (Envir.alist_of env) inter (map #1 (Drule.vars_of_terms (map #2 pairs)))) | 
| 
03e9287be350
name space for local thms (export cond_extern, qualified);
 wenzelm parents: 
12291diff
changeset | 849 | then () else fail (); | 
| 16948 | 850 | fun norm_bind (xi, (_, t)) = | 
| 18310 | 851 | if member (op =) domain xi then SOME (xi, Envir.norm_term env t) else NONE; | 
| 15570 | 852 | in List.mapPartial norm_bind (Envir.alist_of env) end; | 
| 8096 | 853 | |
| 854 | ||
| 855 | (* add_binds(_i) *) | |
| 5819 | 856 | |
| 7925 | 857 | local | 
| 858 | ||
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 859 | fun gen_bind prep (xi as (x, _), raw_t) ctxt = | 
| 15570 | 860 | ctxt |> delete_update_binds [(xi, Option.map (prep ctxt) raw_t)]; | 
| 5819 | 861 | |
| 10810 | 862 | in | 
| 863 | ||
| 15531 | 864 | fun drop_schematic (b as (xi, SOME t)) = if null (Term.term_vars t) then b else (xi, NONE) | 
| 10554 | 865 | | drop_schematic b = b; | 
| 866 | ||
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 867 | val add_binds = fold (gen_bind read_term); | 
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 868 | val add_binds_i = fold (gen_bind cert_term); | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 869 | |
| 16458 | 870 | fun auto_bind f ts ctxt = ctxt |> add_binds_i (map drop_schematic (f (theory_of ctxt) ts)); | 
| 12147 | 871 | val auto_bind_goal = auto_bind AutoBind.goal; | 
| 872 | val auto_bind_facts = auto_bind AutoBind.facts; | |
| 7925 | 873 | |
| 874 | end; | |
| 5819 | 875 | |
| 876 | ||
| 8096 | 877 | (* match_bind(_i) *) | 
| 5819 | 878 | |
| 8096 | 879 | local | 
| 880 | ||
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 881 | fun prep_bind prep_pats (raw_pats, t) ctxt = | 
| 5819 | 882 | let | 
| 8096 | 883 | val ctxt' = declare_term t ctxt; | 
| 884 | val pats = prep_pats (fastype_of t) ctxt' raw_pats; | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 885 | val binds = simult_matches ctxt' (map (rpair t) pats); | 
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 886 | in (binds, ctxt') end; | 
| 7670 | 887 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 888 | 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 | 889 | let | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 890 | val ts = prep_terms ctxt (map snd raw_binds); | 
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 891 | val (binds, ctxt') = | 
| 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 892 | apfst List.concat (fold_map (prep_bind prep_pats) (map fst raw_binds ~~ ts) ctxt); | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 893 | val binds' = | 
| 12550 
32843ad8160a
generalize type variables properly: start with occurrences in objects
 wenzelm parents: 
12530diff
changeset | 894 | if gen then map #1 binds ~~ generalize ctxt' ctxt (map #2 binds) | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 895 | else binds; | 
| 15531 | 896 | val binds'' = map (apsnd SOME) binds'; | 
| 18310 | 897 | val ctxt'' = | 
| 898 | warn_extra_tfrees ctxt | |
| 899 | (if gen then | |
| 900 | ctxt (*sic!*) |> fold declare_term (map #2 binds') |> add_binds_i binds'' | |
| 901 | else ctxt' |> add_binds_i binds''); | |
| 902 | in (ts, ctxt'') end; | |
| 8096 | 903 | |
| 904 | in | |
| 5935 | 905 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 906 | val match_bind = gen_binds read_terms read_term_pats; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 907 | val match_bind_i = gen_binds (map o cert_term) cert_term_pats; | 
| 8096 | 908 | |
| 909 | end; | |
| 5935 | 910 | |
| 911 | ||
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 912 | (* propositions with patterns *) | 
| 5935 | 913 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 914 | local | 
| 8096 | 915 | |
| 10554 | 916 | fun prep_propp schematic prep_props prep_pats (context, args) = | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 917 | let | 
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 918 | fun prep (_, (raw_pats1, raw_pats2)) (ctxt, prop :: props) = | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 919 | let | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 920 | val ctxt' = declare_term prop ctxt; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 921 | val pats = prep_pats ctxt' (raw_pats1 @ raw_pats2); (*simultaneous type inference!*) | 
| 19019 | 922 | in ((prop, chop (length raw_pats1) pats), (ctxt', props)) end | 
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 923 | | prep _ _ = sys_error "prep_propp"; | 
| 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 924 | val (propp, (context', _)) = (fold_map o fold_map) prep args | 
| 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 925 | (context, prep_props schematic context (List.concat (map (map fst) args))); | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 926 | in (context', propp) end; | 
| 5935 | 927 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 928 | fun matches ctxt (prop, (pats1, pats2)) = | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 929 | simult_matches ctxt (map (rpair prop) pats1 @ map (rpair (Logic.strip_imp_concl prop)) pats2); | 
| 8096 | 930 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 931 | fun gen_bind_propp prepp (ctxt, raw_args) = | 
| 8096 | 932 | let | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 933 | val (ctxt', args) = prepp (ctxt, raw_args); | 
| 15570 | 934 | val binds = List.concat (List.concat (map (map (matches ctxt')) args)); | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 935 | val propss = map (map #1) args; | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 936 | |
| 10554 | 937 | (*generalize result: context evaluated now, binds added later*) | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 938 | val gen = generalize ctxt' ctxt; | 
| 15531 | 939 | fun gen_binds c = c |> add_binds_i (map #1 binds ~~ map SOME (gen (map #2 binds))); | 
| 940 | in (ctxt' |> add_binds_i (map (apsnd SOME) binds), (propss, gen_binds)) end; | |
| 8096 | 941 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 942 | in | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 943 | |
| 11925 | 944 | val read_propp = prep_propp false read_props read_prop_pats; | 
| 945 | val cert_propp = prep_propp false cert_props cert_prop_pats; | |
| 10554 | 946 | val read_propp_schematic = prep_propp true read_props read_prop_pats; | 
| 947 | val cert_propp_schematic = prep_propp true cert_props cert_prop_pats; | |
| 948 | ||
| 11925 | 949 | val bind_propp = gen_bind_propp read_propp; | 
| 950 | val bind_propp_i = gen_bind_propp cert_propp; | |
| 951 | val bind_propp_schematic = gen_bind_propp read_propp_schematic; | |
| 10554 | 952 | val bind_propp_schematic_i = gen_bind_propp cert_propp_schematic; | 
| 6789 | 953 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 954 | end; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 955 | |
| 6789 | 956 | |
| 5819 | 957 | |
| 958 | (** theorems **) | |
| 959 | ||
| 18042 | 960 | (* fact_tac *) | 
| 961 | ||
| 18122 | 962 | fun comp_incr_tac [] _ st = no_tac st | 
| 963 | | comp_incr_tac (th :: ths) i st = | |
| 964 | (Goal.compose_hhf_tac (Drule.incr_indexes st th) i APPEND comp_incr_tac ths i) st; | |
| 18042 | 965 | |
| 18122 | 966 | fun fact_tac facts = Tactic.norm_hhf_tac THEN' comp_incr_tac facts; | 
| 967 | ||
| 968 | fun some_fact_tac ctxt = SUBGOAL (fn (goal, i) => | |
| 18042 | 969 | let | 
| 19001 | 970 | val index = fact_index_of ctxt; | 
| 18042 | 971 | val facts = FactIndex.could_unify index (Term.strip_all_body goal); | 
| 972 | in fact_tac facts i end); | |
| 973 | ||
| 974 | ||
| 6091 | 975 | (* get_thm(s) *) | 
| 5819 | 976 | |
| 18042 | 977 | fun retrieve_thms _ pick ctxt (Fact s) = | 
| 16501 | 978 | let | 
| 18042 | 979 | val thy = theory_of ctxt; | 
| 980 | val th = Goal.prove thy [] [] (read_prop ctxt s) (K (ALLGOALS (some_fact_tac ctxt))) | |
| 18678 | 981 | handle ERROR msg => cat_error msg "Failed to retrieve literal fact."; | 
| 18042 | 982 | in pick "" [th] end | 
| 983 | | retrieve_thms from_thy pick ctxt xthmref = | |
| 984 | let | |
| 985 | val thy = theory_of ctxt; | |
| 19001 | 986 | val (space, tab) = #1 (thms_of ctxt); | 
| 16501 | 987 | val thmref = PureThy.map_name_of_thmref (NameSpace.intern space) xthmref; | 
| 988 | val name = PureThy.name_of_thmref thmref; | |
| 989 | in | |
| 17412 | 990 | (case Symtab.lookup tab name of | 
| 16540 | 991 | SOME ths => map (Thm.transfer thy) (PureThy.select_thm thmref ths) | 
| 992 | | NONE => from_thy thy xthmref) |> pick name | |
| 18042 | 993 | end; | 
| 5819 | 994 | |
| 9566 | 995 | val get_thm = retrieve_thms PureThy.get_thms PureThy.single_thm; | 
| 996 | val get_thm_closure = retrieve_thms PureThy.get_thms_closure PureThy.single_thm; | |
| 997 | val get_thms = retrieve_thms PureThy.get_thms (K I); | |
| 998 | val get_thms_closure = retrieve_thms PureThy.get_thms_closure (K I); | |
| 5819 | 999 | |
| 1000 | ||
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1001 | (* valid_thms *) | 
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1002 | |
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1003 | fun valid_thms ctxt (name, ths) = | 
| 18678 | 1004 | (case try (fn () => get_thms ctxt (Name name)) () of | 
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1005 | NONE => false | 
| 16147 | 1006 | | SOME ths' => Thm.eq_thms (ths, ths')); | 
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1007 | |
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1008 | |
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1009 | (* lthms_containing *) | 
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1010 | |
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1011 | fun lthms_containing ctxt spec = | 
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1012 | FactIndex.find (fact_index_of ctxt) spec | 
| 18043 | 1013 | |> map ((not o valid_thms ctxt) ? apfst (fn name => | 
| 18042 | 1014 | NameSpace.hidden (if name = "" then "unnamed" else name))); | 
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1015 | |
| 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 1016 | |
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1017 | (* name space operations *) | 
| 12309 
03e9287be350
name space for local thms (export cond_extern, qualified);
 wenzelm parents: 
12291diff
changeset | 1018 | |
| 19001 | 1019 | val extern_thm = NameSpace.extern o #1 o #1 o thms_of; | 
| 12309 
03e9287be350
name space for local thms (export cond_extern, qualified);
 wenzelm parents: 
12291diff
changeset | 1020 | |
| 19062 
0fd52e819c24
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19033diff
changeset | 1021 | val no_base_names = map_naming NameSpace.no_base_names; | 
| 16147 | 1022 | val qualified_names = map_naming NameSpace.qualified_names; | 
| 19062 
0fd52e819c24
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19033diff
changeset | 1023 | val sticky_prefix = map_naming o NameSpace.sticky_prefix; | 
| 
0fd52e819c24
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19033diff
changeset | 1024 | val restore_naming = map_naming o K o naming_of; | 
| 12309 
03e9287be350
name space for local thms (export cond_extern, qualified);
 wenzelm parents: 
12291diff
changeset | 1025 | |
| 19001 | 1026 | fun hide_thms fully names = map_thms (fn ((space, tab), index) => | 
| 1027 | ((fold (NameSpace.hide fully) names space, tab), index)); | |
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1028 | |
| 12309 
03e9287be350
name space for local thms (export cond_extern, qualified);
 wenzelm parents: 
12291diff
changeset | 1029 | |
| 17360 
fa1f262dbc4e
added add_view, export_view (supercedes adhoc view arguments);
 wenzelm parents: 
17221diff
changeset | 1030 | (* put_thms *) | 
| 5819 | 1031 | |
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 1032 | fun put_thms _ ("", NONE) ctxt = ctxt
 | 
| 19143 | 1033 |   | put_thms do_index ("", SOME ths) ctxt = ctxt |> map_thms (fn (facts, index) =>
 | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1034 | let | 
| 19143 | 1035 |         val index' = FactIndex.add_local do_index (is_known ctxt) ("", ths) index;
 | 
| 19001 | 1036 | in (facts, index') end) | 
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 1037 | | put_thms _ (bname, NONE) ctxt = ctxt |> map_thms (fn ((space, tab), index) => | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1038 | let | 
| 19387 | 1039 | val name = full_name ctxt bname; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1040 | val tab' = Symtab.delete_safe name tab; | 
| 19001 | 1041 | in ((space, tab'), index) end) | 
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 1042 | | put_thms do_index (bname, SOME ths) ctxt = ctxt |> map_thms (fn ((space, tab), index) => | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1043 | let | 
| 19387 | 1044 | val name = full_name ctxt bname; | 
| 19001 | 1045 | val space' = NameSpace.declare (naming_of ctxt) name space; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1046 | val tab' = Symtab.update (name, ths) tab; | 
| 19143 | 1047 | val index' = FactIndex.add_local do_index (is_known ctxt) (name, ths) index; | 
| 19001 | 1048 | in ((space', tab'), index') end); | 
| 5819 | 1049 | |
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 1050 | fun put_thms_internal thms ctxt = | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 1051 | ctxt |> map_naming (K local_naming) |> put_thms false thms |> restore_naming ctxt; | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 1052 | |
| 7606 | 1053 | |
| 14564 | 1054 | (* note_thmss *) | 
| 5819 | 1055 | |
| 12711 | 1056 | local | 
| 16147 | 1057 | |
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 1058 | fun gen_note_thmss get = fold_map (fn ((name, more_attrs), ths_attrs) => fn ctxt => | 
| 5819 | 1059 | let | 
| 17360 
fa1f262dbc4e
added add_view, export_view (supercedes adhoc view arguments);
 wenzelm parents: 
17221diff
changeset | 1060 | fun app (th, attrs) (ct, ths) = | 
| 18728 | 1061 | let val (ct', th') = foldl_map (Thm.proof_attributes (attrs @ more_attrs)) (ct, get ctxt th) | 
| 12711 | 1062 | in (ct', th' :: ths) end; | 
| 17360 
fa1f262dbc4e
added add_view, export_view (supercedes adhoc view arguments);
 wenzelm parents: 
17221diff
changeset | 1063 | val (ctxt', rev_thms) = fold app ths_attrs (ctxt, []); | 
| 15570 | 1064 | val thms = List.concat (rev rev_thms); | 
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 1065 | in ((name, thms), ctxt' |> put_thms true (name, SOME thms)) end); | 
| 12711 | 1066 | |
| 1067 | in | |
| 1068 | ||
| 16147 | 1069 | val note_thmss = gen_note_thmss get_thms; | 
| 1070 | val note_thmss_i = gen_note_thmss (K I); | |
| 15696 | 1071 | |
| 1072 | val note_thmss_accesses = gen_note_thmss get_thms; | |
| 1073 | val note_thmss_accesses_i = gen_note_thmss (K I); | |
| 12711 | 1074 | |
| 1075 | end; | |
| 9196 | 1076 | |
| 5819 | 1077 | |
| 1078 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1079 | (** parameters **) | 
| 17360 
fa1f262dbc4e
added add_view, export_view (supercedes adhoc view arguments);
 wenzelm parents: 
17221diff
changeset | 1080 | |
| 8096 | 1081 | (* variables *) | 
| 1082 | ||
| 10381 | 1083 | local | 
| 1084 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1085 | fun prep_vars prep_typ internal legacy = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1086 | fold_map (fn (raw_x, raw_T, raw_mx) => fn ctxt => | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1087 | let | 
| 19371 | 1088 | val (x, mx) = Syntax.const_mixfix raw_x raw_mx; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1089 | val _ = | 
| 18678 | 1090 | if not legacy andalso not (Syntax.is_identifier (no_skolem internal x)) then | 
| 1091 |           error ("Illegal variable name: " ^ quote x)
 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1092 | else (); | 
| 12504 | 1093 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1094 | fun cond_tvars T = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1095 | if internal then T | 
| 18678 | 1096 | else Type.no_tvars T handle TYPE (msg, _, _) => error msg; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1097 | val opt_T = Option.map (cond_tvars o prep_typ ctxt) raw_T; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1098 | val var = (x, opt_T, mx); | 
| 19001 | 1099 | in (var, ctxt |> declare_var var |> #2) end); | 
| 8096 | 1100 | |
| 10381 | 1101 | in | 
| 1102 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1103 | val read_vars = prep_vars read_typ false false; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1104 | val cert_vars = prep_vars cert_typ true false; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1105 | val read_vars_legacy = prep_vars read_typ true true; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1106 | val cert_vars_legacy = prep_vars cert_typ true true; | 
| 8096 | 1107 | |
| 10381 | 1108 | end; | 
| 1109 | ||
| 8096 | 1110 | |
| 19001 | 1111 | (* abbreviations *) | 
| 1112 | ||
| 19371 | 1113 | val expand_abbrevs = map_consts o apsnd o Consts.expand_abbrevs; | 
| 1114 | ||
| 19001 | 1115 | local | 
| 1116 | ||
| 19371 | 1117 | fun gen_abbrevs prep_vars prep_term (mode, inout) = fold (fn (raw_c, raw_t, raw_mx) => fn ctxt => | 
| 19001 | 1118 | let | 
| 1119 | val ([(c, _, mx)], _) = prep_vars [(raw_c, NONE, raw_mx)] ctxt; | |
| 19387 | 1120 | val (c', b) = Syntax.mixfix_const (full_name ctxt c) mx; | 
| 19371 | 1121 | val [t] = polymorphic ctxt [prep_term (ctxt |> expand_abbrevs false) raw_t]; | 
| 19019 | 1122 | val T = Term.fastype_of t; | 
| 19001 | 1123 | val _ = | 
| 19270 | 1124 | if null (hidden_polymorphism t T) then () | 
| 19001 | 1125 |       else error ("Extra type variables on rhs of abbreviation: " ^ quote c);
 | 
| 1126 | in | |
| 1127 | ctxt | |
| 1128 | |> declare_term t | |
| 19387 | 1129 | |> map_consts | 
| 1130 | (apsnd (Consts.abbreviate (pp ctxt) (tsig_of ctxt) (naming_of ctxt) mode ((c, t), b))) | |
| 1131 | |> map_syntax (LocalSyntax.add_syntax (theory_of ctxt) (mode, inout) [(false, (c', T, mx))]) | |
| 19001 | 1132 | end); | 
| 1133 | ||
| 1134 | in | |
| 1135 | ||
| 1136 | val add_abbrevs = gen_abbrevs read_vars read_term; | |
| 1137 | val add_abbrevs_i = gen_abbrevs cert_vars cert_term; | |
| 1138 | ||
| 1139 | end; | |
| 1140 | ||
| 1141 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1142 | (* fixes *) | 
| 5819 | 1143 | |
| 8096 | 1144 | local | 
| 1145 | ||
| 19001 | 1146 | fun prep_mixfix (x, T, mx) = | 
| 19019 | 1147 | if mx <> NoSyn andalso mx <> Structure andalso | 
| 1148 | (can Syntax.dest_internal x orelse can Syntax.dest_skolem x) then | |
| 19001 | 1149 |     error ("Illegal mixfix syntax for internal/skolem constant " ^ quote x)
 | 
| 1150 | else (true, (x, T, mx)); | |
| 1151 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1152 | fun no_dups _ [] = () | 
| 18900 | 1153 |   | no_dups ctxt dups = error ("Duplicate fixed variable(s): " ^ commas_quote dups);
 | 
| 11925 | 1154 | |
| 18844 | 1155 | fun gen_fixes prep raw_vars ctxt = | 
| 8096 | 1156 | let | 
| 19371 | 1157 | val thy = theory_of ctxt; | 
| 1158 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1159 | val (ys, zs) = split_list (fixes_of ctxt); | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1160 | val (vars, ctxt') = prep raw_vars ctxt; | 
| 12130 
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
 wenzelm parents: 
12123diff
changeset | 1161 | val xs = map #1 vars; | 
| 18971 | 1162 | val _ = no_dups ctxt (duplicates (op =) xs); | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1163 | val xs' = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1164 | if is_body ctxt then Term.variantlist (map Syntax.skolem xs, zs) | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1165 | else (no_dups ctxt (xs inter_string ys); no_dups ctxt (xs inter_string zs); xs); | 
| 8096 | 1166 | in | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1167 | ctxt' | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1168 | |> map_fixes (fn (b, fixes) => (b, rev (xs ~~ xs') @ fixes)) | 
| 19001 | 1169 | |> fold_map declare_var (map2 (fn x' => fn (_, T, mx) => (x', T, mx)) xs' vars) | 
| 19371 | 1170 | |-> (map_syntax o LocalSyntax.add_syntax thy Syntax.default_mode o map prep_mixfix) | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1171 | |> pair xs' | 
| 8096 | 1172 | end; | 
| 5819 | 1173 | |
| 8096 | 1174 | in | 
| 7679 | 1175 | |
| 18844 | 1176 | val add_fixes = gen_fixes read_vars; | 
| 1177 | val add_fixes_i = gen_fixes cert_vars; | |
| 1178 | val add_fixes_legacy = gen_fixes cert_vars_legacy; | |
| 8096 | 1179 | |
| 1180 | end; | |
| 5819 | 1181 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1182 | |
| 18844 | 1183 | (* invent fixes *) | 
| 1184 | ||
| 1185 | fun invent_fixes xs ctxt = | |
| 1186 | ctxt | |
| 1187 | |> set_body true | |
| 1188 | |> add_fixes_i (map (fn x => (x, NONE, NoSyn)) xs) | |
| 1189 | ||> restore_body ctxt; | |
| 1190 | ||
| 1191 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1192 | (* fixes vs. frees *) | 
| 12016 | 1193 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1194 | fun fix_frees t ctxt = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1195 | let | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1196 | fun add (Free (x, T)) = if is_fixed ctxt x then I else insert (op =) (x, SOME T, NoSyn) | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1197 | | add _ = I; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1198 | val fixes = rev (fold_aterms add t []); | 
| 18809 | 1199 | in | 
| 1200 | ctxt | |
| 1201 | |> declare_term t | |
| 1202 | |> set_body false | |
| 1203 | |> (snd o add_fixes_i fixes) | |
| 1204 | |> restore_body ctxt | |
| 1205 | end; | |
| 6895 | 1206 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1207 | fun auto_fixes (arg as (ctxt, (propss, x))) = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1208 | if is_body ctxt then arg | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1209 | else ((fold o fold) fix_frees propss ctxt, (propss, x)); | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1210 | |
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1211 | fun bind_fixes xs ctxt = | 
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1212 | let | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1213 | val (_, ctxt') = ctxt |> add_fixes_i (map (fn x => (x, NONE, NoSyn)) xs); | 
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1214 | fun bind (t as Free (x, T)) = | 
| 18340 | 1215 | if member (op =) xs x then | 
| 15531 | 1216 | (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 | 1217 | else t | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1218 | | bind (t $ u) = bind t $ bind u | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1219 | | bind (Abs (x, T, t)) = Abs (x, T, bind t) | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1220 | | bind a = a; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1221 | in (bind, ctxt') end; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1222 | |
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1223 | |
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1224 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1225 | (** assumptions **) | 
| 18187 | 1226 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1227 | (* generic assms *) | 
| 18187 | 1228 | |
| 1229 | local | |
| 1230 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1231 | fun gen_assm ((name, attrs), props) ctxt = | 
| 18187 | 1232 | let | 
| 1233 | val cprops = map (Thm.cterm_of (theory_of ctxt)) props; | |
| 1234 | val asms = map (Goal.norm_hhf o Thm.assume) cprops; | |
| 1235 | ||
| 1236 | val ths = map (fn th => ([th], [])) asms; | |
| 1237 | val ([(_, thms)], ctxt') = | |
| 1238 | ctxt | |
| 1239 | |> auto_bind_facts props | |
| 1240 | |> note_thmss_i [((name, attrs), ths)]; | |
| 1241 | in ((cprops, (name, asms), (name, thms)), ctxt') end; | |
| 1242 | ||
| 1243 | fun gen_assms prepp exp args ctxt = | |
| 1244 | let | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1245 | val (propss, ctxt1) = swap (prepp (ctxt, map snd args)); | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1246 | val (results, ctxt2) = fold_map gen_assm (map fst args ~~ propss) ctxt1; | 
| 18187 | 1247 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1248 | val new_asms = List.concat (map #1 results); | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1249 | val new_prems = map #2 results; | 
| 18809 | 1250 | val ctxt3 = ctxt2 | 
| 1251 | |> map_assms (fn (asms, prems) => (asms @ [(new_asms, exp)], prems @ new_prems)) | |
| 1252 | val ctxt4 = ctxt3 | |
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 1253 | |> put_thms_internal (AutoBind.premsN, SOME (prems_of ctxt3)); | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1254 | in (map #3 results, warn_extra_tfrees ctxt ctxt4) end; | 
| 18187 | 1255 | |
| 1256 | in | |
| 1257 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1258 | val add_assms = gen_assms (apsnd #1 o bind_propp); | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1259 | val add_assms_i = gen_assms (apsnd #1 o bind_propp_i); | 
| 18187 | 1260 | |
| 1261 | end; | |
| 1262 | ||
| 1263 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1264 | (* basic assumptions *) | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1265 | |
| 18879 | 1266 | (* | 
| 1267 | [A] | |
| 18971 | 1268 | : | 
| 18879 | 1269 | B | 
| 1270 | -------- | |
| 1271 | #A ==> B | |
| 1272 | *) | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1273 | fun assume_export true = Seq.single oo Drule.implies_intr_protected | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1274 | | assume_export false = Seq.single oo Drule.implies_intr_list; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1275 | |
| 18879 | 1276 | (* | 
| 1277 | [A] | |
| 18971 | 1278 | : | 
| 18879 | 1279 | B | 
| 1280 | ------- | |
| 1281 | A ==> B | |
| 1282 | *) | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1283 | fun presume_export _ = assume_export false; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1284 | |
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1285 | |
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1286 | (* additional views *) | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1287 | |
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1288 | fun add_view outer view = map_assms (fn (asms, prems) => | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1289 | let | 
| 19019 | 1290 | val (asms1, asms2) = chop (length (assumptions_of outer)) asms; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1291 | val asms' = asms1 @ [(view, assume_export)] @ asms2; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1292 | in (asms', prems) end); | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1293 | |
| 18785 
5ae1f1c1b764
renamed export to export_standard (again!), because it includes Drule.local_standard';
 wenzelm parents: 
18770diff
changeset | 1294 | fun export_view view inner outer = export_standard (add_view outer view inner) outer; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1295 | |
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1296 | |
| 5819 | 1297 | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1298 | (** cases **) | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1299 | |
| 16147 | 1300 | local | 
| 1301 | ||
| 16668 | 1302 | fun rem_case name = remove (fn (x: string, (y, _)) => x = y) name; | 
| 16147 | 1303 | |
| 18476 | 1304 | fun add_case _ ("", _) cases = cases
 | 
| 1305 | | add_case _ (name, NONE) cases = rem_case name cases | |
| 1306 | | add_case is_proper (name, SOME c) cases = (name, (c, is_proper)) :: rem_case name cases; | |
| 16147 | 1307 | |
| 18678 | 1308 | fun prep_case name fxs c = | 
| 18609 | 1309 | let | 
| 1310 | fun replace (opt_x :: xs) ((y, T) :: ys) = (the_default y opt_x, T) :: replace xs ys | |
| 1311 | | replace [] ys = ys | |
| 18678 | 1312 |       | replace (_ :: _) [] = error ("Too many parameters for case " ^ quote name);
 | 
| 18609 | 1313 |     val RuleCases.Case {fixes, assumes, binds, cases} = c;
 | 
| 1314 | val fixes' = replace fxs fixes; | |
| 1315 | val binds' = map drop_schematic binds; | |
| 1316 | in | |
| 1317 | if null (fold (Term.add_tvarsT o snd) fixes []) andalso | |
| 1318 | null (fold (fold Term.add_vars o snd) assumes []) then | |
| 1319 |         RuleCases.Case {fixes = fixes', assumes = assumes, binds = binds', cases = cases}
 | |
| 18678 | 1320 |     else error ("Illegal schematic variable(s) in case " ^ quote name)
 | 
| 18609 | 1321 | end; | 
| 1322 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1323 | fun fix (x, T) ctxt = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1324 | let | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1325 | val (bind, ctxt') = bind_fixes [x] ctxt; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1326 | val t = bind (Free (x, T)); | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1327 | in (t, ctxt' |> declare_syntax t) end; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1328 | |
| 16147 | 1329 | in | 
| 1330 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1331 | fun add_cases is_proper = map_cases o fold (add_case is_proper); | 
| 18609 | 1332 | |
| 1333 | fun case_result c ctxt = | |
| 1334 | let | |
| 1335 |     val RuleCases.Case {fixes, ...} = c;
 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1336 | val (ts, ctxt') = ctxt |> fold_map fix fixes; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1337 |     val RuleCases.Case {assumes, binds, cases, ...} = RuleCases.apply ts c;
 | 
| 18609 | 1338 | in | 
| 1339 | ctxt' | |
| 18699 
f3bfe81b6e58
case_result: drop_schematic, i.e. be permissive about illegal binds;
 wenzelm parents: 
18678diff
changeset | 1340 | |> add_binds_i (map drop_schematic binds) | 
| 18609 | 1341 | |> add_cases true (map (apsnd SOME) cases) | 
| 1342 | |> pair (assumes, (binds, cases)) | |
| 1343 | end; | |
| 1344 | ||
| 1345 | val apply_case = apfst fst oo case_result; | |
| 1346 | ||
| 16540 | 1347 | fun get_case ctxt name xs = | 
| 17184 | 1348 | (case AList.lookup (op =) (cases_of ctxt) name of | 
| 18678 | 1349 |     NONE => error ("Unknown case: " ^ quote name)
 | 
| 1350 | | SOME (c, _) => prep_case name xs c); | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1351 | |
| 16147 | 1352 | end; | 
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1353 | |
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1354 | |
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1355 | |
| 10810 | 1356 | (** print context information **) | 
| 1357 | ||
| 1358 | val verbose = ref false; | |
| 1359 | fun verb f x = if ! verbose then f (x ()) else []; | |
| 1360 | ||
| 1361 | fun setmp_verbose f x = Library.setmp verbose true f x; | |
| 1362 | ||
| 1363 | fun pretty_items prt name items = | |
| 1364 | let | |
| 1365 | fun prt_itms (name, [x]) = Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt x] | |
| 1366 | | prt_itms (name, xs) = Pretty.big_list (name ^ ":") (map prt xs); | |
| 1367 | in | |
| 1368 | if null items andalso not (! verbose) then [] | |
| 1369 | else [Pretty.big_list name (map prt_itms items)] | |
| 1370 | end; | |
| 1371 | ||
| 1372 | ||
| 12072 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1373 | (* local syntax *) | 
| 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1374 | |
| 12093 | 1375 | val print_syntax = Syntax.print_syntax o syn_of; | 
| 12072 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1376 | |
| 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1377 | |
| 18971 | 1378 | (* local consts *) | 
| 1379 | ||
| 1380 | fun pretty_consts ctxt = | |
| 1381 | let | |
| 19033 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 1382 | val ((_, globals), (space, consts)) = | 
| 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 1383 | pairself (#constants o Consts.dest) (#consts (rep_context ctxt)); | 
| 18971 | 1384 | fun local_abbrev (_, (_, NONE)) = I | 
| 1385 | | local_abbrev (c, (T, SOME t)) = | |
| 1386 | if Symtab.defined globals c then I else cons (c, Logic.mk_equals (Const (c, T), t)); | |
| 1387 | val abbrevs = NameSpace.extern_table (space, Symtab.make (Symtab.fold local_abbrev consts [])); | |
| 1388 | in | |
| 1389 | if null abbrevs andalso not (! verbose) then [] | |
| 19310 | 1390 | else [Pretty.big_list "abbreviations:" (map (pretty_term_no_abbrevs ctxt o #2) abbrevs)] | 
| 18971 | 1391 | end; | 
| 1392 | ||
| 1393 | ||
| 10810 | 1394 | (* term bindings *) | 
| 1395 | ||
| 16540 | 1396 | fun pretty_binds ctxt = | 
| 10810 | 1397 | let | 
| 16540 | 1398 | val binds = binds_of ctxt; | 
| 19310 | 1399 | fun prt_bind (xi, (T, t)) = pretty_term_no_abbrevs ctxt (Logic.mk_equals (Var (xi, T), t)); | 
| 10810 | 1400 | in | 
| 15758 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 1401 | if Vartab.is_empty binds andalso not (! verbose) then [] | 
| 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 1402 | else [Pretty.big_list "term bindings:" (map prt_bind (Vartab.dest binds))] | 
| 10810 | 1403 | end; | 
| 1404 | ||
| 1405 | val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds; | |
| 1406 | ||
| 1407 | ||
| 1408 | (* local theorems *) | |
| 1409 | ||
| 16540 | 1410 | fun pretty_lthms ctxt = | 
| 19001 | 1411 | pretty_items (pretty_thm ctxt) "facts:" (NameSpace.extern_table (#1 (thms_of ctxt))); | 
| 10810 | 1412 | |
| 12057 | 1413 | val print_lthms = Pretty.writeln o Pretty.chunks o pretty_lthms; | 
| 10810 | 1414 | |
| 1415 | ||
| 1416 | (* local contexts *) | |
| 1417 | ||
| 16540 | 1418 | fun pretty_cases ctxt = | 
| 10810 | 1419 | let | 
| 12057 | 1420 | val prt_term = pretty_term ctxt; | 
| 1421 | ||
| 10810 | 1422 | fun prt_let (xi, t) = Pretty.block | 
| 10818 | 1423 | [Pretty.quote (prt_term (Var (xi, Term.fastype_of t))), Pretty.str " =", Pretty.brk 1, | 
| 10810 | 1424 | Pretty.quote (prt_term t)]; | 
| 1425 | ||
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1426 | fun prt_asm (a, ts) = Pretty.block (Pretty.breaks | 
| 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1427 | ((if a = "" then [] else [Pretty.str (a ^ ":")]) @ map (Pretty.quote o prt_term) ts)); | 
| 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1428 | |
| 10810 | 1429 | fun prt_sect _ _ _ [] = [] | 
| 1430 | | prt_sect s sep prt xs = [Pretty.block (Pretty.breaks (Pretty.str s :: | |
| 15570 | 1431 | List.concat (Library.separate sep (map (Library.single o prt) xs))))]; | 
| 10810 | 1432 | |
| 18609 | 1433 | fun prt_case (name, (fixes, (asms, (lets, cs)))) = Pretty.block (Pretty.fbreaks | 
| 10810 | 1434 | (Pretty.str (name ^ ":") :: | 
| 11915 | 1435 | prt_sect "fix" [] (Pretty.str o fst) fixes @ | 
| 10810 | 1436 | prt_sect "let" [Pretty.str "and"] prt_let | 
| 15570 | 1437 | (List.mapPartial (fn (xi, SOME t) => SOME (xi, t) | _ => NONE) lets) @ | 
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1438 | (if forall (null o #2) asms then [] | 
| 18609 | 1439 | else prt_sect "assume" [Pretty.str "and"] prt_asm asms) @ | 
| 1440 | prt_sect "subcases:" [] (Pretty.str o fst) cs)); | |
| 16540 | 1441 | |
| 18476 | 1442 | fun add_case (_, (_, false)) = I | 
| 18609 | 1443 |       | add_case (name, (c as RuleCases.Case {fixes, ...}, true)) =
 | 
| 1444 | cons (name, (fixes, #1 (case_result c ctxt))); | |
| 18476 | 1445 | val cases = fold add_case (cases_of ctxt) []; | 
| 10810 | 1446 | in | 
| 1447 | if null cases andalso not (! verbose) then [] | |
| 18476 | 1448 | else [Pretty.big_list "cases:" (map prt_case cases)] | 
| 10810 | 1449 | end; | 
| 1450 | ||
| 1451 | val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases; | |
| 1452 | ||
| 1453 | ||
| 12057 | 1454 | (* core context *) | 
| 10810 | 1455 | |
| 1456 | val prems_limit = ref 10; | |
| 1457 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1458 | fun pretty_ctxt ctxt = | 
| 10810 | 1459 | let | 
| 12057 | 1460 | val prt_term = pretty_term ctxt; | 
| 1461 | ||
| 12093 | 1462 | (*structures*) | 
| 19001 | 1463 | val structs = LocalSyntax.structs_of (syntax_of ctxt); | 
| 12093 | 1464 | val prt_structs = if null structs then [] | 
| 1465 | else [Pretty.block (Pretty.str "structures:" :: Pretty.brk 1 :: | |
| 1466 | Pretty.commas (map Pretty.str structs))]; | |
| 1467 | ||
| 12057 | 1468 | (*fixes*) | 
| 1469 | fun prt_fix (x, x') = | |
| 1470 | if x = x' then Pretty.str x | |
| 1471 | else Pretty.block [Pretty.str x, Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')]; | |
| 18340 | 1472 | val fixes = | 
| 1473 | rev (filter_out ((can Syntax.dest_internal orf member (op =) structs) o #1) (fixes_of ctxt)); | |
| 12093 | 1474 | val prt_fixes = if null fixes then [] | 
| 1475 | else [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 :: | |
| 1476 | Pretty.commas (map prt_fix fixes))]; | |
| 12057 | 1477 | |
| 1478 | (*prems*) | |
| 10810 | 1479 | val limit = ! prems_limit; | 
| 1480 | val prems = prems_of ctxt; | |
| 1481 | val len = length prems; | |
| 12093 | 1482 | val prt_prems = if null prems then [] | 
| 1483 | else [Pretty.big_list "prems:" ((if len <= limit then [] else [Pretty.str "..."]) @ | |
| 1484 | map (pretty_thm ctxt) (Library.drop (len - limit, prems)))]; | |
| 1485 | ||
| 1486 | in prt_structs @ prt_fixes @ prt_prems end; | |
| 10810 | 1487 | |
| 1488 | ||
| 1489 | (* main context *) | |
| 1490 | ||
| 16540 | 1491 | fun pretty_context ctxt = | 
| 10810 | 1492 | let | 
| 12057 | 1493 | val prt_term = pretty_term ctxt; | 
| 1494 | val prt_typ = pretty_typ ctxt; | |
| 1495 | val prt_sort = pretty_sort ctxt; | |
| 10810 | 1496 | |
| 1497 | (*theory*) | |
| 12057 | 1498 | val pretty_thy = Pretty.block | 
| 17384 | 1499 | [Pretty.str "theory:", Pretty.brk 1, Context.pretty_thy (theory_of ctxt)]; | 
| 10810 | 1500 | |
| 1501 | (*defaults*) | |
| 1502 | fun prt_atom prt prtT (x, X) = Pretty.block | |
| 1503 | [prt x, Pretty.str " ::", Pretty.brk 1, prtT X]; | |
| 1504 | ||
| 1505 | fun prt_var (x, ~1) = prt_term (Syntax.free x) | |
| 1506 | | prt_var xi = prt_term (Syntax.var xi); | |
| 1507 | ||
| 1508 | fun prt_varT (x, ~1) = prt_typ (TFree (x, [])) | |
| 1509 | | prt_varT xi = prt_typ (TVar (xi, [])); | |
| 1510 | ||
| 1511 | val prt_defT = prt_atom prt_var prt_typ; | |
| 1512 | val prt_defS = prt_atom prt_varT prt_sort; | |
| 16540 | 1513 | |
| 1514 | val (types, sorts, used, _) = defaults_of ctxt; | |
| 10810 | 1515 | in | 
| 18609 | 1516 | verb single (K pretty_thy) @ | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1517 | pretty_ctxt ctxt @ | 
| 18971 | 1518 | verb pretty_consts (K ctxt) @ | 
| 10810 | 1519 | verb pretty_binds (K ctxt) @ | 
| 12057 | 1520 | verb pretty_lthms (K ctxt) @ | 
| 10810 | 1521 | verb pretty_cases (K ctxt) @ | 
| 18609 | 1522 | verb single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @ | 
| 1523 | verb single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts))) @ | |
| 18809 | 1524 |     verb single (fn () => Pretty.strs ("used type variable names:" :: rev used))
 | 
| 10810 | 1525 | end; | 
| 1526 | ||
| 18809 | 1527 | |
| 1528 | (* toplevel pretty printing *) | |
| 1529 | ||
| 1530 | val debug = ref false; | |
| 1531 | ||
| 1532 | fun pprint_context ctxt = Pretty.pprint | |
| 1533 | (if ! debug then Pretty.quote (Pretty.big_list "proof context:" (pretty_context ctxt)) | |
| 1534 | else Pretty.str "<context>"); | |
| 1535 | ||
| 5819 | 1536 | end; |