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