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