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