| author | wenzelm | 
| Thu, 01 Jan 2009 10:42:48 +0100 | |
| changeset 29283 | f4743512b12d | 
| parent 29006 | abe0f11cfa4e | 
| child 29318 | 6337d1cb2ba0 | 
| 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 | |
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 7 | elements. See also structure Variable and Assumption. | 
| 5819 | 8 | *) | 
| 9 | ||
| 10 | signature PROOF_CONTEXT = | |
| 11 | sig | |
| 20310 | 12 | val theory_of: Proof.context -> theory | 
| 13 | val init: theory -> Proof.context | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 14 | type mode | 
| 24501 | 15 | val mode_default: mode | 
| 16 | val mode_stmt: mode | |
| 17 | val mode_pattern: mode | |
| 18 | val mode_schematic: mode | |
| 19 | val mode_abbrev: mode | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 20 | val set_mode: mode -> Proof.context -> Proof.context | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 21 | val get_mode: Proof.context -> mode | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 22 | val restore_mode: Proof.context -> Proof.context -> Proof.context | 
| 27286 | 23 | val abbrev_mode: Proof.context -> bool | 
| 21667 
ce813b82c88b
add_notation: permissive about undeclared consts;
 wenzelm parents: 
21648diff
changeset | 24 | val set_stmt: bool -> Proof.context -> Proof.context | 
| 
ce813b82c88b
add_notation: permissive about undeclared consts;
 wenzelm parents: 
21648diff
changeset | 25 | val naming_of: Proof.context -> NameSpace.naming | 
| 28965 | 26 | val full_name: Proof.context -> Binding.T -> string | 
| 27 | val full_bname: Proof.context -> bstring -> string | |
| 20310 | 28 | val consts_of: Proof.context -> Consts.T | 
| 21183 | 29 | val const_syntax_name: Proof.context -> string -> string | 
| 24752 | 30 | val the_const_constraint: Proof.context -> string -> typ | 
| 26268 | 31 | val mk_const: Proof.context -> string * typ list -> term | 
| 20784 | 32 | val set_syntax_mode: Syntax.mode -> Proof.context -> Proof.context | 
| 20310 | 33 | val restore_syntax_mode: Proof.context -> Proof.context -> Proof.context | 
| 26284 | 34 | val facts_of: Proof.context -> Facts.T | 
| 27259 | 35 | val transfer_syntax: theory -> Proof.context -> Proof.context | 
| 20310 | 36 | val transfer: theory -> Proof.context -> Proof.context | 
| 20367 | 37 | val theory: (theory -> theory) -> Proof.context -> Proof.context | 
| 38 | val theory_result: (theory -> 'a * theory) -> Proof.context -> 'a * Proof.context | |
| 28212 | 39 | val extern_fact: Proof.context -> string -> xstring | 
| 21728 | 40 | val pretty_term_abbrev: Proof.context -> term -> Pretty.T | 
| 22874 | 41 | val pretty_thm_legacy: thm -> Pretty.T | 
| 20310 | 42 | val pretty_thm: Proof.context -> thm -> Pretty.T | 
| 43 | val pretty_thms: Proof.context -> thm list -> Pretty.T | |
| 44 | val pretty_fact: Proof.context -> string * thm list -> Pretty.T | |
| 45 | val string_of_thm: Proof.context -> thm -> string | |
| 46 | val read_typ: Proof.context -> string -> typ | |
| 47 | val read_typ_syntax: Proof.context -> string -> typ | |
| 48 | val read_typ_abbrev: Proof.context -> string -> typ | |
| 49 | val cert_typ: Proof.context -> typ -> typ | |
| 50 | val cert_typ_syntax: Proof.context -> typ -> typ | |
| 51 | val cert_typ_abbrev: Proof.context -> typ -> typ | |
| 52 | val get_skolem: Proof.context -> string -> string | |
| 53 | val revert_skolem: Proof.context -> string -> string | |
| 25328 | 54 | val infer_type: Proof.context -> string -> typ | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 55 | val inferred_param: string -> Proof.context -> typ * Proof.context | 
| 25328 | 56 | val inferred_fixes: Proof.context -> (string * typ) list * Proof.context | 
| 57 | val read_tyname: Proof.context -> string -> typ | |
| 25345 
dd5b851f8ef0
renamed ProofContext.read_const' to ProofContext.read_const_proper;
 wenzelm parents: 
25332diff
changeset | 58 | val read_const_proper: Proof.context -> string -> term | 
| 25328 | 59 | val read_const: Proof.context -> string -> term | 
| 27259 | 60 | val allow_dummies: Proof.context -> Proof.context | 
| 22763 | 61 | val decode_term: Proof.context -> term -> term | 
| 25406 | 62 | val standard_infer_types: Proof.context -> term list -> term list | 
| 24684 | 63 | val read_term_pattern: Proof.context -> string -> term | 
| 64 | val read_term_schematic: Proof.context -> string -> term | |
| 65 | val read_term_abbrev: Proof.context -> string -> term | |
| 25345 
dd5b851f8ef0
renamed ProofContext.read_const' to ProofContext.read_const_proper;
 wenzelm parents: 
25332diff
changeset | 66 | val expand_abbrevs: Proof.context -> term -> term | 
| 20310 | 67 | val cert_term: Proof.context -> term -> term | 
| 68 | val cert_prop: Proof.context -> term -> term | |
| 69 | val goal_export: Proof.context -> Proof.context -> thm list -> thm list | |
| 70 | val export: Proof.context -> Proof.context -> thm list -> thm list | |
| 21531 | 71 | val export_morphism: Proof.context -> Proof.context -> morphism | 
| 28396 | 72 | val norm_export_morphism: Proof.context -> Proof.context -> morphism | 
| 20310 | 73 | val add_binds: (indexname * string option) list -> Proof.context -> Proof.context | 
| 74 | val add_binds_i: (indexname * term option) list -> Proof.context -> Proof.context | |
| 75 | val auto_bind_goal: term list -> Proof.context -> Proof.context | |
| 76 | val auto_bind_facts: term list -> Proof.context -> Proof.context | |
| 77 | val match_bind: bool -> (string list * string) list -> Proof.context -> term list * Proof.context | |
| 78 | val match_bind_i: bool -> (term list * term) list -> Proof.context -> term list * Proof.context | |
| 79 | val read_propp: Proof.context * (string * string list) list list | |
| 80 | -> Proof.context * (term * term list) list list | |
| 81 | val cert_propp: Proof.context * (term * term list) list list | |
| 82 | -> Proof.context * (term * term list) list list | |
| 83 | val read_propp_schematic: Proof.context * (string * string list) list list | |
| 84 | -> Proof.context * (term * term list) list list | |
| 85 | val cert_propp_schematic: Proof.context * (term * term list) list list | |
| 86 | -> Proof.context * (term * term list) list list | |
| 87 | val bind_propp: Proof.context * (string * string list) list list | |
| 88 | -> Proof.context * (term list list * (Proof.context -> Proof.context)) | |
| 89 | val bind_propp_i: Proof.context * (term * term list) list list | |
| 90 | -> Proof.context * (term list list * (Proof.context -> Proof.context)) | |
| 91 | val bind_propp_schematic: Proof.context * (string * string list) list list | |
| 92 | -> Proof.context * (term list list * (Proof.context -> Proof.context)) | |
| 93 | val bind_propp_schematic_i: Proof.context * (term * term list) list list | |
| 94 | -> Proof.context * (term list list * (Proof.context -> Proof.context)) | |
| 18042 | 95 | val fact_tac: thm list -> int -> tactic | 
| 20310 | 96 | val some_fact_tac: Proof.context -> int -> tactic | 
| 26346 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 97 | val get_fact: Proof.context -> Facts.ref -> thm list | 
| 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 98 | val get_fact_single: Proof.context -> Facts.ref -> thm | 
| 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 99 | val get_thms: Proof.context -> xstring -> thm list | 
| 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 100 | val get_thm: Proof.context -> xstring -> thm | 
| 22352 | 101 | val add_path: string -> Proof.context -> Proof.context | 
| 20310 | 102 | val no_base_names: Proof.context -> Proof.context | 
| 103 | val qualified_names: Proof.context -> Proof.context | |
| 104 | val sticky_prefix: string -> Proof.context -> Proof.context | |
| 105 | val restore_naming: Proof.context -> Proof.context -> Proof.context | |
| 21728 | 106 | val reset_naming: Proof.context -> Proof.context | 
| 21443 
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
 wenzelm parents: 
21370diff
changeset | 107 | val note_thmss: string -> | 
| 28965 | 108 | ((Binding.T * attribute list) * (Facts.ref * attribute list) list) list -> | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 109 | Proof.context -> (string * thm list) list * Proof.context | 
| 21443 
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
 wenzelm parents: 
21370diff
changeset | 110 | val note_thmss_i: string -> | 
| 28965 | 111 | ((Binding.T * attribute list) * (thm list * attribute list) list) list -> | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 112 | Proof.context -> (string * thm list) list * Proof.context | 
| 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 113 | val put_thms: bool -> string * thm list option -> Proof.context -> Proof.context | 
| 28965 | 114 | val read_vars: (Binding.T * string option * mixfix) list -> Proof.context -> | 
| 115 | (Binding.T * typ option * mixfix) list * Proof.context | |
| 116 | val cert_vars: (Binding.T * typ option * mixfix) list -> Proof.context -> | |
| 117 | (Binding.T * typ option * mixfix) list * Proof.context | |
| 118 | val add_fixes: (Binding.T * string option * mixfix) list -> | |
| 20310 | 119 | Proof.context -> string list * Proof.context | 
| 28965 | 120 | val add_fixes_i: (Binding.T * typ option * mixfix) list -> | 
| 20310 | 121 | Proof.context -> string list * Proof.context | 
| 122 | val auto_fixes: Proof.context * (term list list * 'a) -> Proof.context * (term list list * 'a) | |
| 123 | val bind_fixes: string list -> Proof.context -> (term -> term) * Proof.context | |
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 124 | val add_assms: Assumption.export -> | 
| 28965 | 125 | ((Binding.T * attribute list) * (string * string list) list) list -> | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 126 | Proof.context -> (string * thm list) list * Proof.context | 
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 127 | val add_assms_i: Assumption.export -> | 
| 28965 | 128 | ((Binding.T * attribute list) * (term * term list) list) list -> | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 129 | Proof.context -> (string * thm list) list * Proof.context | 
| 20310 | 130 | val add_cases: bool -> (string * RuleCases.T option) list -> Proof.context -> Proof.context | 
| 131 | val apply_case: RuleCases.T -> Proof.context -> (string * term list) list * Proof.context | |
| 132 | val get_case: Proof.context -> string -> string option list -> RuleCases.T | |
| 24949 | 133 | val notation: bool -> Syntax.mode -> (term * mixfix) list -> Proof.context -> Proof.context | 
| 134 | val target_notation: bool -> Syntax.mode -> (term * mixfix) list -> morphism -> | |
| 21744 | 135 | Context.generic -> Context.generic | 
| 24767 | 136 | val add_const_constraint: string * typ option -> Proof.context -> Proof.context | 
| 28017 | 137 | val add_abbrev: string -> Properties.T -> | 
| 28965 | 138 | Binding.T * term -> Proof.context -> (term * term) * Proof.context | 
| 25052 | 139 | val revert_abbrev: string -> string -> Proof.context -> Proof.context | 
| 10810 | 140 | val verbose: bool ref | 
| 141 |   val setmp_verbose: ('a -> 'b) -> 'a -> 'b
 | |
| 20310 | 142 | val print_syntax: Proof.context -> unit | 
| 21728 | 143 | val print_abbrevs: Proof.context -> unit | 
| 20310 | 144 | val print_binds: Proof.context -> unit | 
| 145 | val print_lthms: Proof.context -> unit | |
| 146 | val print_cases: Proof.context -> unit | |
| 147 | val debug: bool ref | |
| 10810 | 148 | val prems_limit: int ref | 
| 20310 | 149 | val pretty_ctxt: Proof.context -> Pretty.T list | 
| 150 | val pretty_context: Proof.context -> Pretty.T list | |
| 28017 | 151 | val query_type: Proof.context -> string -> Properties.T | 
| 152 | val query_const: Proof.context -> string -> Properties.T | |
| 153 | val query_class: Proof.context -> string -> Properties.T | |
| 5819 | 154 | end; | 
| 155 | ||
| 16540 | 156 | structure ProofContext: PROOF_CONTEXT = | 
| 5819 | 157 | struct | 
| 158 | ||
| 16540 | 159 | val theory_of = Context.theory_of_proof; | 
| 160 | val init = Context.init_proof; | |
| 12057 | 161 | |
| 7270 | 162 | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 163 | (** inner syntax mode **) | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 164 | |
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 165 | datatype mode = | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 166 | Mode of | 
| 24486 | 167 |    {stmt: bool,                (*inner statement mode*)
 | 
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 168 | pattern: bool, (*pattern binding schematic variables*) | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 169 | schematic: bool, (*term referencing loose schematic variables*) | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 170 | abbrev: bool}; (*abbrev mode -- no normalization*) | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 171 | |
| 24486 | 172 | fun make_mode (stmt, pattern, schematic, abbrev) = | 
| 173 |   Mode {stmt = stmt, pattern = pattern, schematic = schematic, abbrev = abbrev};
 | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 174 | |
| 24486 | 175 | val mode_default = make_mode (false, false, false, false); | 
| 176 | val mode_stmt = make_mode (true, false, false, false); | |
| 177 | val mode_pattern = make_mode (false, true, false, false); | |
| 178 | val mode_schematic = make_mode (false, false, true, false); | |
| 179 | val mode_abbrev = make_mode (false, false, false, true); | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 180 | |
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 181 | |
| 5819 | 182 | |
| 16540 | 183 | (** Isar proof context information **) | 
| 5819 | 184 | |
| 16540 | 185 | datatype ctxt = | 
| 186 | Ctxt of | |
| 24675 
2be1253a20d3
removed obsolete set_expand_abbrevs (superceded by mode_abbrev);
 wenzelm parents: 
24612diff
changeset | 187 |    {mode: mode,                                       (*inner syntax mode*)
 | 
| 
2be1253a20d3
removed obsolete set_expand_abbrevs (superceded by mode_abbrev);
 wenzelm parents: 
24612diff
changeset | 188 | naming: NameSpace.naming, (*local naming conventions*) | 
| 
2be1253a20d3
removed obsolete set_expand_abbrevs (superceded by mode_abbrev);
 wenzelm parents: 
24612diff
changeset | 189 | syntax: LocalSyntax.T, (*local syntax*) | 
| 25039 | 190 | consts: Consts.T * Consts.T, (*local/global consts*) | 
| 26284 | 191 | facts: Facts.T, (*local facts*) | 
| 192 | cases: (string * (RuleCases.T * bool)) list}; (*named case contexts*) | |
| 5819 | 193 | |
| 26284 | 194 | fun make_ctxt (mode, naming, syntax, consts, facts, cases) = | 
| 26240 | 195 |   Ctxt {mode = mode, naming = naming, syntax = syntax,
 | 
| 26284 | 196 | consts = consts, facts = facts, cases = cases}; | 
| 5819 | 197 | |
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 198 | val local_naming = NameSpace.default_naming |> NameSpace.add_path "local"; | 
| 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 199 | |
| 16540 | 200 | structure ContextData = ProofDataFun | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 201 | ( | 
| 16540 | 202 | type T = ctxt; | 
| 203 | fun init thy = | |
| 26240 | 204 | make_ctxt (mode_default, local_naming, LocalSyntax.init thy, | 
| 26284 | 205 | (Sign.consts_of thy, Sign.consts_of thy), Facts.empty, []); | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 206 | ); | 
| 5819 | 207 | |
| 16540 | 208 | fun rep_context ctxt = ContextData.get ctxt |> (fn Ctxt args => args); | 
| 5819 | 209 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 210 | fun map_context f = | 
| 26284 | 211 |   ContextData.map (fn Ctxt {mode, naming, syntax, consts, facts, cases} =>
 | 
| 212 | make_ctxt (f (mode, naming, syntax, consts, facts, cases))); | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 213 | |
| 26284 | 214 | fun set_mode mode = map_context (fn (_, naming, syntax, consts, facts, cases) => | 
| 215 | (mode, naming, syntax, consts, facts, cases)); | |
| 21443 
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
 wenzelm parents: 
21370diff
changeset | 216 | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 217 | fun map_mode f = | 
| 26284 | 218 |   map_context (fn (Mode {stmt, pattern, schematic, abbrev}, naming, syntax, consts, facts, cases) =>
 | 
| 219 | (make_mode (f (stmt, pattern, schematic, abbrev)), naming, syntax, consts, facts, cases)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 220 | |
| 19001 | 221 | fun map_naming f = | 
| 26284 | 222 | map_context (fn (mode, naming, syntax, consts, facts, cases) => | 
| 223 | (mode, f naming, syntax, consts, facts, cases)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 224 | |
| 19001 | 225 | fun map_syntax f = | 
| 26284 | 226 | map_context (fn (mode, naming, syntax, consts, facts, cases) => | 
| 227 | (mode, naming, f syntax, consts, facts, cases)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 228 | |
| 19001 | 229 | fun map_consts f = | 
| 26284 | 230 | map_context (fn (mode, naming, syntax, consts, facts, cases) => | 
| 231 | (mode, naming, syntax, f consts, facts, cases)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 232 | |
| 26284 | 233 | fun map_facts f = | 
| 234 | map_context (fn (mode, naming, syntax, consts, facts, cases) => | |
| 235 | (mode, naming, syntax, consts, f facts, cases)); | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 236 | |
| 19001 | 237 | fun map_cases f = | 
| 26284 | 238 | map_context (fn (mode, naming, syntax, consts, facts, cases) => | 
| 239 | (mode, naming, syntax, consts, facts, f cases)); | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 240 | |
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 241 | val get_mode = #mode o rep_context; | 
| 28407 | 242 | val restore_mode = set_mode o get_mode; | 
| 27286 | 243 | val abbrev_mode = get_mode #> (fn Mode {abbrev, ...} => abbrev);
 | 
| 21443 
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
 wenzelm parents: 
21370diff
changeset | 244 | |
| 24486 | 245 | fun set_stmt stmt = | 
| 246 | map_mode (fn (_, pattern, schematic, abbrev) => (stmt, pattern, schematic, abbrev)); | |
| 19001 | 247 | |
| 248 | val naming_of = #naming o rep_context; | |
| 28792 | 249 | |
| 28965 | 250 | val full_name = NameSpace.full_name o naming_of; | 
| 251 | fun full_bname thy = NameSpace.full_name (naming_of thy) o Binding.name; | |
| 5819 | 252 | |
| 16540 | 253 | val syntax_of = #syntax o rep_context; | 
| 19001 | 254 | val syn_of = LocalSyntax.syn_of o syntax_of; | 
| 19543 | 255 | val set_syntax_mode = map_syntax o LocalSyntax.set_mode; | 
| 256 | val restore_syntax_mode = map_syntax o LocalSyntax.restore_mode o syntax_of; | |
| 19001 | 257 | |
| 25052 | 258 | val consts_of = #1 o #consts o rep_context; | 
| 21183 | 259 | val const_syntax_name = Consts.syntax_name o consts_of; | 
| 24752 | 260 | val the_const_constraint = Consts.the_constraint o consts_of; | 
| 5819 | 261 | |
| 26268 | 262 | fun mk_const ctxt (c, Ts) = Const (c, Consts.instance (consts_of ctxt) (c, Ts)); | 
| 263 | ||
| 26284 | 264 | val facts_of = #facts o rep_context; | 
| 16540 | 265 | val cases_of = #cases o rep_context; | 
| 5819 | 266 | |
| 267 | ||
| 20367 | 268 | (* theory transfer *) | 
| 12093 | 269 | |
| 19001 | 270 | fun transfer_syntax thy = | 
| 271 | map_syntax (LocalSyntax.rebuild thy) #> | |
| 25039 | 272 | map_consts (fn consts as (local_consts, global_consts) => | 
| 19033 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 273 | let val thy_consts = Sign.consts_of thy in | 
| 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 274 | if Consts.eq_consts (thy_consts, global_consts) then consts | 
| 25039 | 275 | else (Consts.merge (local_consts, thy_consts), thy_consts) | 
| 19033 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 276 | end); | 
| 17072 | 277 | |
| 19001 | 278 | fun transfer thy = Context.transfer_proof thy #> transfer_syntax thy; | 
| 17072 | 279 | |
| 20367 | 280 | fun theory f ctxt = transfer (f (theory_of ctxt)) ctxt; | 
| 281 | ||
| 282 | fun theory_result f ctxt = | |
| 283 | let val (res, thy') = f (theory_of ctxt) | |
| 284 | in (res, ctxt |> transfer thy') end; | |
| 19019 | 285 | |
| 12093 | 286 | |
| 287 | ||
| 14828 | 288 | (** pretty printing **) | 
| 289 | ||
| 28212 | 290 | (* extern *) | 
| 291 | ||
| 292 | fun extern_fact ctxt name = | |
| 293 | let | |
| 294 | val local_facts = facts_of ctxt; | |
| 295 | val global_facts = PureThy.facts_of (theory_of ctxt); | |
| 296 | in | |
| 297 | if is_some (Facts.lookup (Context.Proof ctxt) local_facts name) | |
| 298 | then Facts.extern local_facts name | |
| 299 | else Facts.extern global_facts name | |
| 300 | end; | |
| 301 | ||
| 302 | ||
| 303 | (* pretty *) | |
| 304 | ||
| 24922 | 305 | fun pretty_term_abbrev ctxt = Syntax.pretty_term (set_mode mode_abbrev ctxt); | 
| 14828 | 306 | |
| 22874 | 307 | fun pretty_thm_legacy th = | 
| 308 | let val thy = Thm.theory_of_thm th | |
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26930diff
changeset | 309 | in Display.pretty_thm_aux (Syntax.pp_global thy) true false [] th end; | 
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 310 | |
| 17451 | 311 | fun pretty_thm ctxt th = | 
| 22874 | 312 | let val asms = map Thm.term_of (Assumption.assms_of ctxt) | 
| 24961 | 313 | in Display.pretty_thm_aux (Syntax.pp ctxt) false true asms th end; | 
| 14828 | 314 | |
| 315 | fun pretty_thms ctxt [th] = pretty_thm ctxt th | |
| 316 | | pretty_thms ctxt ths = Pretty.blk (0, Pretty.fbreaks (map (pretty_thm ctxt) ths)); | |
| 317 | ||
| 28212 | 318 | fun pretty_fact_name ctxt a = Pretty.block | 
| 319 | [Pretty.markup (Markup.fact a) [Pretty.str (extern_fact ctxt a)], Pretty.str ":"]; | |
| 28209 
02f3222a392d
pretty_fact: extern fact name wrt. the given context, assuming that is the proper one for presentation;
 wenzelm parents: 
28087diff
changeset | 320 | |
| 14828 | 321 | fun pretty_fact ctxt ("", ths) = pretty_thms ctxt ths
 | 
| 28087 
a9cccdd9d521
pretty_fact/results: display base only, since results now come with full names (note that Facts.extern is not really well-defined unless we present the real target context);
 wenzelm parents: 
28082diff
changeset | 322 | | pretty_fact ctxt (a, [th]) = Pretty.block | 
| 28212 | 323 | [pretty_fact_name ctxt a, Pretty.brk 1, pretty_thm ctxt th] | 
| 28087 
a9cccdd9d521
pretty_fact/results: display base only, since results now come with full names (note that Facts.extern is not really well-defined unless we present the real target context);
 wenzelm parents: 
28082diff
changeset | 324 | | pretty_fact ctxt (a, ths) = Pretty.block | 
| 28212 | 325 | (Pretty.fbreaks (pretty_fact_name ctxt a :: map (pretty_thm ctxt) ths)); | 
| 14828 | 326 | |
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 327 | val string_of_thm = Pretty.string_of oo pretty_thm; | 
| 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 328 | |
| 14828 | 329 | |
| 330 | ||
| 5819 | 331 | (** prepare types **) | 
| 332 | ||
| 24277 | 333 | (* read_typ *) | 
| 334 | ||
| 335 | fun read_typ_mode mode ctxt s = | |
| 24486 | 336 | Syntax.read_typ (Type.set_mode mode ctxt) s; | 
| 24277 | 337 | |
| 338 | val read_typ = read_typ_mode Type.mode_default; | |
| 339 | val read_typ_syntax = read_typ_mode Type.mode_syntax; | |
| 340 | val read_typ_abbrev = read_typ_mode Type.mode_abbrev; | |
| 341 | ||
| 342 | ||
| 343 | (* cert_typ *) | |
| 344 | ||
| 345 | fun cert_typ_mode mode ctxt T = | |
| 346 | Sign.certify_typ_mode mode (theory_of ctxt) T | |
| 347 | handle TYPE (msg, _, _) => error msg; | |
| 348 | ||
| 349 | val cert_typ = cert_typ_mode Type.mode_default; | |
| 350 | val cert_typ_syntax = cert_typ_mode Type.mode_syntax; | |
| 351 | val cert_typ_abbrev = cert_typ_mode Type.mode_abbrev; | |
| 352 | ||
| 353 | ||
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 354 | |
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 355 | (** prepare variables **) | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 356 | |
| 7679 | 357 | (* internalize Skolem constants *) | 
| 358 | ||
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 359 | val lookup_skolem = AList.lookup (op =) o Variable.fixes_of; | 
| 18187 | 360 | fun get_skolem ctxt x = the_default x (lookup_skolem ctxt x); | 
| 7679 | 361 | |
| 18678 | 362 | fun no_skolem internal x = | 
| 20086 
94ca946fb689
adapted to more efficient Name/Variable implementation;
 wenzelm parents: 
20049diff
changeset | 363 | if can Name.dest_skolem x then | 
| 18678 | 364 |     error ("Illegal reference to internal Skolem constant: " ^ quote x)
 | 
| 20086 
94ca946fb689
adapted to more efficient Name/Variable implementation;
 wenzelm parents: 
20049diff
changeset | 365 | else if not internal andalso can Name.dest_internal x then | 
| 18678 | 366 |     error ("Illegal reference to internal variable: " ^ quote x)
 | 
| 7679 | 367 | else x; | 
| 368 | ||
| 369 | ||
| 26717 
2e1c3a0e7308
revert_skolem: do not change non-reversible names;
 wenzelm parents: 
26705diff
changeset | 370 | (* revert Skolem constants -- if possible *) | 
| 18255 | 371 | |
| 26717 
2e1c3a0e7308
revert_skolem: do not change non-reversible names;
 wenzelm parents: 
26705diff
changeset | 372 | fun revert_skolem ctxt x = | 
| 
2e1c3a0e7308
revert_skolem: do not change non-reversible names;
 wenzelm parents: 
26705diff
changeset | 373 | (case find_first (fn (_, y) => y = x) (Variable.fixes_of ctxt) of | 
| 
2e1c3a0e7308
revert_skolem: do not change non-reversible names;
 wenzelm parents: 
26705diff
changeset | 374 | SOME (x', _) => if lookup_skolem ctxt x' = SOME x then x' else x | 
| 
2e1c3a0e7308
revert_skolem: do not change non-reversible names;
 wenzelm parents: 
26705diff
changeset | 375 | | NONE => x); | 
| 9133 | 376 | |
| 8096 | 377 | |
| 26705 | 378 | (* default token translations *) | 
| 379 | ||
| 380 | local | |
| 381 | ||
| 26717 
2e1c3a0e7308
revert_skolem: do not change non-reversible names;
 wenzelm parents: 
26705diff
changeset | 382 | fun free_or_skolem ctxt x = | 
| 
2e1c3a0e7308
revert_skolem: do not change non-reversible names;
 wenzelm parents: 
26705diff
changeset | 383 | (if can Name.dest_skolem x then Pretty.mark Markup.skolem (Pretty.str (revert_skolem ctxt x)) | 
| 
2e1c3a0e7308
revert_skolem: do not change non-reversible names;
 wenzelm parents: 
26705diff
changeset | 384 | else Pretty.mark Markup.free (Pretty.str x)) | 
| 26930 
64e50d783276
default token translations: observe Sign.is_pretty_global for fixed variables;
 wenzelm parents: 
26731diff
changeset | 385 | |> Pretty.mark | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26930diff
changeset | 386 | (if Variable.is_fixed ctxt x orelse Syntax.is_pretty_global ctxt then Markup.fixed x | 
| 26930 
64e50d783276
default token translations: observe Sign.is_pretty_global for fixed variables;
 wenzelm parents: 
26731diff
changeset | 387 | else Markup.hilite); | 
| 26705 | 388 | |
| 389 | fun var_or_skolem _ s = | |
| 390 | (case Lexicon.read_variable s of | |
| 391 | SOME (x, i) => | |
| 392 | (case try Name.dest_skolem x of | |
| 393 | NONE => Pretty.mark Markup.var (Pretty.str s) | |
| 394 | | SOME x' => Pretty.mark Markup.skolem | |
| 395 | (Pretty.str (setmp show_question_marks true Term.string_of_vname (x', i)))) | |
| 396 | | NONE => Pretty.mark Markup.var (Pretty.str s)); | |
| 397 | ||
| 398 | fun class_markup _ c = (* FIXME authentic name *) | |
| 27828 
edafacb690a3
renamed Markup.class to Markup.tclass, to avoid potential conflicts with spacial meaning in markup languages (e.g. HTML);
 wenzelm parents: 
27821diff
changeset | 399 | Pretty.mark (Markup.tclassN, []) (Pretty.str c); | 
| 26705 | 400 | |
| 401 | fun plain_markup m _ s = Pretty.mark m (Pretty.str s); | |
| 402 | ||
| 403 | val token_trans = | |
| 404 | Syntax.tokentrans_mode "" | |
| 405 |   [("class", class_markup),
 | |
| 406 |    ("tfree", plain_markup Markup.tfree),
 | |
| 407 |    ("tvar", plain_markup Markup.tvar),
 | |
| 408 |    ("free", free_or_skolem),
 | |
| 409 |    ("bound", plain_markup Markup.bound),
 | |
| 410 |    ("var", var_or_skolem),
 | |
| 411 |    ("num", plain_markup Markup.num),
 | |
| 412 |    ("xnum", plain_markup Markup.xnum),
 | |
| 413 |    ("xstr", plain_markup Markup.xstr)];
 | |
| 414 | ||
| 415 | in val _ = Context.>> (Context.map_theory (Sign.add_tokentrfuns token_trans)) end; | |
| 416 | ||
| 417 | ||
| 18187 | 418 | |
| 5819 | 419 | (** prepare terms and propositions **) | 
| 420 | ||
| 25328 | 421 | (* inferred types of parameters *) | 
| 422 | ||
| 423 | fun infer_type ctxt x = | |
| 424 | Term.fastype_of (singleton (Syntax.check_terms (set_mode mode_schematic ctxt)) | |
| 425 | (Free (x, dummyT))); | |
| 426 | ||
| 427 | fun inferred_param x ctxt = | |
| 428 | let val T = infer_type ctxt x | |
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 429 | in (T, ctxt |> Variable.declare_term (Free (x, T))) end; | 
| 25328 | 430 | |
| 431 | fun inferred_fixes ctxt = | |
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 432 | let | 
| 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 433 | val xs = rev (map #2 (Variable.fixes_of ctxt)); | 
| 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 434 | val (Ts, ctxt') = fold_map inferred_param xs ctxt; | 
| 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 435 | in (xs ~~ Ts, ctxt') end; | 
| 25328 | 436 | |
| 437 | ||
| 438 | (* type and constant names *) | |
| 439 | ||
| 27821 | 440 | local | 
| 441 | ||
| 442 | val token_content = Syntax.read_token #>> SymbolPos.content; | |
| 443 | ||
| 444 | fun prep_const_proper ctxt (c, pos) = | |
| 445 | let val t as (Const (d, _)) = | |
| 446 | (case Variable.lookup_const ctxt c of | |
| 447 | SOME d => Const (d, Consts.type_scheme (consts_of ctxt) d handle TYPE (msg, _, _) => error msg) | |
| 448 | | NONE => Consts.read_const (consts_of ctxt) c) | |
| 28411 
93ec7fa3b3a0
back to plain Position.report for regular references;
 wenzelm parents: 
28407diff
changeset | 449 | in Position.report (Markup.const d) pos; t end; | 
| 27821 | 450 | |
| 451 | in | |
| 25328 | 452 | |
| 27821 | 453 | fun read_tyname ctxt str = | 
| 454 | let | |
| 455 | val thy = theory_of ctxt; | |
| 456 | val (c, pos) = token_content str; | |
| 457 | in | |
| 458 | if Syntax.is_tid c then | |
| 28411 
93ec7fa3b3a0
back to plain Position.report for regular references;
 wenzelm parents: 
28407diff
changeset | 459 | (Position.report Markup.tfree pos; | 
| 27821 | 460 | TFree (c, the_default (Sign.defaultS thy) (Variable.def_sort ctxt (c, ~1)))) | 
| 461 | else | |
| 462 | let | |
| 463 | val d = Sign.intern_type thy c; | |
| 28411 
93ec7fa3b3a0
back to plain Position.report for regular references;
 wenzelm parents: 
28407diff
changeset | 464 | val _ = Position.report (Markup.tycon d) pos; | 
| 27821 | 465 | in Type (d, replicate (Sign.arity_number thy d) dummyT) end | 
| 466 | end; | |
| 25328 | 467 | |
| 27821 | 468 | fun read_const_proper ctxt = prep_const_proper ctxt o token_content; | 
| 469 | ||
| 470 | fun read_const ctxt str = | |
| 471 | let val (c, pos) = token_content str in | |
| 472 | (case (lookup_skolem ctxt c, Variable.is_const ctxt c) of | |
| 473 | (SOME x, false) => | |
| 28411 
93ec7fa3b3a0
back to plain Position.report for regular references;
 wenzelm parents: 
28407diff
changeset | 474 | (Position.report (Markup.name x | 
| 27821 | 475 | (if can Name.dest_skolem x then Markup.skolem else Markup.free)) pos; | 
| 476 | Free (x, infer_type ctxt x)) | |
| 477 | | _ => prep_const_proper ctxt (c, pos)) | |
| 478 | end; | |
| 479 | ||
| 480 | end; | |
| 25328 | 481 | |
| 482 | ||
| 24684 | 483 | (* read_term *) | 
| 484 | ||
| 485 | fun read_term_mode mode ctxt = Syntax.read_term (set_mode mode ctxt); | |
| 486 | ||
| 487 | val read_term_pattern = read_term_mode mode_pattern; | |
| 488 | val read_term_schematic = read_term_mode mode_schematic; | |
| 489 | val read_term_abbrev = read_term_mode mode_abbrev; | |
| 490 | ||
| 491 | ||
| 19001 | 492 | (* local abbreviations *) | 
| 5819 | 493 | |
| 26240 | 494 | val tsig_of = Sign.tsig_of o ProofContext.theory_of; | 
| 495 | ||
| 24501 | 496 | local | 
| 497 | ||
| 26731 | 498 | fun certify_consts ctxt = Consts.certify (Syntax.pp ctxt) (tsig_of ctxt) | 
| 27286 | 499 | (not (abbrev_mode ctxt)) (consts_of ctxt); | 
| 19001 | 500 | |
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 501 | fun reject_schematic (Var (xi, _)) = | 
| 22678 | 502 |       error ("Unbound schematic variable: " ^ Term.string_of_vname xi)
 | 
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 503 | | reject_schematic (Abs (_, _, t)) = reject_schematic t | 
| 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 504 | | reject_schematic (t $ u) = (reject_schematic t; reject_schematic u) | 
| 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 505 | | reject_schematic _ = (); | 
| 5819 | 506 | |
| 24495 | 507 | fun expand_binds ctxt = | 
| 508 |   let val Mode {pattern, schematic, ...} = get_mode ctxt in
 | |
| 509 | if pattern then I | |
| 510 | else Variable.expand_binds ctxt #> (if schematic then I else tap reject_schematic) | |
| 511 | end; | |
| 5819 | 512 | |
| 24501 | 513 | in | 
| 514 | ||
| 515 | fun expand_abbrevs ctxt = certify_consts ctxt #> expand_binds ctxt; | |
| 516 | ||
| 517 | end; | |
| 518 | ||
| 5819 | 519 | |
| 24922 | 520 | fun contract_abbrevs ctxt t = | 
| 521 | let | |
| 522 | val thy = theory_of ctxt; | |
| 523 | val consts = consts_of ctxt; | |
| 524 |     val Mode {abbrev, ...} = get_mode ctxt;
 | |
| 525 | in | |
| 25052 | 526 | if abbrev orelse print_mode_active "no_abbrevs" orelse not (can Term.type_of t) then t | 
| 527 | else t |> Pattern.rewrite_term thy (Consts.abbrevs_of consts (print_mode_value () @ [""])) [] | |
| 24922 | 528 | end; | 
| 529 | ||
| 530 | ||
| 24518 | 531 | (* patterns *) | 
| 532 | ||
| 533 | fun prepare_patternT ctxt = | |
| 534 |   let val Mode {pattern, schematic, ...} = get_mode ctxt in
 | |
| 535 | if pattern orelse schematic then I | |
| 536 | else Term.map_atyps | |
| 537 | (fn T as TVar (xi, _) => | |
| 538 | if not (TypeInfer.is_param xi) | |
| 539 |             then error ("Illegal schematic type variable: " ^ Term.string_of_vname xi)
 | |
| 540 | else T | |
| 541 | | T => T) | |
| 542 | end; | |
| 543 | ||
| 22712 | 544 | |
| 24505 | 545 | local | 
| 6550 | 546 | |
| 27259 | 547 | structure AllowDummies = ProofDataFun(type T = bool fun init _ = false); | 
| 548 | ||
| 549 | fun check_dummies ctxt t = | |
| 550 | if AllowDummies.get ctxt then t | |
| 551 | else Term.no_dummy_patterns t handle TERM _ => error "Illegal dummy pattern(s) in term"; | |
| 552 | ||
| 24767 | 553 | fun prepare_dummies ts = #1 (fold_map Term.replace_dummy_patterns ts 1); | 
| 6762 | 554 | |
| 27259 | 555 | in | 
| 6550 | 556 | |
| 27259 | 557 | val allow_dummies = AllowDummies.put true; | 
| 24505 | 558 | |
| 24684 | 559 | fun prepare_patterns ctxt = | 
| 24518 | 560 |   let val Mode {pattern, ...} = get_mode ctxt in
 | 
| 24767 | 561 | TypeInfer.fixate_params (Variable.names_of ctxt) #> | 
| 562 | pattern ? Variable.polymorphic ctxt #> | |
| 24684 | 563 | (map o Term.map_types) (prepare_patternT ctxt) #> | 
| 27259 | 564 | (if pattern then prepare_dummies else map (check_dummies ctxt)) | 
| 24505 | 565 | end; | 
| 566 | ||
| 567 | end; | |
| 568 | ||
| 6550 | 569 | |
| 22763 | 570 | (* decoding raw terms (syntax trees) *) | 
| 571 | ||
| 27286 | 572 | (* types *) | 
| 573 | ||
| 574 | fun get_sort thy def_sort raw_env = | |
| 575 | let | |
| 576 | val tsig = Sign.tsig_of thy; | |
| 577 | ||
| 578 | fun eq ((xi, S), (xi', S')) = | |
| 579 | Term.eq_ix (xi, xi') andalso Type.eq_sort tsig (S, S'); | |
| 580 | val env = distinct eq raw_env; | |
| 581 | val _ = (case duplicates (eq_fst (op =)) env of [] => () | |
| 582 |       | dups => error ("Inconsistent sort constraints for type variable(s) "
 | |
| 583 | ^ commas_quote (map (Term.string_of_vname' o fst) dups))); | |
| 584 | ||
| 585 | fun get xi = | |
| 586 | (case (AList.lookup (op =) env xi, def_sort xi) of | |
| 587 | (NONE, NONE) => Type.defaultS tsig | |
| 588 | | (NONE, SOME S) => S | |
| 589 | | (SOME S, NONE) => S | |
| 590 | | (SOME S, SOME S') => | |
| 591 | if Type.eq_sort tsig (S, S') then S' | |
| 592 |           else error ("Sort constraint inconsistent with default for type variable " ^
 | |
| 593 | quote (Term.string_of_vname' xi))); | |
| 594 | in get end; | |
| 595 | ||
| 25353 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 596 | local | 
| 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 597 | |
| 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 598 | fun intern_skolem ctxt def_type x = | 
| 22763 | 599 | let | 
| 25353 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 600 | val _ = no_skolem false x; | 
| 22763 | 601 | val sko = lookup_skolem ctxt x; | 
| 25452 | 602 | val is_const = can (read_const_proper ctxt) x orelse NameSpace.is_qualified x; | 
| 22763 | 603 | val is_declared = is_some (def_type (x, ~1)); | 
| 25319 
074d41176558
read_const/legacy_intern_skolem: cover consts within the local scope;
 wenzelm parents: 
25168diff
changeset | 604 | in | 
| 25353 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 605 | if Variable.is_const ctxt x then NONE | 
| 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 606 | else if is_some sko then sko | 
| 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 607 | else if not is_const orelse is_declared then SOME x | 
| 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 608 | else NONE | 
| 25319 
074d41176558
read_const/legacy_intern_skolem: cover consts within the local scope;
 wenzelm parents: 
25168diff
changeset | 609 | end; | 
| 22763 | 610 | |
| 25353 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 611 | in | 
| 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 612 | |
| 24371 | 613 | fun term_context ctxt = | 
| 614 | let val thy = theory_of ctxt in | |
| 27286 | 615 |    {get_sort = get_sort thy (Variable.def_sort ctxt),
 | 
| 27195 | 616 | map_const = fn a => ((true, #1 (Term.dest_Const (read_const_proper ctxt a))) | 
| 617 | handle ERROR _ => (false, Consts.intern (consts_of ctxt) a)), | |
| 25353 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 618 | map_free = intern_skolem ctxt (Variable.def_type ctxt false), | 
| 24371 | 619 | map_type = Sign.intern_tycons thy, | 
| 620 | map_sort = Sign.intern_sort thy} | |
| 621 | end; | |
| 622 | ||
| 22763 | 623 | fun decode_term ctxt = | 
| 24371 | 624 |   let val {get_sort, map_const, map_free, map_type, map_sort} = term_context ctxt
 | 
| 22763 | 625 | in Syntax.decode_term get_sort map_const map_free map_type map_sort end; | 
| 626 | ||
| 10554 | 627 | end; | 
| 628 | ||
| 5819 | 629 | |
| 630 | (* certify terms *) | |
| 631 | ||
| 10554 | 632 | local | 
| 633 | ||
| 24684 | 634 | fun gen_cert prop ctxt t = | 
| 635 | t | |
| 636 | |> expand_abbrevs ctxt | |
| 24961 | 637 | |> (fn t' => #1 (Sign.certify' prop (Syntax.pp ctxt) false (consts_of ctxt) (theory_of ctxt) t') | 
| 24684 | 638 | handle TYPE (msg, _, _) => error msg | 
| 639 | | TERM (msg, _) => error msg); | |
| 16501 | 640 | |
| 10554 | 641 | in | 
| 8096 | 642 | |
| 24684 | 643 | val cert_term = gen_cert false; | 
| 644 | val cert_prop = gen_cert true; | |
| 10554 | 645 | |
| 646 | end; | |
| 5819 | 647 | |
| 648 | ||
| 24495 | 649 | (* type checking/inference *) | 
| 22701 | 650 | |
| 24495 | 651 | fun standard_infer_types ctxt ts = | 
| 652 |   let val Mode {pattern, ...} = get_mode ctxt in
 | |
| 24961 | 653 | TypeInfer.infer_types (Syntax.pp ctxt) (tsig_of ctxt) (Syntax.check_typs ctxt) | 
| 24495 | 654 | (try (Consts.the_constraint (consts_of ctxt))) (Variable.def_type ctxt pattern) | 
| 27264 | 655 | (Variable.names_of ctxt) (Variable.maxidx_of ctxt) ts | 
| 24495 | 656 | handle TYPE (msg, _, _) => error msg | 
| 657 | end; | |
| 24486 | 658 | |
| 25406 | 659 | local | 
| 660 | ||
| 24518 | 661 | fun standard_typ_check ctxt = | 
| 662 | map (cert_typ_mode (Type.get_mode ctxt) ctxt) #> | |
| 663 | map (prepare_patternT ctxt); | |
| 664 | ||
| 24769 
1372969969e0
standard_term_check: include expand_abbrevs (back again);
 wenzelm parents: 
24767diff
changeset | 665 | fun standard_term_check ctxt = | 
| 
1372969969e0
standard_term_check: include expand_abbrevs (back again);
 wenzelm parents: 
24767diff
changeset | 666 | standard_infer_types ctxt #> | 
| 
1372969969e0
standard_term_check: include expand_abbrevs (back again);
 wenzelm parents: 
24767diff
changeset | 667 | map (expand_abbrevs ctxt); | 
| 24922 | 668 | |
| 669 | fun standard_term_uncheck ctxt = | |
| 670 | map (contract_abbrevs ctxt); | |
| 671 | ||
| 26463 | 672 | fun add eq what f = Context.>> (what (fn xs => fn ctxt => | 
| 673 | let val xs' = f ctxt xs in if eq_list eq (xs, xs') then NONE else SOME (xs', ctxt) end)); | |
| 24767 | 674 | |
| 24518 | 675 | in | 
| 676 | ||
| 25060 | 677 | val _ = add (op =) (Syntax.add_typ_check 0 "standard") standard_typ_check; | 
| 678 | val _ = add (op aconv) (Syntax.add_term_check 0 "standard") standard_term_check; | |
| 679 | val _ = add (op aconv) (Syntax.add_term_check 100 "fixate") prepare_patterns; | |
| 24922 | 680 | |
| 25060 | 681 | val _ = add (op aconv) (Syntax.add_term_uncheck 0 "standard") standard_term_uncheck; | 
| 22701 | 682 | |
| 24518 | 683 | end; | 
| 22701 | 684 | |
| 685 | ||
| 9553 | 686 | |
| 24767 | 687 | (** inner syntax operations **) | 
| 24371 | 688 | |
| 689 | local | |
| 690 | ||
| 27754 | 691 | fun parse_sort ctxt text = | 
| 692 | let | |
| 28411 
93ec7fa3b3a0
back to plain Position.report for regular references;
 wenzelm parents: 
28407diff
changeset | 693 | val (syms, pos) = Syntax.parse_token Markup.sort text; | 
| 27785 
3bf65bfda540
parse_token: use Syntax.read_token, pass full position information;
 wenzelm parents: 
27754diff
changeset | 694 | val S = Syntax.standard_parse_sort ctxt (syn_of ctxt) | 
| 
3bf65bfda540
parse_token: use Syntax.read_token, pass full position information;
 wenzelm parents: 
27754diff
changeset | 695 | (Sign.intern_sort (theory_of ctxt)) (syms, pos) | 
| 27754 | 696 |       handle ERROR msg => cat_error msg  ("Failed to parse sort" ^ Position.str_of pos)
 | 
| 697 | in S end; | |
| 698 | ||
| 699 | fun parse_typ ctxt text = | |
| 24371 | 700 | let | 
| 701 | val thy = ProofContext.theory_of ctxt; | |
| 27286 | 702 | val get_sort = get_sort thy (Variable.def_sort ctxt); | 
| 27754 | 703 | |
| 28411 
93ec7fa3b3a0
back to plain Position.report for regular references;
 wenzelm parents: 
28407diff
changeset | 704 | val (syms, pos) = Syntax.parse_token Markup.typ text; | 
| 24371 | 705 | val T = Sign.intern_tycons thy | 
| 27785 
3bf65bfda540
parse_token: use Syntax.read_token, pass full position information;
 wenzelm parents: 
27754diff
changeset | 706 | (Syntax.standard_parse_typ ctxt (syn_of ctxt) get_sort (Sign.intern_sort thy) (syms, pos)) | 
| 27754 | 707 |       handle ERROR msg => cat_error msg  ("Failed to parse type" ^ Position.str_of pos);
 | 
| 708 | in T end; | |
| 24371 | 709 | |
| 27754 | 710 | fun parse_term T ctxt text = | 
| 24371 | 711 | let | 
| 712 | val thy = theory_of ctxt; | |
| 27754 | 713 |     val {get_sort, map_const, map_free, map_type, map_sort} = term_context ctxt;
 | 
| 714 | ||
| 25168 
2650a4a6ad3e
parse_term: invoke full Syntax.check_term, not just standard_infer_types;
 wenzelm parents: 
25159diff
changeset | 715 | val (T', _) = TypeInfer.paramify_dummies T 0; | 
| 27821 | 716 | val (markup, kind) = if T' = propT then (Markup.prop, "proposition") else (Markup.term, "term"); | 
| 28411 
93ec7fa3b3a0
back to plain Position.report for regular references;
 wenzelm parents: 
28407diff
changeset | 717 | val (syms, pos) = Syntax.parse_token markup text; | 
| 27754 | 718 | |
| 25476 
03da46cfab9e
standard_parse_term: check ambiguous results without changing the result yet;
 wenzelm parents: 
25461diff
changeset | 719 | fun check t = (Syntax.check_term ctxt (TypeInfer.constrain T' t); NONE) | 
| 
03da46cfab9e
standard_parse_term: check ambiguous results without changing the result yet;
 wenzelm parents: 
25461diff
changeset | 720 | handle ERROR msg => SOME msg; | 
| 27785 
3bf65bfda540
parse_token: use Syntax.read_token, pass full position information;
 wenzelm parents: 
27754diff
changeset | 721 | val t = Syntax.standard_parse_term (Syntax.pp ctxt) check get_sort map_const map_free | 
| 
3bf65bfda540
parse_token: use Syntax.read_token, pass full position information;
 wenzelm parents: 
27754diff
changeset | 722 | map_type map_sort ctxt (Sign.is_logtype thy) (syn_of ctxt) T' (syms, pos) | 
| 27754 | 723 |       handle ERROR msg => cat_error msg  ("Failed to parse " ^ kind ^ Position.str_of pos);
 | 
| 724 | in t end; | |
| 24371 | 725 | |
| 24922 | 726 | |
| 727 | fun unparse_sort ctxt S = | |
| 728 | Syntax.standard_unparse_sort ctxt (syn_of ctxt) (Sign.extern_sort (theory_of ctxt) S); | |
| 729 | ||
| 730 | fun unparse_typ ctxt T = | |
| 731 | Syntax.standard_unparse_typ ctxt (syn_of ctxt) (Sign.extern_typ (theory_of ctxt) T); | |
| 732 | ||
| 733 | fun unparse_term ctxt t = | |
| 734 | let | |
| 735 | val thy = theory_of ctxt; | |
| 736 | val syntax = syntax_of ctxt; | |
| 737 | val consts = consts_of ctxt; | |
| 738 | in | |
| 739 | t | |
| 740 | |> Sign.extern_term (Consts.extern_early consts) thy | |
| 741 | |> LocalSyntax.extern_term syntax | |
| 742 | |> Syntax.standard_unparse_term (Consts.extern consts) ctxt (LocalSyntax.syn_of syntax) | |
| 26960 
1aa5cd390dfb
unparse_term: check PureThy.old_appl_syntax instead of CPure;
 wenzelm parents: 
26939diff
changeset | 743 | (not (PureThy.old_appl_syntax thy)) | 
| 24922 | 744 | end; | 
| 745 | ||
| 24371 | 746 | in | 
| 747 | ||
| 24767 | 748 | val _ = Syntax.install_operations | 
| 749 |   {parse_sort = parse_sort,
 | |
| 750 | parse_typ = parse_typ, | |
| 751 | parse_term = parse_term dummyT, | |
| 752 | parse_prop = parse_term propT, | |
| 24922 | 753 | unparse_sort = unparse_sort, | 
| 754 | unparse_typ = unparse_typ, | |
| 755 | unparse_term = unparse_term}; | |
| 24371 | 756 | |
| 757 | end; | |
| 758 | ||
| 759 | ||
| 760 | ||
| 21610 | 761 | (** export results **) | 
| 21531 | 762 | |
| 20310 | 763 | fun common_export is_goal inner outer = | 
| 764 | map (Assumption.export is_goal inner outer) #> | |
| 765 | Variable.export inner outer; | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 766 | |
| 20310 | 767 | val goal_export = common_export true; | 
| 768 | val export = common_export false; | |
| 12704 | 769 | |
| 21531 | 770 | fun export_morphism inner outer = | 
| 771 | Assumption.export_morphism inner outer $> | |
| 772 | Variable.export_morphism inner outer; | |
| 773 | ||
| 28396 | 774 | fun norm_export_morphism inner outer = | 
| 775 | export_morphism inner outer $> | |
| 776 | Morphism.thm_morphism Goal.norm_result; | |
| 777 | ||
| 21531 | 778 | |
| 15758 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 779 | |
| 5819 | 780 | (** bindings **) | 
| 781 | ||
| 8096 | 782 | (* simult_matches *) | 
| 783 | ||
| 19867 | 784 | fun simult_matches ctxt (t, pats) = | 
| 785 | (case Seq.pull (Unify.matchers (theory_of ctxt) (map (rpair t) pats)) of | |
| 786 | NONE => error "Pattern match failed!" | |
| 787 | | SOME (env, _) => map (apsnd snd) (Envir.alist_of env)); | |
| 8096 | 788 | |
| 789 | ||
| 790 | (* add_binds(_i) *) | |
| 5819 | 791 | |
| 7925 | 792 | local | 
| 793 | ||
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 794 | fun gen_bind prep (xi as (x, _), raw_t) ctxt = | 
| 24511 
69d270cc7e4f
removed obsolete read/cert variations (cf. Syntax.read/check);
 wenzelm parents: 
24505diff
changeset | 795 | ctxt | 
| 24675 
2be1253a20d3
removed obsolete set_expand_abbrevs (superceded by mode_abbrev);
 wenzelm parents: 
24612diff
changeset | 796 | |> Variable.add_binds [(xi, Option.map (prep (set_mode mode_default ctxt)) raw_t)]; | 
| 5819 | 797 | |
| 10810 | 798 | in | 
| 799 | ||
| 20330 | 800 | fun drop_schematic (b as (xi, SOME t)) = if Term.exists_subterm is_Var t then (xi, NONE) else b | 
| 10554 | 801 | | drop_schematic b = b; | 
| 802 | ||
| 24511 
69d270cc7e4f
removed obsolete read/cert variations (cf. Syntax.read/check);
 wenzelm parents: 
24505diff
changeset | 803 | val add_binds = fold (gen_bind Syntax.read_term); | 
| 16031 
fbf3471214d6
moved everything related to thms_containing to find_theorems.ML;
 wenzelm parents: 
15979diff
changeset | 804 | val add_binds_i = fold (gen_bind cert_term); | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 805 | |
| 16458 | 806 | fun auto_bind f ts ctxt = ctxt |> add_binds_i (map drop_schematic (f (theory_of ctxt) ts)); | 
| 12147 | 807 | val auto_bind_goal = auto_bind AutoBind.goal; | 
| 808 | val auto_bind_facts = auto_bind AutoBind.facts; | |
| 7925 | 809 | |
| 810 | end; | |
| 5819 | 811 | |
| 812 | ||
| 8096 | 813 | (* match_bind(_i) *) | 
| 5819 | 814 | |
| 8096 | 815 | local | 
| 816 | ||
| 24684 | 817 | fun gen_bind prep_terms gen raw_binds ctxt = | 
| 5819 | 818 | let | 
| 24684 | 819 | fun prep_bind (raw_pats, t) ctxt1 = | 
| 820 | let | |
| 821 | val T = Term.fastype_of t; | |
| 822 | val ctxt2 = Variable.declare_term t ctxt1; | |
| 823 | val pats = prep_terms (set_mode mode_pattern ctxt2) T raw_pats; | |
| 824 | val binds = simult_matches ctxt2 (t, pats); | |
| 825 | in (binds, ctxt2) end; | |
| 7670 | 826 | |
| 24686 | 827 | val ts = prep_terms ctxt dummyT (map snd raw_binds); | 
| 828 | val (binds, ctxt') = apfst flat (fold_map prep_bind (map fst raw_binds ~~ ts) ctxt); | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 829 | val binds' = | 
| 19916 
3bbb9cc5d4f1
export: simultaneous facts, refer to Variable.export;
 wenzelm parents: 
19897diff
changeset | 830 | if gen then map #1 binds ~~ Variable.exportT_terms ctxt' ctxt (map #2 binds) | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 831 | else binds; | 
| 15531 | 832 | val binds'' = map (apsnd SOME) binds'; | 
| 18310 | 833 | val ctxt'' = | 
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 834 | tap (Variable.warn_extra_tfrees ctxt) | 
| 18310 | 835 | (if gen then | 
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 836 | ctxt (*sic!*) |> fold Variable.declare_term (map #2 binds') |> add_binds_i binds'' | 
| 18310 | 837 | else ctxt' |> add_binds_i binds''); | 
| 838 | in (ts, ctxt'') end; | |
| 8096 | 839 | |
| 840 | in | |
| 5935 | 841 | |
| 24684 | 842 | fun read_terms ctxt T = | 
| 843 | map (Syntax.parse_term ctxt #> TypeInfer.constrain T) #> Syntax.check_terms ctxt; | |
| 844 | ||
| 845 | val match_bind = gen_bind read_terms; | |
| 846 | val match_bind_i = gen_bind (fn ctxt => fn _ => map (cert_term ctxt)); | |
| 8096 | 847 | |
| 848 | end; | |
| 5935 | 849 | |
| 850 | ||
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 851 | (* propositions with patterns *) | 
| 5935 | 852 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 853 | local | 
| 8096 | 854 | |
| 24684 | 855 | fun prep_propp mode prep_props (context, args) = | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 856 | let | 
| 19585 | 857 | fun prep (_, raw_pats) (ctxt, prop :: props) = | 
| 24684 | 858 | let val ctxt' = Variable.declare_term prop ctxt | 
| 859 | in ((prop, prep_props (set_mode mode_pattern ctxt') raw_pats), (ctxt', props)) end; | |
| 860 | ||
| 17860 
b4cf247ea0d2
note_thmss, read/cert_vars etc.: natural argument order;
 wenzelm parents: 
17756diff
changeset | 861 | val (propp, (context', _)) = (fold_map o fold_map) prep args | 
| 24684 | 862 | (context, prep_props (set_mode mode context) (maps (map fst) args)); | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 863 | in (context', propp) end; | 
| 5935 | 864 | |
| 24684 | 865 | fun gen_bind_propp mode parse_prop (ctxt, raw_args) = | 
| 8096 | 866 | let | 
| 24684 | 867 | val (ctxt', args) = prep_propp mode parse_prop (ctxt, raw_args); | 
| 19585 | 868 | val binds = flat (flat (map (map (simult_matches ctxt')) args)); | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 869 | val propss = map (map #1) args; | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 870 | |
| 10554 | 871 | (*generalize result: context evaluated now, binds added later*) | 
| 19916 
3bbb9cc5d4f1
export: simultaneous facts, refer to Variable.export;
 wenzelm parents: 
19897diff
changeset | 872 | val gen = Variable.exportT_terms ctxt' ctxt; | 
| 15531 | 873 | fun gen_binds c = c |> add_binds_i (map #1 binds ~~ map SOME (gen (map #2 binds))); | 
| 874 | in (ctxt' |> add_binds_i (map (apsnd SOME) binds), (propss, gen_binds)) end; | |
| 8096 | 875 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 876 | in | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 877 | |
| 24684 | 878 | val read_propp = prep_propp mode_default Syntax.read_props; | 
| 879 | val cert_propp = prep_propp mode_default (map o cert_prop); | |
| 880 | val read_propp_schematic = prep_propp mode_schematic Syntax.read_props; | |
| 881 | val cert_propp_schematic = prep_propp mode_schematic (map o cert_prop); | |
| 10554 | 882 | |
| 24684 | 883 | val bind_propp = gen_bind_propp mode_default Syntax.read_props; | 
| 884 | val bind_propp_i = gen_bind_propp mode_default (map o cert_prop); | |
| 885 | val bind_propp_schematic = gen_bind_propp mode_schematic Syntax.read_props; | |
| 886 | val bind_propp_schematic_i = gen_bind_propp mode_schematic (map o cert_prop); | |
| 6789 | 887 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 888 | end; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 889 | |
| 6789 | 890 | |
| 5819 | 891 | |
| 892 | (** theorems **) | |
| 893 | ||
| 18042 | 894 | (* fact_tac *) | 
| 895 | ||
| 27867 | 896 | fun comp_incr_tac [] _ = no_tac | 
| 897 | | comp_incr_tac (th :: ths) i = | |
| 898 | (fn st => Goal.compose_hhf_tac (Drule.incr_indexes st th) i st) APPEND comp_incr_tac ths i; | |
| 18042 | 899 | |
| 21687 | 900 | fun fact_tac facts = Goal.norm_hhf_tac THEN' comp_incr_tac facts; | 
| 18122 | 901 | |
| 27867 | 902 | fun potential_facts ctxt prop = | 
| 903 | Facts.could_unify (facts_of ctxt) (Term.strip_all_body prop); | |
| 904 | ||
| 905 | fun some_fact_tac ctxt = SUBGOAL (fn (goal, i) => fact_tac (potential_facts ctxt goal) i); | |
| 18042 | 906 | |
| 907 | ||
| 6091 | 908 | (* get_thm(s) *) | 
| 5819 | 909 | |
| 26361 | 910 | local | 
| 911 | ||
| 26687 | 912 | fun retrieve_thms pick ctxt (Facts.Fact s) = | 
| 16501 | 913 | let | 
| 27867 | 914 | val (_, pos) = Syntax.read_token s; | 
| 24511 
69d270cc7e4f
removed obsolete read/cert variations (cf. Syntax.read/check);
 wenzelm parents: 
24505diff
changeset | 915 | val prop = Syntax.read_prop (set_mode mode_default ctxt) s | 
| 
69d270cc7e4f
removed obsolete read/cert variations (cf. Syntax.read/check);
 wenzelm parents: 
24505diff
changeset | 916 | |> singleton (Variable.polymorphic ctxt); | 
| 27867 | 917 | |
| 918 | fun prove_fact th = | |
| 919 | Goal.prove ctxt [] [] prop (K (ALLGOALS (fact_tac [th]))) | |
| 920 | |> Thm.default_position_of th; | |
| 921 | val res = | |
| 922 | (case get_first (try prove_fact) (potential_facts ctxt prop) of | |
| 923 | SOME res => res | |
| 924 |           | NONE => error ("Failed to retrieve literal fact" ^ Position.str_of pos ^ ":\n" ^
 | |
| 925 | Syntax.string_of_term ctxt prop)) | |
| 926 | in pick "" [res] end | |
| 26687 | 927 | | retrieve_thms pick ctxt xthmref = | 
| 18042 | 928 | let | 
| 929 | val thy = theory_of ctxt; | |
| 26284 | 930 | val local_facts = facts_of ctxt; | 
| 26673 | 931 | val thmref = Facts.map_name_of_ref (Facts.intern local_facts) xthmref; | 
| 26336 
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
 wenzelm parents: 
26321diff
changeset | 932 | val name = Facts.name_of_ref thmref; | 
| 27821 | 933 | val pos = Facts.pos_of_ref xthmref; | 
| 24012 | 934 | val thms = | 
| 935 | if name = "" then [Thm.transfer thy Drule.dummy_thm] | |
| 936 | else | |
| 26393 | 937 | (case Facts.lookup (Context.Proof ctxt) local_facts name of | 
| 28411 
93ec7fa3b3a0
back to plain Position.report for regular references;
 wenzelm parents: 
28407diff
changeset | 938 | SOME (_, ths) => (Position.report (Markup.local_fact name) pos; | 
| 27821 | 939 | map (Thm.transfer thy) (Facts.select thmref ths)) | 
| 26687 | 940 | | NONE => PureThy.get_fact (Context.Proof ctxt) thy xthmref); | 
| 24012 | 941 | in pick name thms end; | 
| 5819 | 942 | |
| 26361 | 943 | in | 
| 26346 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 944 | |
| 26687 | 945 | val get_fact = retrieve_thms (K I); | 
| 946 | val get_fact_single = retrieve_thms Facts.the_single; | |
| 26346 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 947 | |
| 26361 | 948 | fun get_thms ctxt = get_fact ctxt o Facts.named; | 
| 949 | fun get_thm ctxt = get_fact_single ctxt o Facts.named; | |
| 950 | ||
| 951 | end; | |
| 5819 | 952 | |
| 953 | ||
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 954 | (* name space operations *) | 
| 12309 
03e9287be350
name space for local thms (export cond_extern, qualified);
 wenzelm parents: 
12291diff
changeset | 955 | |
| 22352 | 956 | val add_path = map_naming o NameSpace.add_path; | 
| 19062 
0fd52e819c24
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19033diff
changeset | 957 | val no_base_names = map_naming NameSpace.no_base_names; | 
| 16147 | 958 | val qualified_names = map_naming NameSpace.qualified_names; | 
| 19062 
0fd52e819c24
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19033diff
changeset | 959 | val sticky_prefix = map_naming o NameSpace.sticky_prefix; | 
| 
0fd52e819c24
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19033diff
changeset | 960 | val restore_naming = map_naming o K o naming_of; | 
| 21728 | 961 | val reset_naming = map_naming (K local_naming); | 
| 12309 
03e9287be350
name space for local thms (export cond_extern, qualified);
 wenzelm parents: 
12291diff
changeset | 962 | |
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 963 | |
| 26284 | 964 | (* facts *) | 
| 5819 | 965 | |
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 966 | local | 
| 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 967 | |
| 28965 | 968 | fun update_thms _ (b, NONE) ctxt = ctxt |> map_facts (Facts.del (full_name ctxt b)) | 
| 28861 | 969 | | update_thms do_props (b, SOME ths) ctxt = ctxt |> map_facts | 
| 28864 | 970 | (Facts.add_local do_props (naming_of ctxt) (b, ths) #> snd); | 
| 5819 | 971 | |
| 28861 | 972 | fun gen_note_thmss get k = fold_map (fn ((b, more_attrs), raw_facts) => fn ctxt => | 
| 5819 | 973 | let | 
| 28941 | 974 | val pos = Binding.pos_of b; | 
| 28965 | 975 | val name = full_name ctxt b; | 
| 28411 
93ec7fa3b3a0
back to plain Position.report for regular references;
 wenzelm parents: 
28407diff
changeset | 976 | val _ = ContextPosition.report_visible ctxt (Markup.local_fact_decl name) pos; | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 977 | |
| 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 978 | val facts = PureThy.name_thmss false pos name (map (apfst (get ctxt)) raw_facts); | 
| 21443 
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
 wenzelm parents: 
21370diff
changeset | 979 | fun app (th, attrs) x = | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 980 | swap (foldl_map (Thm.proof_attributes (surround (Thm.kind k) (attrs @ more_attrs))) (x, th)); | 
| 21443 
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
 wenzelm parents: 
21370diff
changeset | 981 | val (res, ctxt') = fold_map app facts ctxt; | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 982 | val thms = PureThy.name_thms false false pos name (flat res); | 
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 983 |     val Mode {stmt, ...} = get_mode ctxt;
 | 
| 28861 | 984 | in ((name, thms), ctxt' |> update_thms stmt (b, SOME thms)) end); | 
| 12711 | 985 | |
| 986 | in | |
| 987 | ||
| 26346 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 988 | fun note_thmss k = gen_note_thmss get_fact k; | 
| 21622 | 989 | fun note_thmss_i k = gen_note_thmss (K I) k; | 
| 15696 | 990 | |
| 28417 | 991 | fun put_thms do_props thms ctxt = ctxt | 
| 992 | |> map_naming (K local_naming) | |
| 993 | |> ContextPosition.set_visible false | |
| 28965 | 994 | |> update_thms do_props (apfst Binding.name thms) | 
| 28417 | 995 | |> ContextPosition.restore_visible ctxt | 
| 996 | |> restore_naming ctxt; | |
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 997 | |
| 12711 | 998 | end; | 
| 9196 | 999 | |
| 5819 | 1000 | |
| 1001 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1002 | (** parameters **) | 
| 17360 
fa1f262dbc4e
added add_view, export_view (supercedes adhoc view arguments);
 wenzelm parents: 
17221diff
changeset | 1003 | |
| 8096 | 1004 | (* variables *) | 
| 1005 | ||
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 1006 | fun declare_var (x, opt_T, mx) ctxt = | 
| 22701 | 1007 | let val T = (case opt_T of SOME T => T | NONE => Syntax.mixfixT mx) | 
| 20163 | 1008 | in ((x, T, mx), ctxt |> Variable.declare_constraints (Free (x, T))) end; | 
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 1009 | |
| 10381 | 1010 | local | 
| 1011 | ||
| 25353 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 1012 | fun prep_vars prep_typ internal = | 
| 28861 | 1013 | fold_map (fn (raw_b, raw_T, raw_mx) => fn ctxt => | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1014 | let | 
| 29006 | 1015 | val raw_x = Binding.base_name raw_b; | 
| 19371 | 1016 | val (x, mx) = Syntax.const_mixfix raw_x raw_mx; | 
| 25353 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 1017 | val _ = Syntax.is_identifier (no_skolem internal x) orelse | 
| 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 1018 |         error ("Illegal variable name: " ^ quote x);
 | 
| 12504 | 1019 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1020 | fun cond_tvars T = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1021 | if internal then T | 
| 18678 | 1022 | else Type.no_tvars T handle TYPE (msg, _, _) => error msg; | 
| 24277 | 1023 | val opt_T = Option.map (cond_tvars o cert_typ ctxt o prep_typ ctxt) raw_T; | 
| 28965 | 1024 | val var = (Binding.map_base (K x) raw_b, opt_T, mx); | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 1025 | in (var, ctxt |> declare_var (x, opt_T, mx) |> #2) end); | 
| 8096 | 1026 | |
| 10381 | 1027 | in | 
| 1028 | ||
| 25353 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 1029 | val read_vars = prep_vars Syntax.parse_typ false; | 
| 
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
 wenzelm parents: 
25345diff
changeset | 1030 | val cert_vars = prep_vars (K I) true; | 
| 8096 | 1031 | |
| 10381 | 1032 | end; | 
| 1033 | ||
| 8096 | 1034 | |
| 19681 | 1035 | (* authentic constants *) | 
| 19663 | 1036 | |
| 25159 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1037 | local | 
| 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1038 | |
| 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1039 | fun const_ast_tr intern ctxt [Syntax.Variable c] = | 
| 19681 | 1040 | let | 
| 25345 
dd5b851f8ef0
renamed ProofContext.read_const' to ProofContext.read_const_proper;
 wenzelm parents: 
25332diff
changeset | 1041 | val Const (c', _) = read_const_proper ctxt c; | 
| 25159 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1042 | val d = if intern then const_syntax_name ctxt c' else c; | 
| 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1043 | in Syntax.Constant d end | 
| 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1044 |   | const_ast_tr _ _ asts = raise Syntax.AST ("const_ast_tr", asts);
 | 
| 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1045 | |
| 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1046 | in | 
| 19681 | 1047 | |
| 26463 | 1048 | val _ = Context.>> (Context.map_theory | 
| 19681 | 1049 | (Sign.add_syntax | 
| 28856 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28792diff
changeset | 1050 |    [("_context_const", "id => logic", Delimfix "CONST _"),
 | 
| 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28792diff
changeset | 1051 |     ("_context_const", "id => aprop", Delimfix "CONST _"),
 | 
| 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28792diff
changeset | 1052 |     ("_context_const", "longid => logic", Delimfix "CONST _"),
 | 
| 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28792diff
changeset | 1053 |     ("_context_const", "longid => aprop", Delimfix "CONST _"),
 | 
| 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28792diff
changeset | 1054 |     ("_context_xconst", "id => logic", Delimfix "XCONST _"),
 | 
| 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28792diff
changeset | 1055 |     ("_context_xconst", "id => aprop", Delimfix "XCONST _"),
 | 
| 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28792diff
changeset | 1056 |     ("_context_xconst", "longid => logic", Delimfix "XCONST _"),
 | 
| 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28792diff
changeset | 1057 |     ("_context_xconst", "longid => aprop", Delimfix "XCONST _")] #>
 | 
| 25159 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1058 | Sign.add_advanced_trfuns | 
| 26463 | 1059 |     ([("_context_const", const_ast_tr true), ("_context_xconst", const_ast_tr false)], [], [], [])));
 | 
| 25159 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1060 | |
| 
1822da5446bc
added XCONST syntax (keeps original spelling of const);
 wenzelm parents: 
25133diff
changeset | 1061 | end; | 
| 19681 | 1062 | |
| 19663 | 1063 | |
| 21744 | 1064 | (* notation *) | 
| 1065 | ||
| 24949 | 1066 | local | 
| 1067 | ||
| 1068 | fun const_syntax ctxt (Free (x, T), mx) = SOME (true, (x, T, mx)) | |
| 1069 | | const_syntax ctxt (Const (c, _), mx) = | |
| 1070 | Option.map (pair false) (try (Consts.syntax (consts_of ctxt)) (c, mx)) | |
| 1071 | | const_syntax _ _ = NONE; | |
| 1072 | ||
| 1073 | in | |
| 21744 | 1074 | |
| 24949 | 1075 | fun notation add mode args ctxt = | 
| 1076 | ctxt |> map_syntax | |
| 1077 | (LocalSyntax.update_modesyntax (theory_of ctxt) add mode (map_filter (const_syntax ctxt) args)); | |
| 1078 | ||
| 1079 | fun target_notation add mode args phi = | |
| 24982 | 1080 | let val args' = filter (fn (t, _) => Type.similar_types (t, Morphism.term phi t)) args; | 
| 24949 | 1081 | in Context.mapping (Sign.notation add mode args') (notation add mode args') end; | 
| 1082 | ||
| 1083 | end; | |
| 21744 | 1084 | |
| 1085 | ||
| 24767 | 1086 | (* local constants *) | 
| 1087 | ||
| 1088 | fun add_const_constraint (c, opt_T) ctxt = | |
| 1089 | let | |
| 1090 | fun prepT raw_T = | |
| 1091 | let val T = cert_typ ctxt raw_T | |
| 1092 | in cert_term ctxt (Const (c, T)); T end; | |
| 25039 | 1093 | in ctxt |> (map_consts o apfst) (Consts.constrain (c, Option.map prepT opt_T)) end; | 
| 19001 | 1094 | |
| 28861 | 1095 | fun add_abbrev mode tags (b, raw_t) ctxt = | 
| 19001 | 1096 | let | 
| 24675 
2be1253a20d3
removed obsolete set_expand_abbrevs (superceded by mode_abbrev);
 wenzelm parents: 
24612diff
changeset | 1097 | val t0 = cert_term (ctxt |> set_mode mode_abbrev) raw_t | 
| 28965 | 1098 |       handle ERROR msg => cat_error msg ("in constant abbreviation " ^ quote (Binding.display b));
 | 
| 20008 
8d9d770e1f06
add_abbrevs/polymorphic: Variable.exportT_terms avoids over-generalization;
 wenzelm parents: 
19916diff
changeset | 1099 | val [t] = Variable.exportT_terms (Variable.declare_term t0 ctxt) ctxt [t0]; | 
| 21807 
a59f083632a7
add_abbrev: removed Assumption.add_assms (danger of inconsistent naming);
 wenzelm parents: 
21803diff
changeset | 1100 | val ((lhs, rhs), consts') = consts_of ctxt | 
| 28861 | 1101 | |> Consts.abbreviate (Syntax.pp ctxt) (tsig_of ctxt) (naming_of ctxt) mode tags (b, t); | 
| 19001 | 1102 | in | 
| 1103 | ctxt | |
| 25039 | 1104 | |> (map_consts o apfst) (K consts') | 
| 21803 | 1105 | |> Variable.declare_term rhs | 
| 1106 | |> pair (lhs, rhs) | |
| 21704 | 1107 | end; | 
| 19001 | 1108 | |
| 25052 | 1109 | fun revert_abbrev mode c = (map_consts o apfst) (Consts.revert_abbrev mode c); | 
| 1110 | ||
| 19001 | 1111 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1112 | (* fixes *) | 
| 5819 | 1113 | |
| 8096 | 1114 | local | 
| 1115 | ||
| 19001 | 1116 | fun prep_mixfix (x, T, mx) = | 
| 19019 | 1117 | if mx <> NoSyn andalso mx <> Structure andalso | 
| 20086 
94ca946fb689
adapted to more efficient Name/Variable implementation;
 wenzelm parents: 
20049diff
changeset | 1118 | (can Name.dest_internal x orelse can Name.dest_skolem x) then | 
| 19001 | 1119 |     error ("Illegal mixfix syntax for internal/skolem constant " ^ quote x)
 | 
| 1120 | else (true, (x, T, mx)); | |
| 1121 | ||
| 18844 | 1122 | fun gen_fixes prep raw_vars ctxt = | 
| 8096 | 1123 | let | 
| 22712 | 1124 | val (vars, _) = prep raw_vars ctxt; | 
| 29006 | 1125 | val (xs', ctxt') = Variable.add_fixes (map (Binding.base_name o #1) vars) ctxt; | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 1126 | val ctxt'' = | 
| 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 1127 | ctxt' | 
| 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 1128 | |> fold_map declare_var (map2 (fn x' => fn (_, T, mx) => (x', T, mx)) xs' vars) | 
| 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 1129 | |-> (map_syntax o LocalSyntax.add_syntax (theory_of ctxt) o map prep_mixfix); | 
| 28861 | 1130 | val _ = (vars ~~ xs') |> List.app (fn ((b, _, _), x') => | 
| 28941 | 1131 | ContextPosition.report_visible ctxt (Markup.fixed_decl x') (Binding.pos_of b)); | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 1132 | in (xs', ctxt'') end; | 
| 5819 | 1133 | |
| 8096 | 1134 | in | 
| 7679 | 1135 | |
| 18844 | 1136 | val add_fixes = gen_fixes read_vars; | 
| 1137 | val add_fixes_i = gen_fixes cert_vars; | |
| 8096 | 1138 | |
| 1139 | end; | |
| 5819 | 1140 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1141 | |
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1142 | (* fixes vs. frees *) | 
| 12016 | 1143 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1144 | fun auto_fixes (arg as (ctxt, (propss, x))) = | 
| 21370 
d9dd7b4e5e69
replaced Variable.fix_frees by Variable.auto_fixes (depends on body mode);
 wenzelm parents: 
21269diff
changeset | 1145 | ((fold o fold) Variable.auto_fixes propss ctxt, (propss, x)); | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1146 | |
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1147 | fun bind_fixes xs ctxt = | 
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1148 | let | 
| 28965 | 1149 | val (_, ctxt') = ctxt |> add_fixes_i (map (fn x => (Binding.name x, NONE, NoSyn)) xs); | 
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1150 | fun bind (t as Free (x, T)) = | 
| 18340 | 1151 | if member (op =) xs x then | 
| 15531 | 1152 | (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 | 1153 | else t | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1154 | | bind (t $ u) = bind t $ bind u | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1155 | | bind (Abs (x, T, t)) = Abs (x, T, bind t) | 
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1156 | | bind a = a; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1157 | in (bind, ctxt') end; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1158 | |
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1159 | |
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1160 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1161 | (** assumptions **) | 
| 18187 | 1162 | |
| 20209 | 1163 | local | 
| 1164 | ||
| 1165 | fun gen_assms prepp exp args ctxt = | |
| 1166 | let | |
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 1167 | val cert = Thm.cterm_of (theory_of ctxt); | 
| 20209 | 1168 | val (propss, ctxt1) = swap (prepp (ctxt, map snd args)); | 
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 1169 | val _ = Variable.warn_extra_tfrees ctxt ctxt1; | 
| 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 1170 | val (premss, ctxt2) = fold_burrow (Assumption.add_assms exp o map cert) propss ctxt1; | 
| 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 1171 | in | 
| 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 1172 | ctxt2 | 
| 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 1173 | |> auto_bind_facts (flat propss) | 
| 21443 
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
 wenzelm parents: 
21370diff
changeset | 1174 | |> note_thmss_i Thm.assumptionK (map fst args ~~ map (map (fn th => ([th], []))) premss) | 
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 1175 | end; | 
| 20209 | 1176 | |
| 1177 | in | |
| 1178 | ||
| 1179 | val add_assms = gen_assms (apsnd #1 o bind_propp); | |
| 1180 | val add_assms_i = gen_assms (apsnd #1 o bind_propp_i); | |
| 1181 | ||
| 1182 | end; | |
| 1183 | ||
| 1184 | ||
| 5819 | 1185 | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1186 | (** cases **) | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1187 | |
| 16147 | 1188 | local | 
| 1189 | ||
| 16668 | 1190 | fun rem_case name = remove (fn (x: string, (y, _)) => x = y) name; | 
| 16147 | 1191 | |
| 18476 | 1192 | fun add_case _ ("", _) cases = cases
 | 
| 1193 | | add_case _ (name, NONE) cases = rem_case name cases | |
| 1194 | | add_case is_proper (name, SOME c) cases = (name, (c, is_proper)) :: rem_case name cases; | |
| 16147 | 1195 | |
| 18678 | 1196 | fun prep_case name fxs c = | 
| 18609 | 1197 | let | 
| 1198 | fun replace (opt_x :: xs) ((y, T) :: ys) = (the_default y opt_x, T) :: replace xs ys | |
| 1199 | | replace [] ys = ys | |
| 18678 | 1200 |       | replace (_ :: _) [] = error ("Too many parameters for case " ^ quote name);
 | 
| 18609 | 1201 |     val RuleCases.Case {fixes, assumes, binds, cases} = c;
 | 
| 1202 | val fixes' = replace fxs fixes; | |
| 1203 | val binds' = map drop_schematic binds; | |
| 1204 | in | |
| 1205 | if null (fold (Term.add_tvarsT o snd) fixes []) andalso | |
| 1206 | null (fold (fold Term.add_vars o snd) assumes []) then | |
| 1207 |         RuleCases.Case {fixes = fixes', assumes = assumes, binds = binds', cases = cases}
 | |
| 18678 | 1208 |     else error ("Illegal schematic variable(s) in case " ^ quote name)
 | 
| 18609 | 1209 | end; | 
| 1210 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1211 | fun fix (x, T) ctxt = | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1212 | let | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1213 | val (bind, ctxt') = bind_fixes [x] ctxt; | 
| 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1214 | val t = bind (Free (x, T)); | 
| 20163 | 1215 | in (t, ctxt' |> Variable.declare_constraints t) end; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1216 | |
| 16147 | 1217 | in | 
| 1218 | ||
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1219 | fun add_cases is_proper = map_cases o fold (add_case is_proper); | 
| 18609 | 1220 | |
| 1221 | fun case_result c ctxt = | |
| 1222 | let | |
| 1223 |     val RuleCases.Case {fixes, ...} = c;
 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1224 | 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 | 1225 |     val RuleCases.Case {assumes, binds, cases, ...} = RuleCases.apply ts c;
 | 
| 18609 | 1226 | in | 
| 1227 | ctxt' | |
| 18699 
f3bfe81b6e58
case_result: drop_schematic, i.e. be permissive about illegal binds;
 wenzelm parents: 
18678diff
changeset | 1228 | |> add_binds_i (map drop_schematic binds) | 
| 18609 | 1229 | |> add_cases true (map (apsnd SOME) cases) | 
| 1230 | |> pair (assumes, (binds, cases)) | |
| 1231 | end; | |
| 1232 | ||
| 1233 | val apply_case = apfst fst oo case_result; | |
| 1234 | ||
| 16540 | 1235 | fun get_case ctxt name xs = | 
| 17184 | 1236 | (case AList.lookup (op =) (cases_of ctxt) name of | 
| 18678 | 1237 |     NONE => error ("Unknown case: " ^ quote name)
 | 
| 1238 | | SOME (c, _) => prep_case name xs c); | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1239 | |
| 16147 | 1240 | end; | 
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1241 | |
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1242 | |
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1243 | |
| 10810 | 1244 | (** print context information **) | 
| 1245 | ||
| 20310 | 1246 | val debug = ref false; | 
| 1247 | ||
| 10810 | 1248 | val verbose = ref false; | 
| 1249 | fun verb f x = if ! verbose then f (x ()) else []; | |
| 1250 | ||
| 1251 | fun setmp_verbose f x = Library.setmp verbose true f x; | |
| 1252 | ||
| 1253 | ||
| 12072 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1254 | (* local syntax *) | 
| 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1255 | |
| 12093 | 1256 | val print_syntax = Syntax.print_syntax o syn_of; | 
| 12072 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1257 | |
| 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1258 | |
| 21728 | 1259 | (* abbreviations *) | 
| 18971 | 1260 | |
| 21728 | 1261 | fun pretty_abbrevs show_globals ctxt = | 
| 18971 | 1262 | let | 
| 25052 | 1263 | val ((space, consts), (_, globals)) = | 
| 19033 
24e251657e56
consts: maintain thy version for efficient transfer;
 wenzelm parents: 
19019diff
changeset | 1264 | pairself (#constants o Consts.dest) (#consts (rep_context ctxt)); | 
| 21803 | 1265 | fun add_abbr (_, (_, NONE)) = I | 
| 25406 | 1266 | | add_abbr (c, (T, SOME t)) = | 
| 21728 | 1267 | if not show_globals andalso Symtab.defined globals c then I | 
| 1268 | else cons (c, Logic.mk_equals (Const (c, T), t)); | |
| 21803 | 1269 | val abbrevs = NameSpace.extern_table (space, Symtab.make (Symtab.fold add_abbr consts [])); | 
| 18971 | 1270 | in | 
| 1271 | if null abbrevs andalso not (! verbose) then [] | |
| 21728 | 1272 | else [Pretty.big_list "abbreviations:" (map (pretty_term_abbrev ctxt o #2) abbrevs)] | 
| 18971 | 1273 | end; | 
| 1274 | ||
| 21728 | 1275 | val print_abbrevs = Pretty.writeln o Pretty.chunks o pretty_abbrevs true; | 
| 1276 | ||
| 18971 | 1277 | |
| 10810 | 1278 | (* term bindings *) | 
| 1279 | ||
| 16540 | 1280 | fun pretty_binds ctxt = | 
| 10810 | 1281 | let | 
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 1282 | val binds = Variable.binds_of ctxt; | 
| 21728 | 1283 | fun prt_bind (xi, (T, t)) = pretty_term_abbrev ctxt (Logic.mk_equals (Var (xi, T), t)); | 
| 10810 | 1284 | in | 
| 15758 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 1285 | if Vartab.is_empty binds andalso not (! verbose) then [] | 
| 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 1286 | else [Pretty.big_list "term bindings:" (map prt_bind (Vartab.dest binds))] | 
| 10810 | 1287 | end; | 
| 1288 | ||
| 1289 | val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds; | |
| 1290 | ||
| 1291 | ||
| 1292 | (* local theorems *) | |
| 1293 | ||
| 16540 | 1294 | fun pretty_lthms ctxt = | 
| 20012 | 1295 | let | 
| 26284 | 1296 | val local_facts = facts_of ctxt; | 
| 1297 | val props = Facts.props local_facts; | |
| 26673 | 1298 | val facts = | 
| 27173 | 1299 |       (if null props then [] else [("unnamed", props)]) @
 | 
| 28212 | 1300 | Facts.dest_static [] local_facts; | 
| 20012 | 1301 | in | 
| 1302 | if null facts andalso not (! verbose) then [] | |
| 28212 | 1303 | else [Pretty.big_list "facts:" (map #1 (sort_wrt (#1 o #2) (map (`(pretty_fact ctxt)) facts)))] | 
| 20012 | 1304 | end; | 
| 10810 | 1305 | |
| 12057 | 1306 | val print_lthms = Pretty.writeln o Pretty.chunks o pretty_lthms; | 
| 10810 | 1307 | |
| 1308 | ||
| 1309 | (* local contexts *) | |
| 1310 | ||
| 26722 | 1311 | local | 
| 1312 | ||
| 1313 | fun pretty_case (name, (fixes, ((asms, (lets, cs)), ctxt))) = | |
| 10810 | 1314 | let | 
| 24922 | 1315 | val prt_term = Syntax.pretty_term ctxt; | 
| 12057 | 1316 | |
| 10810 | 1317 | fun prt_let (xi, t) = Pretty.block | 
| 10818 | 1318 | [Pretty.quote (prt_term (Var (xi, Term.fastype_of t))), Pretty.str " =", Pretty.brk 1, | 
| 10810 | 1319 | Pretty.quote (prt_term t)]; | 
| 1320 | ||
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1321 | fun prt_asm (a, ts) = Pretty.block (Pretty.breaks | 
| 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1322 | ((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 | 1323 | |
| 10810 | 1324 | fun prt_sect _ _ _ [] = [] | 
| 1325 | | prt_sect s sep prt xs = [Pretty.block (Pretty.breaks (Pretty.str s :: | |
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19422diff
changeset | 1326 | flat (Library.separate sep (map (Library.single o prt) xs))))]; | 
| 26722 | 1327 | in | 
| 1328 | Pretty.block (Pretty.fbreaks | |
| 10810 | 1329 | (Pretty.str (name ^ ":") :: | 
| 11915 | 1330 | prt_sect "fix" [] (Pretty.str o fst) fixes @ | 
| 10810 | 1331 | prt_sect "let" [Pretty.str "and"] prt_let | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19422diff
changeset | 1332 | (map_filter (fn (xi, SOME t) => SOME (xi, t) | _ => NONE) lets) @ | 
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1333 | (if forall (null o #2) asms then [] | 
| 18609 | 1334 | else prt_sect "assume" [Pretty.str "and"] prt_asm asms) @ | 
| 26722 | 1335 | prt_sect "subcases:" [] (Pretty.str o fst) cs)) | 
| 1336 | end; | |
| 16540 | 1337 | |
| 26722 | 1338 | in | 
| 1339 | ||
| 1340 | fun pretty_cases ctxt = | |
| 1341 | let | |
| 18476 | 1342 | fun add_case (_, (_, false)) = I | 
| 18609 | 1343 |       | add_case (name, (c as RuleCases.Case {fixes, ...}, true)) =
 | 
| 26722 | 1344 | cons (name, (fixes, case_result c ctxt)); | 
| 18476 | 1345 | val cases = fold add_case (cases_of ctxt) []; | 
| 10810 | 1346 | in | 
| 1347 | if null cases andalso not (! verbose) then [] | |
| 26722 | 1348 | else [Pretty.big_list "cases:" (map pretty_case cases)] | 
| 10810 | 1349 | end; | 
| 1350 | ||
| 1351 | val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases; | |
| 1352 | ||
| 26722 | 1353 | end; | 
| 1354 | ||
| 10810 | 1355 | |
| 12057 | 1356 | (* core context *) | 
| 10810 | 1357 | |
| 20367 | 1358 | val prems_limit = ref ~1; | 
| 10810 | 1359 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1360 | fun pretty_ctxt ctxt = | 
| 20310 | 1361 | if ! prems_limit < 0 andalso not (! debug) then [] | 
| 1362 | else | |
| 1363 | let | |
| 24922 | 1364 | val prt_term = Syntax.pretty_term ctxt; | 
| 12057 | 1365 | |
| 20310 | 1366 | (*structures*) | 
| 1367 | val structs = LocalSyntax.structs_of (syntax_of ctxt); | |
| 1368 | val prt_structs = if null structs then [] | |
| 1369 | else [Pretty.block (Pretty.str "structures:" :: Pretty.brk 1 :: | |
| 1370 | Pretty.commas (map Pretty.str structs))]; | |
| 12093 | 1371 | |
| 20310 | 1372 | (*fixes*) | 
| 1373 | fun prt_fix (x, x') = | |
| 1374 | if x = x' then Pretty.str x | |
| 1375 | else Pretty.block [Pretty.str x, Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')]; | |
| 1376 | val fixes = | |
| 1377 | rev (filter_out ((can Name.dest_internal orf member (op =) structs) o #1) | |
| 1378 | (Variable.fixes_of ctxt)); | |
| 1379 | val prt_fixes = if null fixes then [] | |
| 1380 | else [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 :: | |
| 1381 | Pretty.commas (map prt_fix fixes))]; | |
| 12057 | 1382 | |
| 20310 | 1383 | (*prems*) | 
| 1384 | val prems = Assumption.prems_of ctxt; | |
| 1385 | val len = length prems; | |
| 20367 | 1386 | val suppressed = len - ! prems_limit; | 
| 20310 | 1387 | val prt_prems = if null prems then [] | 
| 20367 | 1388 | else [Pretty.big_list "prems:" ((if suppressed <= 0 then [] else [Pretty.str "..."]) @ | 
| 1389 | map (pretty_thm ctxt) (Library.drop (suppressed, prems)))]; | |
| 20310 | 1390 | in prt_structs @ prt_fixes @ prt_prems end; | 
| 10810 | 1391 | |
| 1392 | ||
| 1393 | (* main context *) | |
| 1394 | ||
| 16540 | 1395 | fun pretty_context ctxt = | 
| 10810 | 1396 | let | 
| 24922 | 1397 | val prt_term = Syntax.pretty_term ctxt; | 
| 1398 | val prt_typ = Syntax.pretty_typ ctxt; | |
| 1399 | val prt_sort = Syntax.pretty_sort ctxt; | |
| 10810 | 1400 | |
| 1401 | (*theory*) | |
| 12057 | 1402 | val pretty_thy = Pretty.block | 
| 17384 | 1403 | [Pretty.str "theory:", Pretty.brk 1, Context.pretty_thy (theory_of ctxt)]; | 
| 10810 | 1404 | |
| 1405 | (*defaults*) | |
| 1406 | fun prt_atom prt prtT (x, X) = Pretty.block | |
| 1407 | [prt x, Pretty.str " ::", Pretty.brk 1, prtT X]; | |
| 1408 | ||
| 1409 | fun prt_var (x, ~1) = prt_term (Syntax.free x) | |
| 1410 | | prt_var xi = prt_term (Syntax.var xi); | |
| 1411 | ||
| 1412 | fun prt_varT (x, ~1) = prt_typ (TFree (x, [])) | |
| 1413 | | prt_varT xi = prt_typ (TVar (xi, [])); | |
| 1414 | ||
| 1415 | val prt_defT = prt_atom prt_var prt_typ; | |
| 1416 | val prt_defS = prt_atom prt_varT prt_sort; | |
| 16540 | 1417 | |
| 20163 | 1418 | val (types, sorts) = Variable.constraints_of ctxt; | 
| 10810 | 1419 | in | 
| 18609 | 1420 | verb single (K pretty_thy) @ | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1421 | pretty_ctxt ctxt @ | 
| 21728 | 1422 | verb (pretty_abbrevs false) (K ctxt) @ | 
| 10810 | 1423 | verb pretty_binds (K ctxt) @ | 
| 12057 | 1424 | verb pretty_lthms (K ctxt) @ | 
| 10810 | 1425 | verb pretty_cases (K ctxt) @ | 
| 18609 | 1426 | verb single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @ | 
| 20163 | 1427 | verb single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts))) | 
| 10810 | 1428 | end; | 
| 1429 | ||
| 27314 | 1430 | |
| 1431 | (* query meta data *) | |
| 1432 | ||
| 1433 | val query_type = Type.the_tags o tsig_of; | |
| 1434 | ||
| 1435 | fun query_const ctxt name = | |
| 1436 | Consts.the_tags (consts_of ctxt) name handle TYPE (msg, _, _) => error msg; | |
| 1437 | ||
| 1438 | fun query_class ctxt name = query_const ctxt (Logic.const_of_class name); | |
| 1439 | ||
| 5819 | 1440 | end; |