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