author | wenzelm |
Mon, 24 Feb 2014 14:58:40 +0100 | |
changeset 55725 | 9d605a21d7ec |
parent 55304 | 55ac31bc08a4 |
child 55740 | 11dd48f84441 |
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 |
36610
bafd82950e24
renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents:
36542
diff
changeset
|
12 |
val init_global: theory -> Proof.context |
51686 | 13 |
val get_global: theory -> string -> Proof.context |
24388
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
14 |
type mode |
24501 | 15 |
val mode_default: mode |
16 |
val mode_stmt: mode |
|
17 |
val mode_pattern: mode |
|
18 |
val mode_schematic: mode |
|
19 |
val mode_abbrev: mode |
|
24388
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
20 |
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
|
21 |
val get_mode: Proof.context -> mode |
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
22 |
val restore_mode: Proof.context -> Proof.context -> Proof.context |
27286 | 23 |
val abbrev_mode: Proof.context -> bool |
21667
ce813b82c88b
add_notation: permissive about undeclared consts;
wenzelm
parents:
21648
diff
changeset
|
24 |
val set_stmt: bool -> Proof.context -> Proof.context |
42241
dd8029f71e1c
separate module for standard implementation of inner syntax operations;
wenzelm
parents:
42224
diff
changeset
|
25 |
val syntax_of: Proof.context -> Local_Syntax.T |
35111 | 26 |
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
|
27 |
val tsig_of: Proof.context -> Type.tsig |
36451 | 28 |
val set_defsort: sort -> Proof.context -> Proof.context |
35680 | 29 |
val default_sort: Proof.context -> indexname -> sort |
20310 | 30 |
val consts_of: Proof.context -> Consts.T |
20784 | 31 |
val set_syntax_mode: Syntax.mode -> Proof.context -> Proof.context |
20310 | 32 |
val restore_syntax_mode: Proof.context -> Proof.context -> Proof.context |
26284 | 33 |
val facts_of: Proof.context -> Facts.T |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
34 |
val map_naming: (Name_Space.naming -> Name_Space.naming) -> Proof.context -> Proof.context |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
35 |
val naming_of: Proof.context -> Name_Space.naming |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
36 |
val restore_naming: Proof.context -> Proof.context -> Proof.context |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
37 |
val full_name: Proof.context -> binding -> string |
42359 | 38 |
val class_space: Proof.context -> Name_Space.T |
39 |
val type_space: Proof.context -> Name_Space.T |
|
40 |
val const_space: Proof.context -> Name_Space.T |
|
41 |
val intern_class: Proof.context -> xstring -> string |
|
42 |
val intern_type: Proof.context -> xstring -> string |
|
43 |
val intern_const: Proof.context -> xstring -> string |
|
44 |
val extern_class: Proof.context -> string -> xstring |
|
55304 | 45 |
val markup_class: Proof.context -> string -> string |
46 |
val pretty_class: Proof.context -> string -> Pretty.T |
|
42359 | 47 |
val extern_type: Proof.context -> string -> xstring |
55304 | 48 |
val markup_type: Proof.context -> string -> string |
49 |
val pretty_type: Proof.context -> string -> Pretty.T |
|
42359 | 50 |
val extern_const: Proof.context -> string -> xstring |
55304 | 51 |
val markup_const: Proof.context -> string -> string |
52 |
val pretty_const: Proof.context -> string -> Pretty.T |
|
20310 | 53 |
val transfer: theory -> Proof.context -> Proof.context |
38756
d07959fabde6
renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents:
38328
diff
changeset
|
54 |
val background_theory: (theory -> theory) -> Proof.context -> Proof.context |
d07959fabde6
renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents:
38328
diff
changeset
|
55 |
val background_theory_result: (theory -> 'a * theory) -> Proof.context -> 'a * Proof.context |
28212 | 56 |
val extern_fact: Proof.context -> string -> xstring |
21728 | 57 |
val pretty_term_abbrev: Proof.context -> term -> Pretty.T |
49888 | 58 |
val markup_fact: Proof.context -> string -> Markup.T |
20310 | 59 |
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
|
60 |
val read_class: Proof.context -> xstring -> class |
20310 | 61 |
val read_typ: Proof.context -> string -> typ |
62 |
val read_typ_syntax: Proof.context -> string -> typ |
|
63 |
val read_typ_abbrev: Proof.context -> string -> typ |
|
64 |
val cert_typ: Proof.context -> typ -> typ |
|
65 |
val cert_typ_syntax: Proof.context -> typ -> typ |
|
66 |
val cert_typ_abbrev: Proof.context -> typ -> typ |
|
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36503
diff
changeset
|
67 |
val infer_type: Proof.context -> string * typ -> typ |
28082
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
68 |
val inferred_param: string -> Proof.context -> typ * Proof.context |
25328 | 69 |
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
|
70 |
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
|
71 |
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
|
72 |
val read_const_proper: Proof.context -> bool -> string -> term |
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36503
diff
changeset
|
73 |
val read_const: Proof.context -> bool -> typ -> string -> term |
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
74 |
val read_arity: Proof.context -> xstring * string list * string -> arity |
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
75 |
val cert_arity: Proof.context -> arity -> arity |
27259 | 76 |
val allow_dummies: Proof.context -> Proof.context |
49674
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
77 |
val prepare_sortsT: Proof.context -> typ list -> string * typ list |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
78 |
val prepare_sorts: Proof.context -> term list -> string * term list |
36152 | 79 |
val check_tfree: Proof.context -> string * sort -> string * sort |
42250
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
80 |
val intern_skolem: Proof.context -> string -> string option |
24684 | 81 |
val read_term_pattern: Proof.context -> string -> term |
82 |
val read_term_schematic: Proof.context -> string -> term |
|
83 |
val read_term_abbrev: Proof.context -> string -> term |
|
40879
ca132ef44944
configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents:
39557
diff
changeset
|
84 |
val show_abbrevs_raw: Config.raw |
ca132ef44944
configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents:
39557
diff
changeset
|
85 |
val show_abbrevs: bool Config.T |
25345
dd5b851f8ef0
renamed ProofContext.read_const' to ProofContext.read_const_proper;
wenzelm
parents:
25332
diff
changeset
|
86 |
val expand_abbrevs: Proof.context -> term -> term |
20310 | 87 |
val cert_term: Proof.context -> term -> term |
88 |
val cert_prop: Proof.context -> term -> term |
|
35616
b342390d296f
provide ProofContext.def_type depending on "pattern" mode;
wenzelm
parents:
35429
diff
changeset
|
89 |
val def_type: Proof.context -> indexname -> typ option |
45429 | 90 |
val standard_typ_check: Proof.context -> typ list -> typ list |
91 |
val standard_term_check_finish: Proof.context -> term list -> term list |
|
92 |
val standard_term_uncheck: Proof.context -> term list -> term list |
|
20310 | 93 |
val goal_export: Proof.context -> Proof.context -> thm list -> thm list |
94 |
val export: Proof.context -> Proof.context -> thm list -> thm list |
|
21531 | 95 |
val export_morphism: Proof.context -> Proof.context -> morphism |
28396 | 96 |
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
|
97 |
val bind_terms: (indexname * term option) list -> Proof.context -> Proof.context |
20310 | 98 |
val auto_bind_goal: term list -> Proof.context -> Proof.context |
99 |
val auto_bind_facts: term list -> Proof.context -> Proof.context |
|
100 |
val match_bind: bool -> (string list * string) list -> Proof.context -> term list * Proof.context |
|
101 |
val match_bind_i: bool -> (term list * term) list -> Proof.context -> term list * Proof.context |
|
45327 | 102 |
val read_propp: (string * string list) list list -> Proof.context -> |
103 |
(term * term list) list list * Proof.context |
|
104 |
val cert_propp: (term * term list) list list -> Proof.context -> |
|
105 |
(term * term list) list list * Proof.context |
|
106 |
val read_propp_schematic: (string * string list) list list -> Proof.context -> |
|
107 |
(term * term list) list list * Proof.context |
|
108 |
val cert_propp_schematic: (term * term list) list list -> Proof.context -> |
|
109 |
(term * term list) list list * Proof.context |
|
110 |
val bind_propp: (string * string list) list list -> Proof.context -> |
|
111 |
(term list list * (Proof.context -> Proof.context)) * Proof.context |
|
112 |
val bind_propp_i: (term * term list) list list -> Proof.context -> |
|
113 |
(term list list * (Proof.context -> Proof.context)) * Proof.context |
|
114 |
val bind_propp_schematic: (string * string list) list list -> Proof.context -> |
|
115 |
(term list list * (Proof.context -> Proof.context)) * Proof.context |
|
116 |
val bind_propp_schematic_i: (term * term list) list list -> Proof.context -> |
|
117 |
(term list list * (Proof.context -> Proof.context)) * Proof.context |
|
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
118 |
val fact_tac: Proof.context -> thm list -> int -> tactic |
20310 | 119 |
val some_fact_tac: Proof.context -> int -> tactic |
26346
17debd2fff8e
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
120 |
val get_fact: Proof.context -> Facts.ref -> thm list |
17debd2fff8e
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
121 |
val get_fact_single: Proof.context -> Facts.ref -> thm |
17debd2fff8e
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
122 |
val get_thms: Proof.context -> xstring -> thm list |
17debd2fff8e
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
123 |
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
|
124 |
val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list -> |
30211 | 125 |
Proof.context -> (string * thm list) list * Proof.context |
28082
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
126 |
val put_thms: bool -> string * thm list option -> Proof.context -> Proof.context |
29581 | 127 |
val read_vars: (binding * string option * mixfix) list -> Proof.context -> |
128 |
(binding * typ option * mixfix) list * Proof.context |
|
129 |
val cert_vars: (binding * typ option * mixfix) list -> Proof.context -> |
|
130 |
(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
|
131 |
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
|
132 |
string list * Proof.context |
20234
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents:
20209
diff
changeset
|
133 |
val add_assms: Assumption.export -> |
30211 | 134 |
(Thm.binding * (string * string list) list) list -> |
28082
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
135 |
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
|
136 |
val add_assms_i: Assumption.export -> |
30211 | 137 |
(Thm.binding * (term * term list) list) list -> |
28082
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
138 |
Proof.context -> (string * thm list) list * Proof.context |
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
139 |
val dest_cases: Proof.context -> (string * (Rule_Cases.T * bool)) list |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
140 |
val update_cases: bool -> (string * Rule_Cases.T option) list -> Proof.context -> Proof.context |
53380
08f3491c50bf
cases: formal binding of 'assumes', with position provided via invoke_case;
wenzelm
parents:
53378
diff
changeset
|
141 |
val apply_case: Rule_Cases.T -> Proof.context -> (binding * term list) list * Proof.context |
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
142 |
val check_case: Proof.context -> string * Position.T -> binding option list -> Rule_Cases.T |
35412
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
143 |
val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> Proof.context -> Proof.context |
24949 | 144 |
val notation: bool -> Syntax.mode -> (term * mixfix) list -> Proof.context -> Proof.context |
47247 | 145 |
val generic_type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> morphism -> |
35412
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
146 |
Context.generic -> Context.generic |
47247 | 147 |
val generic_notation: bool -> Syntax.mode -> (term * mixfix) list -> morphism -> |
21744 | 148 |
Context.generic -> Context.generic |
35680 | 149 |
val class_alias: binding -> class -> Proof.context -> Proof.context |
150 |
val type_alias: binding -> string -> Proof.context -> Proof.context |
|
151 |
val const_alias: binding -> string -> Proof.context -> Proof.context |
|
24767 | 152 |
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
|
153 |
val add_abbrev: string -> binding * term -> Proof.context -> (term * term) * Proof.context |
25052 | 154 |
val revert_abbrev: string -> string -> Proof.context -> Proof.context |
47275 | 155 |
val generic_add_abbrev: string -> binding * term -> Context.generic -> |
156 |
(term * term) * Context.generic |
|
157 |
val generic_revert_abbrev: string -> string -> Context.generic -> Context.generic |
|
20310 | 158 |
val print_syntax: Proof.context -> unit |
21728 | 159 |
val print_abbrevs: Proof.context -> unit |
20310 | 160 |
val print_binds: Proof.context -> unit |
161 |
val print_lthms: Proof.context -> unit |
|
162 |
val print_cases: Proof.context -> unit |
|
42717
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
wenzelm
parents:
42502
diff
changeset
|
163 |
val debug: bool Config.T |
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
wenzelm
parents:
42502
diff
changeset
|
164 |
val verbose: bool Config.T |
20310 | 165 |
val pretty_ctxt: Proof.context -> Pretty.T list |
166 |
val pretty_context: Proof.context -> Pretty.T list |
|
5819 | 167 |
end; |
168 |
||
42360 | 169 |
structure Proof_Context: PROOF_CONTEXT = |
5819 | 170 |
struct |
171 |
||
42363 | 172 |
val theory_of = Proof_Context.theory_of; |
173 |
val init_global = Proof_Context.init_global; |
|
51686 | 174 |
val get_global = Proof_Context.get_global; |
42363 | 175 |
|
12057 | 176 |
|
7270 | 177 |
|
24388
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
178 |
(** inner syntax mode **) |
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
179 |
|
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
180 |
datatype mode = |
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
181 |
Mode of |
24486 | 182 |
{stmt: bool, (*inner statement mode*) |
24388
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
183 |
pattern: bool, (*pattern binding schematic variables*) |
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
184 |
schematic: bool, (*term referencing loose schematic variables*) |
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
185 |
abbrev: bool}; (*abbrev mode -- no normalization*) |
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
186 |
|
24486 | 187 |
fun make_mode (stmt, pattern, schematic, abbrev) = |
188 |
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
|
189 |
|
24486 | 190 |
val mode_default = make_mode (false, false, false, false); |
191 |
val mode_stmt = make_mode (true, false, false, false); |
|
192 |
val mode_pattern = make_mode (false, true, false, false); |
|
193 |
val mode_schematic = make_mode (false, false, true, false); |
|
194 |
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
|
195 |
|
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
196 |
|
5819 | 197 |
|
16540 | 198 |
(** Isar proof context information **) |
5819 | 199 |
|
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
200 |
type cases = ((Rule_Cases.T * bool) * int) Name_Space.table; |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
201 |
val empty_cases: cases = Name_Space.empty_table Markup.caseN; |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
202 |
|
45650 | 203 |
datatype data = |
204 |
Data of |
|
36451 | 205 |
{mode: mode, (*inner syntax mode*) |
206 |
syntax: Local_Syntax.T, (*local syntax*) |
|
207 |
tsig: Type.tsig * Type.tsig, (*local/global type signature -- local name space / defsort only*) |
|
208 |
consts: Consts.T * Consts.T, (*local/global consts -- local name space / abbrevs only*) |
|
209 |
facts: Facts.T, (*local facts*) |
|
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
210 |
cases: cases}; (*named case contexts: case, is_proper, running index*) |
5819 | 211 |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
212 |
fun make_data (mode, syntax, tsig, consts, facts, cases) = |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
213 |
Data {mode = mode, syntax = syntax, tsig = tsig, consts = consts, facts = facts, cases = cases}; |
19079
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
wenzelm
parents:
19062
diff
changeset
|
214 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37145
diff
changeset
|
215 |
structure Data = Proof_Data |
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
216 |
( |
45650 | 217 |
type T = data; |
16540 | 218 |
fun init thy = |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
219 |
make_data (mode_default, 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
|
220 |
(Sign.tsig_of thy, Sign.tsig_of thy), |
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
221 |
(Sign.consts_of thy, Sign.consts_of thy), Facts.empty, empty_cases); |
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
222 |
); |
5819 | 223 |
|
45650 | 224 |
fun rep_data ctxt = Data.get ctxt |> (fn Data rep => rep); |
5819 | 225 |
|
45650 | 226 |
fun map_data f = |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
227 |
Data.map (fn Data {mode, syntax, tsig, consts, facts, cases} => |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
228 |
make_data (f (mode, syntax, tsig, consts, facts, cases))); |
24388
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
229 |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
230 |
fun set_mode mode = map_data (fn (_, syntax, tsig, consts, facts, cases) => |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
231 |
(mode, syntax, tsig, consts, facts, cases)); |
21443
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
wenzelm
parents:
21370
diff
changeset
|
232 |
|
24388
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
233 |
fun map_mode f = |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
234 |
map_data (fn (Mode {stmt, pattern, schematic, abbrev}, syntax, tsig, consts, facts, cases) => |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
235 |
(make_mode (f (stmt, pattern, schematic, abbrev)), syntax, tsig, consts, facts, cases)); |
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
236 |
|
19001 | 237 |
fun map_syntax f = |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
238 |
map_data (fn (mode, syntax, tsig, consts, facts, cases) => |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
239 |
(mode, f syntax, tsig, consts, facts, cases)); |
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
240 |
|
36450 | 241 |
fun map_tsig f = |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
242 |
map_data (fn (mode, syntax, tsig, consts, facts, cases) => |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
243 |
(mode, syntax, f tsig, consts, facts, cases)); |
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
244 |
|
19001 | 245 |
fun map_consts f = |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
246 |
map_data (fn (mode, syntax, tsig, consts, facts, cases) => |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
247 |
(mode, syntax, tsig, f consts, facts, cases)); |
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
248 |
|
26284 | 249 |
fun map_facts f = |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
250 |
map_data (fn (mode, syntax, tsig, consts, facts, cases) => |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
251 |
(mode, syntax, tsig, consts, f facts, cases)); |
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
252 |
|
19001 | 253 |
fun map_cases f = |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
254 |
map_data (fn (mode, syntax, tsig, consts, facts, cases) => |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
255 |
(mode, syntax, tsig, consts, facts, f cases)); |
24388
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
256 |
|
45650 | 257 |
val get_mode = #mode o rep_data; |
28407 | 258 |
val restore_mode = set_mode o get_mode; |
27286 | 259 |
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
|
260 |
|
24486 | 261 |
fun set_stmt stmt = |
262 |
map_mode (fn (_, pattern, schematic, abbrev) => (stmt, pattern, schematic, abbrev)); |
|
19001 | 263 |
|
45650 | 264 |
val syntax_of = #syntax o rep_data; |
33387 | 265 |
val syn_of = Local_Syntax.syn_of o syntax_of; |
266 |
val set_syntax_mode = map_syntax o Local_Syntax.set_mode; |
|
267 |
val restore_syntax_mode = map_syntax o Local_Syntax.restore_mode o syntax_of; |
|
19001 | 268 |
|
45650 | 269 |
val tsig_of = #1 o #tsig o rep_data; |
36451 | 270 |
val set_defsort = map_tsig o apfst o Type.set_defsort; |
35680 | 271 |
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
|
272 |
|
45650 | 273 |
val consts_of = #1 o #consts o rep_data; |
274 |
val facts_of = #facts o rep_data; |
|
275 |
val cases_of = #cases o rep_data; |
|
5819 | 276 |
|
277 |
||
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
278 |
(* naming *) |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
279 |
|
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
280 |
val naming_of = Name_Space.naming_of o Context.Proof; |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
281 |
val map_naming = Context.proof_map o Name_Space.map_naming; |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
282 |
val restore_naming = map_naming o K o naming_of; |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
283 |
|
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
284 |
val full_name = Name_Space.full_name o naming_of; |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
285 |
|
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
286 |
|
42359 | 287 |
(* name spaces *) |
288 |
||
289 |
val class_space = Type.class_space o tsig_of; |
|
290 |
val type_space = Type.type_space o tsig_of; |
|
291 |
val const_space = Consts.space_of o consts_of; |
|
292 |
||
293 |
val intern_class = Name_Space.intern o class_space; |
|
294 |
val intern_type = Name_Space.intern o type_space; |
|
295 |
val intern_const = Name_Space.intern o const_space; |
|
296 |
||
297 |
fun extern_class ctxt = Name_Space.extern ctxt (class_space ctxt); |
|
298 |
fun extern_type ctxt = Name_Space.extern ctxt (type_space ctxt); |
|
299 |
fun extern_const ctxt = Name_Space.extern ctxt (const_space ctxt); |
|
300 |
||
55304 | 301 |
fun markup_class ctxt c = Name_Space.markup_extern ctxt (class_space ctxt) c |-> Markup.markup; |
302 |
fun markup_type ctxt c = Name_Space.markup_extern ctxt (type_space ctxt) c |-> Markup.markup; |
|
303 |
fun markup_const ctxt c = Name_Space.markup_extern ctxt (const_space ctxt) c |-> Markup.markup; |
|
304 |
||
305 |
fun pretty_class ctxt c = Name_Space.markup_extern ctxt (class_space ctxt) c |> Pretty.mark_str; |
|
306 |
fun pretty_type ctxt c = Name_Space.markup_extern ctxt (type_space ctxt) c |> Pretty.mark_str; |
|
307 |
fun pretty_const ctxt c = Name_Space.markup_extern ctxt (const_space ctxt) c |> Pretty.mark_str; |
|
308 |
||
42359 | 309 |
|
20367 | 310 |
(* theory transfer *) |
12093 | 311 |
|
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
312 |
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
|
313 |
map_syntax (Local_Syntax.rebuild thy) |> |
36450 | 314 |
map_tsig (fn tsig as (local_tsig, global_tsig) => |
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
315 |
let val thy_tsig = Sign.tsig_of thy in |
36450 | 316 |
if Type.eq_tsig (thy_tsig, global_tsig) then tsig |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
317 |
else (Type.merge_tsig (Context.pretty ctxt) (local_tsig, thy_tsig), thy_tsig) |
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
318 |
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
|
319 |
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
|
320 |
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
|
321 |
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
|
322 |
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
|
323 |
end); |
17072 | 324 |
|
33031
b75c35574e04
backpatching of structure Proof and ProofContext -- avoid odd aliases;
wenzelm
parents:
32966
diff
changeset
|
325 |
fun transfer thy = Context.raw_transfer thy #> transfer_syntax thy; |
17072 | 326 |
|
38756
d07959fabde6
renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents:
38328
diff
changeset
|
327 |
fun background_theory f ctxt = transfer (f (theory_of ctxt)) ctxt; |
20367 | 328 |
|
38756
d07959fabde6
renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents:
38328
diff
changeset
|
329 |
fun background_theory_result f ctxt = |
20367 | 330 |
let val (res, thy') = f (theory_of ctxt) |
331 |
in (res, ctxt |> transfer thy') end; |
|
19019 | 332 |
|
12093 | 333 |
|
334 |
||
14828 | 335 |
(** pretty printing **) |
336 |
||
28212 | 337 |
(* extern *) |
338 |
||
42378 | 339 |
fun which_facts ctxt name = |
28212 | 340 |
let |
341 |
val local_facts = facts_of ctxt; |
|
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39508
diff
changeset
|
342 |
val global_facts = Global_Theory.facts_of (theory_of ctxt); |
28212 | 343 |
in |
344 |
if is_some (Facts.lookup (Context.Proof ctxt) local_facts name) |
|
42378 | 345 |
then local_facts else global_facts |
28212 | 346 |
end; |
347 |
||
42379 | 348 |
fun markup_fact ctxt name = Name_Space.markup (Facts.space_of (which_facts ctxt name)) name; |
42378 | 349 |
|
350 |
fun extern_fact ctxt name = Facts.extern ctxt (which_facts ctxt name) name; |
|
351 |
||
28212 | 352 |
|
353 |
(* pretty *) |
|
354 |
||
24922 | 355 |
fun pretty_term_abbrev ctxt = Syntax.pretty_term (set_mode mode_abbrev ctxt); |
14828 | 356 |
|
42378 | 357 |
fun pretty_fact_name ctxt a = |
358 |
Pretty.block [Pretty.mark_str (markup_fact ctxt a, 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
|
359 |
|
51583 | 360 |
fun pretty_fact ctxt = |
361 |
let |
|
362 |
val pretty_thm = Display.pretty_thm ctxt; |
|
51584 | 363 |
val pretty_thms = map (Display.pretty_thm_item ctxt); |
51583 | 364 |
in |
365 |
fn ("", [th]) => pretty_thm th |
|
366 |
| ("", ths) => Pretty.blk (0, Pretty.fbreaks (pretty_thms ths)) |
|
367 |
| (a, [th]) => Pretty.block [pretty_fact_name ctxt a, Pretty.brk 1, pretty_thm th] |
|
368 |
| (a, ths) => Pretty.block (Pretty.fbreaks (pretty_fact_name ctxt a :: pretty_thms ths)) |
|
369 |
end; |
|
14828 | 370 |
|
371 |
||
372 |
||
5819 | 373 |
(** prepare types **) |
374 |
||
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
375 |
(* classes *) |
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
376 |
|
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
377 |
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
|
378 |
let |
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
379 |
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
|
380 |
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
|
381 |
val c = Type.cert_class tsig (Type.intern_class tsig (Symbol_Pos.content syms)) |
48992 | 382 |
handle TYPE (msg, _, _) => error (msg ^ Position.here pos); |
42467 | 383 |
val _ = Context_Position.report ctxt pos (Name_Space.markup (Type.class_space tsig) c); |
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
384 |
in c end; |
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
385 |
|
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
386 |
|
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
387 |
(* types *) |
24277 | 388 |
|
389 |
fun read_typ_mode mode ctxt s = |
|
24486 | 390 |
Syntax.read_typ (Type.set_mode mode ctxt) s; |
24277 | 391 |
|
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
392 |
val read_typ = read_typ_mode Type.mode_default; |
24277 | 393 |
val read_typ_syntax = read_typ_mode Type.mode_syntax; |
394 |
val read_typ_abbrev = read_typ_mode Type.mode_abbrev; |
|
395 |
||
396 |
||
397 |
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
|
398 |
Type.cert_typ_mode mode (tsig_of ctxt) T |
24277 | 399 |
handle TYPE (msg, _, _) => error msg; |
400 |
||
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
401 |
val cert_typ = cert_typ_mode Type.mode_default; |
24277 | 402 |
val cert_typ_syntax = cert_typ_mode Type.mode_syntax; |
403 |
val cert_typ_abbrev = cert_typ_mode Type.mode_abbrev; |
|
404 |
||
405 |
||
24388
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
406 |
|
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
407 |
(** prepare variables **) |
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents:
24371
diff
changeset
|
408 |
|
42488
4638622bcaa1
reorganized fixes as specialized (global) name space;
wenzelm
parents:
42469
diff
changeset
|
409 |
(* check Skolem constants *) |
7679 | 410 |
|
18678 | 411 |
fun no_skolem internal x = |
20086
94ca946fb689
adapted to more efficient Name/Variable implementation;
wenzelm
parents:
20049
diff
changeset
|
412 |
if can Name.dest_skolem x then |
18678 | 413 |
error ("Illegal reference to internal Skolem constant: " ^ quote x) |
20086
94ca946fb689
adapted to more efficient Name/Variable implementation;
wenzelm
parents:
20049
diff
changeset
|
414 |
else if not internal andalso can Name.dest_internal x then |
18678 | 415 |
error ("Illegal reference to internal variable: " ^ quote x) |
7679 | 416 |
else x; |
417 |
||
418 |
||
18187 | 419 |
|
5819 | 420 |
(** prepare terms and propositions **) |
421 |
||
25328 | 422 |
(* inferred types of parameters *) |
423 |
||
424 |
fun infer_type ctxt x = |
|
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36503
diff
changeset
|
425 |
Term.fastype_of (singleton (Syntax.check_terms (set_mode mode_schematic ctxt)) (Free x)); |
25328 | 426 |
|
427 |
fun inferred_param x ctxt = |
|
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36503
diff
changeset
|
428 |
let val T = infer_type ctxt (x, dummyT) |
28082
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
429 |
in (T, ctxt |> Variable.declare_term (Free (x, T))) end; |
25328 | 430 |
|
431 |
fun inferred_fixes ctxt = |
|
28082
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
432 |
let |
42488
4638622bcaa1
reorganized fixes as specialized (global) name space;
wenzelm
parents:
42469
diff
changeset
|
433 |
val xs = map #2 (Variable.dest_fixes ctxt); |
28082
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
434 |
val (Ts, ctxt') = fold_map inferred_param xs ctxt; |
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
435 |
in (xs ~~ Ts, ctxt') end; |
25328 | 436 |
|
437 |
||
438 |
(* type and constant names *) |
|
439 |
||
27821 | 440 |
local |
441 |
||
30573 | 442 |
val token_content = Syntax.read_token #>> Symbol_Pos.content; |
27821 | 443 |
|
35399
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
444 |
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
|
445 |
let |
48992 | 446 |
fun err msg = error (msg ^ Position.here pos); |
35399
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
447 |
val consts = consts_of ctxt; |
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
448 |
val t as Const (d, _) = |
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
449 |
(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
|
450 |
SOME d => |
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
451 |
Const (d, Consts.type_scheme (consts_of ctxt) d handle TYPE (msg, _, _) => err msg) |
42469 | 452 |
| NONE => Consts.read_const consts (c, pos)); |
35399
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
453 |
val _ = |
43794
49cbbe2768a8
sub-structural sharing after Syntax.check phase, with global interning of logical entities (the latter is relevant when bypassing default parsing via YXML);
wenzelm
parents:
43552
diff
changeset
|
454 |
if strict then ignore (Consts.the_const consts d) handle TYPE (msg, _, _) => err msg |
35399
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
455 |
else (); |
42467 | 456 |
val _ = Context_Position.report ctxt pos (Name_Space.markup (Consts.space_of consts) d); |
35399
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
457 |
in t end; |
27821 | 458 |
|
459 |
in |
|
25328 | 460 |
|
35399
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
461 |
fun read_type_name ctxt strict text = |
27821 | 462 |
let |
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
463 |
val tsig = tsig_of ctxt; |
35399
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
464 |
val (c, pos) = token_content text; |
27821 | 465 |
in |
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42287
diff
changeset
|
466 |
if Lexicon.is_tid c then |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
50126
diff
changeset
|
467 |
(Context_Position.report ctxt pos Markup.tfree; |
35680 | 468 |
TFree (c, default_sort ctxt (c, ~1))) |
27821 | 469 |
else |
470 |
let |
|
42359 | 471 |
val d = intern_type ctxt c; |
42468 | 472 |
val decl = Type.the_decl tsig (d, pos); |
48992 | 473 |
fun err () = error ("Bad type name: " ^ quote d ^ Position.here pos); |
35360
df2b2168e43a
clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents:
35262
diff
changeset
|
474 |
val args = |
df2b2168e43a
clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents:
35262
diff
changeset
|
475 |
(case decl of |
df2b2168e43a
clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents:
35262
diff
changeset
|
476 |
Type.LogicalType n => n |
df2b2168e43a
clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents:
35262
diff
changeset
|
477 |
| 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
|
478 |
| Type.Nonterminal => if strict then err () else 0); |
42467 | 479 |
val _ = Context_Position.report ctxt pos (Name_Space.markup (Type.type_space tsig) d); |
35360
df2b2168e43a
clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents:
35262
diff
changeset
|
480 |
in Type (d, replicate args dummyT) end |
27821 | 481 |
end; |
25328 | 482 |
|
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
483 |
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
|
484 |
(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
|
485 |
T as Type _ => T |
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
486 |
| 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
|
487 |
|
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
488 |
|
35399
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
489 |
fun read_const_proper ctxt strict = prep_const_proper ctxt strict o token_content; |
27821 | 490 |
|
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36503
diff
changeset
|
491 |
fun read_const ctxt strict ty text = |
36542
7cb6b40d19b2
read_const: disallow internal names as usual in visible Isar text;
wenzelm
parents:
36505
diff
changeset
|
492 |
let |
7cb6b40d19b2
read_const: disallow internal names as usual in visible Isar text;
wenzelm
parents:
36505
diff
changeset
|
493 |
val (c, pos) = token_content text; |
7cb6b40d19b2
read_const: disallow internal names as usual in visible Isar text;
wenzelm
parents:
36505
diff
changeset
|
494 |
val _ = no_skolem false c; |
7cb6b40d19b2
read_const: disallow internal names as usual in visible Isar text;
wenzelm
parents:
36505
diff
changeset
|
495 |
in |
42488
4638622bcaa1
reorganized fixes as specialized (global) name space;
wenzelm
parents:
42469
diff
changeset
|
496 |
(case (Variable.lookup_fixed ctxt c, Variable.is_const ctxt c) of |
27821 | 497 |
(SOME x, false) => |
39507
839873937ddd
tuned signature of (Context_)Position.report variants;
wenzelm
parents:
39441
diff
changeset
|
498 |
(Context_Position.report ctxt pos |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
50126
diff
changeset
|
499 |
(Markup.name x (if can Name.dest_skolem x then Markup.skolem else Markup.free)); |
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36503
diff
changeset
|
500 |
Free (x, infer_type ctxt (x, ty))) |
35399
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
35360
diff
changeset
|
501 |
| _ => prep_const_proper ctxt strict (c, pos)) |
27821 | 502 |
end; |
503 |
||
504 |
end; |
|
25328 | 505 |
|
506 |
||
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
507 |
(* type arities *) |
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
508 |
|
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
509 |
local |
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
510 |
|
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
511 |
fun prep_arity prep_tycon prep_sort ctxt (t, Ss, S) = |
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
512 |
let val arity = (prep_tycon ctxt t, map (prep_sort ctxt) Ss, prep_sort ctxt S) |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
513 |
in Type.add_arity (Context.pretty ctxt) arity (tsig_of ctxt); arity end; |
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
514 |
|
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
515 |
in |
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
516 |
|
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
517 |
val read_arity = |
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
518 |
prep_arity (fn ctxt => #1 o dest_Type o read_type_name_proper ctxt true) Syntax.read_sort; |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
519 |
|
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
520 |
val cert_arity = prep_arity (K I) (Type.cert_sort o tsig_of); |
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
521 |
|
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
522 |
end; |
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
523 |
|
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
46849
diff
changeset
|
524 |
|
42250
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
525 |
(* skolem variables *) |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
526 |
|
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
527 |
fun intern_skolem ctxt x = |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
528 |
let |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
529 |
val _ = no_skolem false x; |
42488
4638622bcaa1
reorganized fixes as specialized (global) name space;
wenzelm
parents:
42469
diff
changeset
|
530 |
val sko = Variable.lookup_fixed ctxt x; |
42250
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
531 |
val is_const = can (read_const_proper ctxt false) x orelse Long_Name.is_qualified x; |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
532 |
val is_declared = is_some (Variable.def_type ctxt false (x, ~1)); |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
533 |
in |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
534 |
if Variable.is_const ctxt x then NONE |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
535 |
else if is_some sko then sko |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
536 |
else if not is_const orelse is_declared then SOME x |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
537 |
else NONE |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
538 |
end; |
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
539 |
|
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
540 |
|
24684 | 541 |
(* read_term *) |
542 |
||
543 |
fun read_term_mode mode ctxt = Syntax.read_term (set_mode mode ctxt); |
|
544 |
||
545 |
val read_term_pattern = read_term_mode mode_pattern; |
|
546 |
val read_term_schematic = read_term_mode mode_schematic; |
|
547 |
val read_term_abbrev = read_term_mode mode_abbrev; |
|
548 |
||
549 |
||
19001 | 550 |
(* local abbreviations *) |
5819 | 551 |
|
24501 | 552 |
local |
553 |
||
42383
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
42381
diff
changeset
|
554 |
fun certify_consts ctxt = Consts.certify (Context.pretty ctxt) (tsig_of ctxt) |
27286 | 555 |
(not (abbrev_mode ctxt)) (consts_of ctxt); |
19001 | 556 |
|
38979
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
557 |
fun expand_binds ctxt = |
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
558 |
let |
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
559 |
val Mode {pattern, schematic, ...} = get_mode ctxt; |
5819 | 560 |
|
38979
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
561 |
fun reject_schematic (t as Var _) = |
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
562 |
error ("Unbound schematic variable: " ^ Syntax.string_of_term ctxt t) |
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
563 |
| reject_schematic (Abs (_, _, t)) = reject_schematic t |
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
564 |
| reject_schematic (t $ u) = (reject_schematic t; reject_schematic u) |
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
565 |
| reject_schematic _ = (); |
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
566 |
in |
24495 | 567 |
if pattern then I |
568 |
else Variable.expand_binds ctxt #> (if schematic then I else tap reject_schematic) |
|
569 |
end; |
|
5819 | 570 |
|
24501 | 571 |
in |
572 |
||
573 |
fun expand_abbrevs ctxt = certify_consts ctxt #> expand_binds ctxt; |
|
574 |
||
575 |
end; |
|
576 |
||
40879
ca132ef44944
configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents:
39557
diff
changeset
|
577 |
val show_abbrevs_raw = Config.declare "show_abbrevs" (fn _ => Config.Bool true); |
ca132ef44944
configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents:
39557
diff
changeset
|
578 |
val show_abbrevs = Config.bool show_abbrevs_raw; |
5819 | 579 |
|
24922 | 580 |
fun contract_abbrevs ctxt t = |
581 |
let |
|
582 |
val thy = theory_of ctxt; |
|
583 |
val consts = consts_of ctxt; |
|
584 |
val Mode {abbrev, ...} = get_mode ctxt; |
|
30566
9643f54c4184
reverted abbreviations: improved performance via Item_Net.T;
wenzelm
parents:
30473
diff
changeset
|
585 |
val retrieve = Consts.retrieve_abbrevs consts (print_mode_value () @ [""]); |
9643f54c4184
reverted abbreviations: improved performance via Item_Net.T;
wenzelm
parents:
30473
diff
changeset
|
586 |
fun match_abbrev u = Option.map #1 (get_first (Pattern.match_rew thy u) (retrieve u)); |
24922 | 587 |
in |
40879
ca132ef44944
configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents:
39557
diff
changeset
|
588 |
if abbrev orelse not (Config.get ctxt show_abbrevs) orelse not (can Term.type_of t) then t |
35211
5d2fe4e09354
Use top-down rewriting to contract abbreviations.
berghofe
parents:
35141
diff
changeset
|
589 |
else Pattern.rewrite_term_top thy [] [match_abbrev] t |
24922 | 590 |
end; |
591 |
||
592 |
||
24518 | 593 |
(* patterns *) |
594 |
||
32003 | 595 |
fun prepare_patternT ctxt T = |
596 |
let |
|
597 |
val Mode {pattern, schematic, ...} = get_mode ctxt; |
|
598 |
val _ = |
|
599 |
pattern orelse schematic orelse |
|
600 |
T |> Term.exists_subtype |
|
38979
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
601 |
(fn T as TVar (xi, _) => |
37145
01aa36932739
renamed structure TypeInfer to Type_Infer, keeping the old name as legacy alias for some time;
wenzelm
parents:
36610
diff
changeset
|
602 |
not (Type_Infer.is_param xi) andalso |
38979
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents:
38756
diff
changeset
|
603 |
error ("Illegal schematic type variable: " ^ Syntax.string_of_typ ctxt T) |
32003 | 604 |
| _ => false) |
605 |
in T end; |
|
24518 | 606 |
|
22712 | 607 |
|
24505 | 608 |
local |
6550 | 609 |
|
42360 | 610 |
val dummies = Config.bool (Config.declare "Proof_Context.dummies" (K (Config.Bool false))); |
27259 | 611 |
|
612 |
fun check_dummies ctxt t = |
|
39508
dfacdb01e1ec
simplified some internal flags using Config.T instead of full-blown Proof_Data;
wenzelm
parents:
39507
diff
changeset
|
613 |
if Config.get ctxt dummies then t |
27259 | 614 |
else Term.no_dummy_patterns t handle TERM _ => error "Illegal dummy pattern(s) in term"; |
615 |
||
24767 | 616 |
fun prepare_dummies ts = #1 (fold_map Term.replace_dummy_patterns ts 1); |
6762 | 617 |
|
27259 | 618 |
in |
6550 | 619 |
|
39508
dfacdb01e1ec
simplified some internal flags using Config.T instead of full-blown Proof_Data;
wenzelm
parents:
39507
diff
changeset
|
620 |
val allow_dummies = Config.put dummies true; |
24505 | 621 |
|
24684 | 622 |
fun prepare_patterns ctxt = |
24518 | 623 |
let val Mode {pattern, ...} = get_mode ctxt in |
39296 | 624 |
Type_Infer.fixate ctxt #> |
24767 | 625 |
pattern ? Variable.polymorphic ctxt #> |
24684 | 626 |
(map o Term.map_types) (prepare_patternT ctxt) #> |
27259 | 627 |
(if pattern then prepare_dummies else map (check_dummies ctxt)) |
24505 | 628 |
end; |
629 |
||
630 |
end; |
|
631 |
||
6550 | 632 |
|
42250
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
wenzelm
parents:
42242
diff
changeset
|
633 |
(* sort constraints *) |
27286 | 634 |
|
49674
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
635 |
local |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
636 |
|
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
637 |
fun prepare_sorts_env ctxt tys = |
27286 | 638 |
let |
35669
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents:
35616
diff
changeset
|
639 |
val tsig = tsig_of ctxt; |
45453 | 640 |
val defaultS = Type.defaultS tsig; |
27286 | 641 |
|
53673
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
642 |
val dummy_var = ("'_dummy_", ~1); |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
643 |
|
49685
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
644 |
fun constraint (xi, raw_S) env = |
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
645 |
let val (ps, S) = Term_Position.decode_positionS raw_S in |
53673
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
646 |
if xi = dummy_var orelse S = dummyS then env |
49685
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
647 |
else |
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
648 |
Vartab.insert (op =) (xi, Type.minimize_sort tsig S) env |
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
649 |
handle Vartab.DUP _ => |
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
650 |
error ("Inconsistent sort constraints for type variable " ^ |
49691 | 651 |
quote (Term.string_of_vname' xi) ^ Position.here_list ps) |
49685
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
652 |
end; |
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
653 |
|
45453 | 654 |
val env = |
655 |
(fold o fold_atyps) |
|
656 |
(fn TFree (x, S) => constraint ((x, ~1), S) |
|
657 |
| TVar v => constraint v |
|
658 |
| _ => I) tys Vartab.empty; |
|
36152 | 659 |
|
53673
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
660 |
fun get_sort xi raw_S = |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
661 |
if xi = dummy_var then |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
662 |
Type.minimize_sort tsig (#2 (Term_Position.decode_positionS raw_S)) |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
663 |
else |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
664 |
(case (Vartab.lookup env xi, Variable.def_sort ctxt xi) of |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
665 |
(NONE, NONE) => defaultS |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
666 |
| (NONE, SOME S) => S |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
667 |
| (SOME S, NONE) => S |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
668 |
| (SOME S, SOME S') => |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
669 |
if Type.eq_sort tsig (S, S') then S' |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
670 |
else |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
671 |
error ("Sort constraint " ^ Syntax.string_of_sort ctxt S ^ |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
672 |
" inconsistent with default " ^ Syntax.string_of_sort ctxt S' ^ |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
673 |
" for type variable " ^ quote (Term.string_of_vname' xi))); |
49674
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
674 |
|
49685
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
675 |
fun add_report S pos reports = |
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
676 |
if Position.is_reported pos andalso not (AList.defined (op =) reports pos) then |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
50126
diff
changeset
|
677 |
(pos, Position.reported_text pos Markup.sorting (Syntax.string_of_sort ctxt S)) :: reports |
49685
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
678 |
else reports; |
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents:
49674
diff
changeset
|
679 |
|
49691 | 680 |
fun get_sort_reports xi raw_S = |
681 |
let |
|
682 |
val ps = #1 (Term_Position.decode_positionS raw_S); |
|
53673
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
683 |
val S = get_sort xi raw_S handle ERROR msg => error (msg ^ Position.here_list ps); |
49691 | 684 |
in fold (add_report S) ps end; |
49674
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
685 |
|
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
686 |
val reports = |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
687 |
(fold o fold_atyps) |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
688 |
(fn T => |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
689 |
if Term_Position.is_positionT T then I |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
690 |
else |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
691 |
(case T of |
49691 | 692 |
TFree (x, raw_S) => get_sort_reports (x, ~1) raw_S |
693 |
| TVar (xi, raw_S) => get_sort_reports xi raw_S |
|
49674
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
694 |
| _ => I)) tys []; |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
695 |
|
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
696 |
in (implode (map #2 reports), get_sort) end; |
27286 | 697 |
|
49674
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
698 |
fun replace_sortsT get_sort = |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
699 |
map_atyps |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
700 |
(fn T => |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
701 |
if Term_Position.is_positionT T then T |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
702 |
else |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
703 |
(case T of |
53673
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
704 |
TFree (x, raw_S) => TFree (x, get_sort (x, ~1) raw_S) |
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
wenzelm
parents:
53380
diff
changeset
|
705 |
| TVar (xi, raw_S) => TVar (xi, get_sort xi raw_S) |
49674
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
706 |
| _ => T)); |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
707 |
|
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
708 |
in |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
709 |
|
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
710 |
fun prepare_sortsT ctxt tys = |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
711 |
let val (sorting_report, get_sort) = prepare_sorts_env ctxt tys |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
712 |
in (sorting_report, map (replace_sortsT get_sort) tys) end; |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
713 |
|
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
714 |
fun prepare_sorts ctxt tms = |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
715 |
let |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
716 |
val tys = rev ((fold o fold_types) cons tms []); |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
717 |
val (sorting_report, get_sort) = prepare_sorts_env ctxt tys; |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
718 |
in (sorting_report, (map o map_types) (replace_sortsT get_sort) tms) end; |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
719 |
|
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
720 |
fun check_tfree ctxt v = |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
721 |
let |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
722 |
val (sorting_report, [TFree a]) = prepare_sortsT ctxt [TFree v]; |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
723 |
val _ = Context_Position.if_visible ctxt Output.report sorting_report; |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
724 |
in a end; |
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
725 |
|
dbadb4d03cbc
report sort assignment of visible type variables;
wenzelm
parents:
48992
diff
changeset
|
726 |
end; |
36152 | 727 |
|
5819 | 728 |
|
729 |
(* certify terms *) |
|
730 |
||
10554 | 731 |
local |
732 |
||
24684 | 733 |
fun gen_cert prop ctxt t = |
734 |
t |
|
735 |
|> expand_abbrevs ctxt |
|
42383
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
42381
diff
changeset
|
736 |
|> (fn t' => |
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
42381
diff
changeset
|
737 |
#1 (Sign.certify' prop (Context.pretty ctxt) false (consts_of ctxt) (theory_of ctxt) t') |
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
42381
diff
changeset
|
738 |
handle TYPE (msg, _, _) => error msg | TERM (msg, _) => error msg); |
16501 | 739 |
|
10554 | 740 |
in |
8096 | 741 |
|
24684 | 742 |
val cert_term = gen_cert false; |
743 |
val cert_prop = gen_cert true; |
|
10554 | 744 |
|
745 |
end; |
|
5819 | 746 |
|
747 |
||
42405
13ecdb3057d8
split Type_Infer into early and late part, after Proof_Context;
wenzelm
parents:
42402
diff
changeset
|
748 |
(* check/uncheck *) |
22701 | 749 |
|
35616
b342390d296f
provide ProofContext.def_type depending on "pattern" mode;
wenzelm
parents:
35429
diff
changeset
|
750 |
fun def_type ctxt = |
b342390d296f
provide ProofContext.def_type depending on "pattern" mode;
wenzelm
parents:
35429
diff
changeset
|
751 |
let val Mode {pattern, ...} = get_mode ctxt |
b342390d296f
provide ProofContext.def_type depending on "pattern" mode;
wenzelm
parents:
35429
diff
changeset
|
752 |
in Variable.def_type ctxt pattern end; |
b342390d296f
provide ProofContext.def_type depending on "pattern" mode;
wenzelm
parents:
35429
diff
changeset
|
753 |
|
24518 | 754 |
fun standard_typ_check ctxt = |
45429 | 755 |
map (cert_typ_mode (Type.get_mode ctxt) ctxt #> prepare_patternT ctxt); |
24922 | 756 |
|
45429 | 757 |
val standard_term_check_finish = prepare_patterns; |
24518 | 758 |
|
45429 | 759 |
fun standard_term_uncheck ctxt = map (contract_abbrevs ctxt); |
22701 | 760 |
|
761 |
||
9553 | 762 |
|
21610 | 763 |
(** export results **) |
21531 | 764 |
|
20310 | 765 |
fun common_export is_goal inner outer = |
766 |
map (Assumption.export is_goal inner outer) #> |
|
767 |
Variable.export inner outer; |
|
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
768 |
|
20310 | 769 |
val goal_export = common_export true; |
770 |
val export = common_export false; |
|
12704 | 771 |
|
21531 | 772 |
fun export_morphism inner outer = |
773 |
Assumption.export_morphism inner outer $> |
|
774 |
Variable.export_morphism inner outer; |
|
775 |
||
28396 | 776 |
fun norm_export_morphism inner outer = |
777 |
export_morphism inner outer $> |
|
54883
dd04a8b654fc
proper context for norm_hhf and derived operations;
wenzelm
parents:
54742
diff
changeset
|
778 |
Morphism.thm_morphism "Proof_Context.norm_export" (Goal.norm_result outer); |
28396 | 779 |
|
21531 | 780 |
|
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
781 |
|
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30723
diff
changeset
|
782 |
(** term bindings **) |
5819 | 783 |
|
8096 | 784 |
(* simult_matches *) |
785 |
||
19867 | 786 |
fun simult_matches ctxt (t, pats) = |
787 |
(case Seq.pull (Unify.matchers (theory_of ctxt) (map (rpair t) pats)) of |
|
788 |
NONE => error "Pattern match failed!" |
|
32032 | 789 |
| SOME (env, _) => Vartab.fold (fn (v, (_, t)) => cons (v, t)) (Envir.term_env env) []); |
8096 | 790 |
|
791 |
||
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30723
diff
changeset
|
792 |
(* bind_terms *) |
7925 | 793 |
|
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30723
diff
changeset
|
794 |
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
|
795 |
ctxt |
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30723
diff
changeset
|
796 |
|> Variable.bind_term (xi, Option.map (cert_term (set_mode mode_default ctxt)) t)); |
5819 | 797 |
|
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30723
diff
changeset
|
798 |
|
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30723
diff
changeset
|
799 |
(* auto_bind *) |
10810 | 800 |
|
20330 | 801 |
fun drop_schematic (b as (xi, SOME t)) = if Term.exists_subterm is_Var t then (xi, NONE) else b |
10554 | 802 |
| drop_schematic b = b; |
803 |
||
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30723
diff
changeset
|
804 |
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
|
805 |
|
33386 | 806 |
val auto_bind_goal = auto_bind Auto_Bind.goal; |
807 |
val auto_bind_facts = auto_bind Auto_Bind.facts; |
|
7925 | 808 |
|
5819 | 809 |
|
8096 | 810 |
(* match_bind(_i) *) |
5819 | 811 |
|
8096 | 812 |
local |
813 |
||
24684 | 814 |
fun gen_bind prep_terms gen raw_binds ctxt = |
5819 | 815 |
let |
24684 | 816 |
fun prep_bind (raw_pats, t) ctxt1 = |
817 |
let |
|
818 |
val T = Term.fastype_of t; |
|
819 |
val ctxt2 = Variable.declare_term t ctxt1; |
|
820 |
val pats = prep_terms (set_mode mode_pattern ctxt2) T raw_pats; |
|
821 |
val binds = simult_matches ctxt2 (t, pats); |
|
822 |
in (binds, ctxt2) end; |
|
7670 | 823 |
|
24686 | 824 |
val ts = prep_terms ctxt dummyT (map snd raw_binds); |
825 |
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
|
826 |
val binds' = |
19916
3bbb9cc5d4f1
export: simultaneous facts, refer to Variable.export;
wenzelm
parents:
19897
diff
changeset
|
827 |
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
|
828 |
else binds; |
15531 | 829 |
val binds'' = map (apsnd SOME) binds'; |
18310 | 830 |
val ctxt'' = |
19897
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
wenzelm
parents:
19882
diff
changeset
|
831 |
tap (Variable.warn_extra_tfrees ctxt) |
18310 | 832 |
(if gen then |
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30723
diff
changeset
|
833 |
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
|
834 |
else ctxt' |> bind_terms binds''); |
18310 | 835 |
in (ts, ctxt'') end; |
8096 | 836 |
|
837 |
in |
|
5935 | 838 |
|
24684 | 839 |
fun read_terms ctxt T = |
39288 | 840 |
map (Syntax.parse_term ctxt #> Type.constraint T) #> Syntax.check_terms ctxt; |
24684 | 841 |
|
842 |
val match_bind = gen_bind read_terms; |
|
843 |
val match_bind_i = gen_bind (fn ctxt => fn _ => map (cert_term ctxt)); |
|
8096 | 844 |
|
845 |
end; |
|
5935 | 846 |
|
847 |
||
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
848 |
(* propositions with patterns *) |
5935 | 849 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
850 |
local |
8096 | 851 |
|
45327 | 852 |
fun prep_propp mode prep_props args context = |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
853 |
let |
19585 | 854 |
fun prep (_, raw_pats) (ctxt, prop :: props) = |
24684 | 855 |
let val ctxt' = Variable.declare_term prop ctxt |
856 |
in ((prop, prep_props (set_mode mode_pattern ctxt') raw_pats), (ctxt', props)) end; |
|
857 |
||
45327 | 858 |
val (propp, (context', _)) = |
859 |
(fold_map o fold_map) prep args |
|
860 |
(context, prep_props (set_mode mode context) (maps (map fst) args)); |
|
861 |
in (propp, context') end; |
|
5935 | 862 |
|
45327 | 863 |
fun gen_bind_propp mode parse_prop raw_args ctxt = |
8096 | 864 |
let |
45327 | 865 |
val (args, ctxt') = prep_propp mode parse_prop raw_args ctxt; |
19585 | 866 |
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
|
867 |
val propss = map (map #1) args; |
45330
93b8e30a5d1f
more general Proof_Context.bind_propp, which allows outer parameters;
wenzelm
parents:
45327
diff
changeset
|
868 |
fun gen_binds ctxt0 = ctxt0 |
93b8e30a5d1f
more general Proof_Context.bind_propp, which allows outer parameters;
wenzelm
parents:
45327
diff
changeset
|
869 |
|> bind_terms (map #1 binds ~~ |
93b8e30a5d1f
more general Proof_Context.bind_propp, which allows outer parameters;
wenzelm
parents:
45327
diff
changeset
|
870 |
map (SOME o Term.close_schematic_term) (Variable.export_terms ctxt' ctxt0 (map #2 binds))); |
45327 | 871 |
in ((propss, gen_binds), ctxt' |> bind_terms (map (apsnd SOME) binds)) end; |
8096 | 872 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
873 |
in |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
874 |
|
24684 | 875 |
val read_propp = prep_propp mode_default Syntax.read_props; |
876 |
val cert_propp = prep_propp mode_default (map o cert_prop); |
|
877 |
val read_propp_schematic = prep_propp mode_schematic Syntax.read_props; |
|
878 |
val cert_propp_schematic = prep_propp mode_schematic (map o cert_prop); |
|
10554 | 879 |
|
24684 | 880 |
val bind_propp = gen_bind_propp mode_default Syntax.read_props; |
881 |
val bind_propp_i = gen_bind_propp mode_default (map o cert_prop); |
|
882 |
val bind_propp_schematic = gen_bind_propp mode_schematic Syntax.read_props; |
|
883 |
val bind_propp_schematic_i = gen_bind_propp mode_schematic (map o cert_prop); |
|
6789 | 884 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
885 |
end; |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
886 |
|
6789 | 887 |
|
5819 | 888 |
|
889 |
(** theorems **) |
|
890 |
||
18042 | 891 |
(* fact_tac *) |
892 |
||
52223
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
893 |
local |
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
894 |
|
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
895 |
fun comp_hhf_tac th i st = |
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
896 |
PRIMSEQ (Thm.bicompose {flatten = true, match = false, incremented = true} |
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
897 |
(false, Drule.lift_all (Thm.cprem_of st i) th, 0) i) st; |
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
898 |
|
27867 | 899 |
fun comp_incr_tac [] _ = no_tac |
900 |
| comp_incr_tac (th :: ths) i = |
|
52223
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
901 |
(fn st => comp_hhf_tac (Drule.incr_indexes st th) i st) APPEND comp_incr_tac ths i; |
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
902 |
|
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
903 |
in |
18042 | 904 |
|
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
905 |
fun fact_tac ctxt facts = Goal.norm_hhf_tac ctxt THEN' comp_incr_tac facts; |
18122 | 906 |
|
27867 | 907 |
fun potential_facts ctxt prop = |
908 |
Facts.could_unify (facts_of ctxt) (Term.strip_all_body prop); |
|
909 |
||
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
910 |
fun some_fact_tac ctxt = SUBGOAL (fn (goal, i) => fact_tac ctxt (potential_facts ctxt goal) i); |
18042 | 911 |
|
52223
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
912 |
end; |
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
wenzelm
parents:
52156
diff
changeset
|
913 |
|
18042 | 914 |
|
6091 | 915 |
(* get_thm(s) *) |
5819 | 916 |
|
26361 | 917 |
local |
918 |
||
26687 | 919 |
fun retrieve_thms pick ctxt (Facts.Fact s) = |
16501 | 920 |
let |
46849 | 921 |
val pos = Syntax.read_token_pos s; |
42502 | 922 |
val prop = |
923 |
Syntax.read_prop (ctxt |> set_mode mode_default |> allow_dummies) s |
|
24511
69d270cc7e4f
removed obsolete read/cert variations (cf. Syntax.read/check);
wenzelm
parents:
24505
diff
changeset
|
924 |
|> singleton (Variable.polymorphic ctxt); |
48992 | 925 |
fun err msg = error (msg ^ Position.here pos ^ ":\n" ^ Syntax.string_of_term ctxt prop); |
27867 | 926 |
|
42502 | 927 |
val (prop', _) = Term.replace_dummy_patterns prop (Variable.maxidx_of ctxt + 1); |
27867 | 928 |
fun prove_fact th = |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
929 |
Goal.prove ctxt [] [] prop' (K (ALLGOALS (fact_tac ctxt [th]))); |
42502 | 930 |
val results = map_filter (try prove_fact) (potential_facts ctxt prop'); |
27867 | 931 |
val res = |
42502 | 932 |
(case distinct Thm.eq_thm_prop results of |
933 |
[res] => res |
|
934 |
| [] => err "Failed to retrieve literal fact" |
|
935 |
| _ => err "Ambiguous specification of literal fact"); |
|
27867 | 936 |
in pick "" [res] end |
26687 | 937 |
| retrieve_thms pick ctxt xthmref = |
18042 | 938 |
let |
939 |
val thy = theory_of ctxt; |
|
26284 | 940 |
val local_facts = facts_of ctxt; |
26673 | 941 |
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
|
942 |
val name = Facts.name_of_ref thmref; |
27821 | 943 |
val pos = Facts.pos_of_ref xthmref; |
24012 | 944 |
val thms = |
945 |
if name = "" then [Thm.transfer thy Drule.dummy_thm] |
|
946 |
else |
|
26393 | 947 |
(case Facts.lookup (Context.Proof ctxt) local_facts name of |
39507
839873937ddd
tuned signature of (Context_)Position.report variants;
wenzelm
parents:
39441
diff
changeset
|
948 |
SOME (_, ths) => |
42378 | 949 |
(Context_Position.report ctxt pos |
42379 | 950 |
(Name_Space.markup (Facts.space_of local_facts) name); |
42378 | 951 |
map (Thm.transfer thy) (Facts.select thmref ths)) |
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39508
diff
changeset
|
952 |
| NONE => Global_Theory.get_fact (Context.Proof ctxt) thy xthmref); |
24012 | 953 |
in pick name thms end; |
5819 | 954 |
|
26361 | 955 |
in |
26346
17debd2fff8e
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
956 |
|
26687 | 957 |
val get_fact = retrieve_thms (K I); |
958 |
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
|
959 |
|
26361 | 960 |
fun get_thms ctxt = get_fact ctxt o Facts.named; |
961 |
fun get_thm ctxt = get_fact_single ctxt o Facts.named; |
|
962 |
||
963 |
end; |
|
5819 | 964 |
|
965 |
||
26284 | 966 |
(* facts *) |
5819 | 967 |
|
28082
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
968 |
local |
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
969 |
|
28965 | 970 |
fun update_thms _ (b, NONE) ctxt = ctxt |> map_facts (Facts.del (full_name ctxt b)) |
49747 | 971 |
| update_thms flags (b, SOME ths) ctxt = ctxt |> map_facts |
972 |
(Facts.add_static (Context.Proof ctxt) flags (b, ths) #> snd); |
|
5819 | 973 |
|
30761
ac7570d80c3d
renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents:
30758
diff
changeset
|
974 |
in |
ac7570d80c3d
renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents:
30758
diff
changeset
|
975 |
|
46775
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
45666
diff
changeset
|
976 |
fun note_thmss kind = fold_map (fn ((b, more_atts), raw_facts) => fn ctxt => |
5819 | 977 |
let |
28965 | 978 |
val name = full_name ctxt b; |
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39508
diff
changeset
|
979 |
val facts = Global_Theory.name_thmss false name raw_facts; |
46775
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
45666
diff
changeset
|
980 |
fun app (ths, atts) = |
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
45666
diff
changeset
|
981 |
fold_map (Thm.proof_attributes (surround (Thm.kind kind) (atts @ more_atts))) ths; |
21443
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
wenzelm
parents:
21370
diff
changeset
|
982 |
val (res, ctxt') = fold_map app facts ctxt; |
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39508
diff
changeset
|
983 |
val thms = Global_Theory.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
|
984 |
val Mode {stmt, ...} = get_mode ctxt; |
49747 | 985 |
in ((name, thms), ctxt' |> update_thms {strict = false, index = stmt} (b, SOME thms)) end); |
12711 | 986 |
|
49747 | 987 |
fun put_thms index thms ctxt = ctxt |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
988 |
|> map_naming (K Name_Space.local_naming) |
33383 | 989 |
|> Context_Position.set_visible false |
49747 | 990 |
|> update_thms {strict = false, index = index} (apfst Binding.name thms) |
33383 | 991 |
|> Context_Position.restore_visible ctxt |
28417 | 992 |
|> restore_naming ctxt; |
28082
37350f301128
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
993 |
|
12711 | 994 |
end; |
9196 | 995 |
|
5819 | 996 |
|
997 |
||
35680 | 998 |
(** basic logical entities **) |
17360
fa1f262dbc4e
added add_view, export_view (supercedes adhoc view arguments);
wenzelm
parents:
17221
diff
changeset
|
999 |
|
8096 | 1000 |
(* variables *) |
1001 |
||
19897
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
wenzelm
parents:
19882
diff
changeset
|
1002 |
fun declare_var (x, opt_T, mx) ctxt = |
42287
d98eb048a2e4
discontinued special treatment of structure Mixfix;
wenzelm
parents:
42267
diff
changeset
|
1003 |
let val T = (case opt_T of SOME T => T | NONE => Mixfix.mixfixT mx) |
20163 | 1004 |
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
|
1005 |
|
10381 | 1006 |
local |
1007 |
||
25353
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents:
25345
diff
changeset
|
1008 |
fun prep_vars prep_typ internal = |
35129 | 1009 |
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
|
1010 |
let |
42494 | 1011 |
val x = Variable.check_name b; |
50239 | 1012 |
val _ = Symbol_Pos.is_identifier (no_skolem internal x) orelse |
42381
309ec68442c6
added Binding.print convenience, which includes quote already;
wenzelm
parents:
42379
diff
changeset
|
1013 |
error ("Illegal variable name: " ^ Binding.print b); |
12504 | 1014 |
|
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
1015 |
fun cond_tvars T = |
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
1016 |
if internal then T |
18678 | 1017 |
else Type.no_tvars T handle TYPE (msg, _, _) => error msg; |
24277 | 1018 |
val opt_T = Option.map (cond_tvars o cert_typ ctxt o prep_typ ctxt) raw_T; |
35129 | 1019 |
val (_, ctxt') = ctxt |> declare_var (x, opt_T, mx); |
1020 |
in ((b, opt_T, mx), ctxt') end); |
|
8096 | 1021 |
|
10381 | 1022 |
in |
1023 |
||
45427
fca432074fb2
sort assignment before simultaneous term_check, not isolated parse_term;
wenzelm
parents:
45330
diff
changeset
|
1024 |
val read_vars = prep_vars Syntax.read_typ false; |
25353
17f04d987f37
removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents:
25345
diff
changeset
|
1025 |
val cert_vars = prep_vars (K I) true; |
8096 | 1026 |
|
10381 | 1027 |
end; |
1028 |
||
8096 | 1029 |
|
21744 | 1030 |
(* notation *) |
1031 |
||
24949 | 1032 |
local |
1033 |
||
35429
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35412
diff
changeset
|
1034 |
fun type_syntax (Type (c, args), mx) = |
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42287
diff
changeset
|
1035 |
SOME (Local_Syntax.Type, (Lexicon.mark_type c, Mixfix.make_type (length args), mx)) |
35412
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1036 |
| type_syntax _ = NONE; |
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1037 |
|
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1038 |
fun const_syntax _ (Free (x, T), mx) = SOME (Local_Syntax.Fixed, (x, T, mx)) |
24949 | 1039 |
| const_syntax ctxt (Const (c, _), mx) = |
35255 | 1040 |
(case try (Consts.type_scheme (consts_of ctxt)) c of |
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42287
diff
changeset
|
1041 |
SOME T => SOME (Local_Syntax.Const, (Lexicon.mark_const c, T, mx)) |
35255 | 1042 |
| NONE => NONE) |
24949 | 1043 |
| const_syntax _ _ = NONE; |
1044 |
||
35412
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1045 |
fun gen_notation syntax add mode args ctxt = |
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1046 |
ctxt |> map_syntax |
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1047 |
(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
|
1048 |
|
24949 | 1049 |
in |
21744 | 1050 |
|
35412
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1051 |
val type_notation = gen_notation (K type_syntax); |
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1052 |
val notation = gen_notation const_syntax; |
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1053 |
|
47247 | 1054 |
fun generic_type_notation add mode args phi = |
35412
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1055 |
let |
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1056 |
val args' = args |> map_filter (fn (T, mx) => |
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1057 |
let |
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1058 |
val T' = Morphism.typ phi T; |
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1059 |
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
|
1060 |
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
|
1061 |
in Context.mapping (Sign.type_notation add mode args') (type_notation add mode args') end; |
24949 | 1062 |
|
47247 | 1063 |
fun generic_notation add mode args phi = |
33537
06c87d2c5b5a
locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents:
33519
diff
changeset
|
1064 |
let |
06c87d2c5b5a
locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents:
33519
diff
changeset
|
1065 |
val args' = args |> map_filter (fn (t, mx) => |
06c87d2c5b5a
locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents:
33519
diff
changeset
|
1066 |
let val t' = Morphism.term phi t |
06c87d2c5b5a
locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents:
33519
diff
changeset
|
1067 |
in if Term.aconv_untyped (t, t') then SOME (t', mx) else NONE end); |
24949 | 1068 |
in Context.mapping (Sign.notation add mode args') (notation add mode args') end; |
1069 |
||
35680 | 1070 |
end; |
35412
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
wenzelm
parents:
35399
diff
changeset
|
1071 |
|
35680 | 1072 |
|
1073 |
(* aliases *) |
|
1074 |
||
36450 | 1075 |
fun class_alias b c ctxt = (map_tsig o apfst) (Type.class_alias (naming_of ctxt) b c) ctxt; |
1076 |
fun type_alias b c ctxt = (map_tsig o apfst) (Type.type_alias (naming_of ctxt) b c) ctxt; |
|
35680 | 1077 |
fun const_alias b c ctxt = (map_consts o apfst) (Consts.alias (naming_of ctxt) b c) ctxt; |
21744 | 1078 |
|
1079 |
||
24767 | 1080 |
(* local constants *) |
1081 |
||
1082 |
fun add_const_constraint (c, opt_T) ctxt = |
|
1083 |
let |
|
1084 |
fun prepT raw_T = |
|
1085 |
let val T = cert_typ ctxt raw_T |
|
1086 |
in cert_term ctxt (Const (c, T)); T end; |
|
25039 | 1087 |
in ctxt |> (map_consts o apfst) (Consts.constrain (c, Option.map prepT opt_T)) end; |
19001 | 1088 |
|
33173
b8ca12f6681a
eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents:
33165
diff
changeset
|
1089 |
fun add_abbrev mode (b, raw_t) ctxt = |
19001 | 1090 |
let |
24675
2be1253a20d3
removed obsolete set_expand_abbrevs (superceded by mode_abbrev);
wenzelm
parents:
24612
diff
changeset
|
1091 |
val t0 = cert_term (ctxt |> set_mode mode_abbrev) raw_t |
42381
309ec68442c6
added Binding.print convenience, which includes quote already;
wenzelm
parents:
42379
diff
changeset
|
1092 |
handle ERROR msg => cat_error msg ("in constant abbreviation " ^ Binding.print b); |
20008
8d9d770e1f06
add_abbrevs/polymorphic: Variable.exportT_terms avoids over-generalization;
wenzelm
parents:
19916
diff
changeset
|
1093 |
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
|
1094 |
val ((lhs, rhs), consts') = consts_of ctxt |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
1095 |
|> Consts.abbreviate (Context.Proof ctxt) (tsig_of ctxt) mode (b, t); |
19001 | 1096 |
in |
1097 |
ctxt |
|
25039 | 1098 |
|> (map_consts o apfst) (K consts') |
21803 | 1099 |
|> Variable.declare_term rhs |
1100 |
|> pair (lhs, rhs) |
|
21704 | 1101 |
end; |
19001 | 1102 |
|
25052 | 1103 |
fun revert_abbrev mode c = (map_consts o apfst) (Consts.revert_abbrev mode c); |
1104 |
||
47275 | 1105 |
fun generic_add_abbrev mode arg = |
1106 |
Context.mapping_result (Sign.add_abbrev mode arg) (add_abbrev mode arg); |
|
1107 |
||
1108 |
fun generic_revert_abbrev mode arg = |
|
1109 |
Context.mapping (Sign.revert_abbrev mode arg) (revert_abbrev mode arg); |
|
1110 |
||
19001 | 1111 |
|
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
1112 |
(* fixes *) |
5819 | 1113 |
|
30763
6976521b4263
renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents:
30761
diff
changeset
|
1114 |
fun add_fixes raw_vars ctxt = |
8096 | 1115 |
let |
42491
4bb5de0aae66
more precise position information via Variable.add_fixes_binding;
wenzelm
parents:
42488
diff
changeset
|
1116 |
val thy = theory_of ctxt; |
4bb5de0aae66
more precise position information via Variable.add_fixes_binding;
wenzelm
parents:
42488
diff
changeset
|
1117 |
val vars = #1 (cert_vars raw_vars ctxt); |
4bb5de0aae66
more precise position information via Variable.add_fixes_binding;
wenzelm
parents:
42488
diff
changeset
|
1118 |
in |
4bb5de0aae66
more precise position information via Variable.add_fixes_binding;
wenzelm
parents:
42488
diff
changeset
|
1119 |
ctxt |
4bb5de0aae66
more precise position information via Variable.add_fixes_binding;
wenzelm
parents:
42488
diff
changeset
|
1120 |
|> Variable.add_fixes_binding (map #1 vars) |
4bb5de0aae66
more precise position information via Variable.add_fixes_binding;
wenzelm
parents:
42488
diff
changeset
|
1121 |
|-> (fn xs => |
4bb5de0aae66
more precise position information via Variable.add_fixes_binding;
wenzelm
parents:
42488
diff
changeset
|
1122 |
fold_map declare_var (map2 (fn x => fn (_, T, mx) => (x, T, mx)) xs vars) |
4bb5de0aae66
more precise position information via Variable.add_fixes_binding;
wenzelm
parents:
42488
diff
changeset
|
1123 |
#-> (map_syntax o Local_Syntax.add_syntax thy o map (pair Local_Syntax.Fixed)) |
4bb5de0aae66
more precise position information via Variable.add_fixes_binding;
wenzelm
parents:
42488
diff
changeset
|
1124 |
#> pair xs) |
4bb5de0aae66
more precise position information via Variable.add_fixes_binding;
wenzelm
parents:
42488
diff
changeset
|
1125 |
end; |
5819 | 1126 |
|
9291
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1127 |
|
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1128 |
|
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
1129 |
(** assumptions **) |
18187 | 1130 |
|
20209 | 1131 |
local |
1132 |
||
1133 |
fun gen_assms prepp exp args ctxt = |
|
1134 |
let |
|
20234
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents:
20209
diff
changeset
|
1135 |
val cert = Thm.cterm_of (theory_of ctxt); |
45327 | 1136 |
val ((propss, _), ctxt1) = prepp (map snd args) ctxt; |
20234
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents:
20209
diff
changeset
|
1137 |
val _ = Variable.warn_extra_tfrees ctxt ctxt1; |
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents:
20209
diff
changeset
|
1138 |
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
|
1139 |
in |
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents:
20209
diff
changeset
|
1140 |
ctxt2 |
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents:
20209
diff
changeset
|
1141 |
|> auto_bind_facts (flat propss) |
33644
5266a72e0889
eliminated slightly odd (unused) "axiom" and "assumption" -- collapsed to unspecific "";
wenzelm
parents:
33537
diff
changeset
|
1142 |
|> 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
|
1143 |
end; |
20209 | 1144 |
|
1145 |
in |
|
1146 |
||
45327 | 1147 |
val add_assms = gen_assms bind_propp; |
1148 |
val add_assms_i = gen_assms bind_propp_i; |
|
20209 | 1149 |
|
1150 |
end; |
|
1151 |
||
1152 |
||
5819 | 1153 |
|
8373
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1154 |
(** cases **) |
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1155 |
|
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1156 |
fun dest_cases ctxt = |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1157 |
Symtab.fold (fn (a, (c, i)) => cons (i, (a, c))) (#2 (cases_of ctxt)) [] |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1158 |
|> sort (int_ord o pairself #1) |> map #2; |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1159 |
|
16147 | 1160 |
local |
1161 |
||
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1162 |
fun update_case _ _ ("", _) res = res |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1163 |
| update_case _ _ (name, NONE) ((space, tab), index) = |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1164 |
let |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1165 |
val tab' = Symtab.delete_safe name tab; |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1166 |
in ((space, tab'), index) end |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1167 |
| update_case context is_proper (name, SOME c) (cases, index) = |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1168 |
let |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1169 |
val (_, cases') = cases |> Name_Space.define context false |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1170 |
(Binding.make (name, Position.none), ((c, is_proper), index)); |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1171 |
val index' = index + 1; |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1172 |
in (cases', index') end; |
18609 | 1173 |
|
42501
2b8c34f53388
eliminated slightly odd Proof_Context.bind_fixes;
wenzelm
parents:
42496
diff
changeset
|
1174 |
fun fix (b, T) ctxt = |
2b8c34f53388
eliminated slightly odd Proof_Context.bind_fixes;
wenzelm
parents:
42496
diff
changeset
|
1175 |
let val ([x], ctxt') = add_fixes [(b, SOME T, NoSyn)] ctxt |
2b8c34f53388
eliminated slightly odd Proof_Context.bind_fixes;
wenzelm
parents:
42496
diff
changeset
|
1176 |
in (Free (x, T), ctxt') end; |
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
1177 |
|
16147 | 1178 |
in |
1179 |
||
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1180 |
fun update_cases is_proper args ctxt = |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1181 |
let |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1182 |
val context = Context.Proof ctxt |> Name_Space.map_naming (K Name_Space.default_naming); |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1183 |
val cases = cases_of ctxt; |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1184 |
val index = Symtab.fold (fn _ => Integer.add 1) (#2 cases) 0; |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1185 |
val (cases', _) = fold (update_case context is_proper) args (cases, index); |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1186 |
in map_cases (K cases') ctxt end; |
18609 | 1187 |
|
1188 |
fun case_result c ctxt = |
|
1189 |
let |
|
33368 | 1190 |
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
|
1191 |
val (ts, ctxt') = ctxt |> fold_map fix fixes; |
33368 | 1192 |
val Rule_Cases.Case {assumes, binds, cases, ...} = Rule_Cases.apply ts c; |
18609 | 1193 |
in |
1194 |
ctxt' |
|
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30723
diff
changeset
|
1195 |
|> bind_terms (map drop_schematic binds) |
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1196 |
|> update_cases true (map (apsnd SOME) cases) |
18609 | 1197 |
|> pair (assumes, (binds, cases)) |
1198 |
end; |
|
1199 |
||
1200 |
val apply_case = apfst fst oo case_result; |
|
1201 |
||
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1202 |
fun check_case ctxt (name, pos) fxs = |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1203 |
let |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1204 |
val (_, ((Rule_Cases.Case {fixes, assumes, binds, cases}, _), _)) = |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1205 |
Name_Space.check (Context.Proof ctxt) (cases_of ctxt) (name, pos); |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1206 |
|
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1207 |
fun replace (opt_x :: xs) ((y, T) :: ys) = (the_default y opt_x, T) :: replace xs ys |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1208 |
| replace [] ys = ys |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1209 |
| replace (_ :: _) [] = |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1210 |
error ("Too many parameters for case " ^ quote name ^ Position.here pos); |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1211 |
val fixes' = replace fxs fixes; |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1212 |
val binds' = map drop_schematic binds; |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1213 |
in |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1214 |
if null (fold (Term.add_tvarsT o snd) fixes []) andalso |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1215 |
null (fold (fold Term.add_vars o snd) assumes []) then |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1216 |
Rule_Cases.Case {fixes = fixes', assumes = assumes, binds = binds', cases = cases} |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1217 |
else error ("Illegal schematic variable(s) in case " ^ quote name ^ Position.here pos) |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1218 |
end; |
8373
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1219 |
|
16147 | 1220 |
end; |
8373
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1221 |
|
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1222 |
|
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1223 |
|
10810 | 1224 |
(** print context information **) |
1225 |
||
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
1226 |
(* local syntax *) |
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
1227 |
|
12093 | 1228 |
val print_syntax = Syntax.print_syntax o syn_of; |
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
1229 |
|
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
1230 |
|
21728 | 1231 |
(* abbreviations *) |
18971 | 1232 |
|
21728 | 1233 |
fun pretty_abbrevs show_globals ctxt = |
18971 | 1234 |
let |
25052 | 1235 |
val ((space, consts), (_, globals)) = |
45650 | 1236 |
pairself (#constants o Consts.dest) (#consts (rep_data ctxt)); |
21803 | 1237 |
fun add_abbr (_, (_, NONE)) = I |
25406 | 1238 |
| add_abbr (c, (T, SOME t)) = |
21728 | 1239 |
if not show_globals andalso Symtab.defined globals c then I |
1240 |
else cons (c, Logic.mk_equals (Const (c, T), t)); |
|
42358
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents:
42357
diff
changeset
|
1241 |
val abbrevs = |
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents:
42357
diff
changeset
|
1242 |
Name_Space.extern_table ctxt (space, Symtab.make (Symtab.fold add_abbr consts [])); |
18971 | 1243 |
in |
35141 | 1244 |
if null abbrevs then [] |
21728 | 1245 |
else [Pretty.big_list "abbreviations:" (map (pretty_term_abbrev ctxt o #2) abbrevs)] |
18971 | 1246 |
end; |
1247 |
||
21728 | 1248 |
val print_abbrevs = Pretty.writeln o Pretty.chunks o pretty_abbrevs true; |
1249 |
||
18971 | 1250 |
|
10810 | 1251 |
(* term bindings *) |
1252 |
||
16540 | 1253 |
fun pretty_binds ctxt = |
10810 | 1254 |
let |
19897
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
wenzelm
parents:
19882
diff
changeset
|
1255 |
val binds = Variable.binds_of ctxt; |
21728 | 1256 |
fun prt_bind (xi, (T, t)) = pretty_term_abbrev ctxt (Logic.mk_equals (Var (xi, T), t)); |
10810 | 1257 |
in |
35141 | 1258 |
if Vartab.is_empty binds then [] |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
1259 |
else [Pretty.big_list "term bindings:" (map prt_bind (Vartab.dest binds))] |
10810 | 1260 |
end; |
1261 |
||
1262 |
val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds; |
|
1263 |
||
1264 |
||
1265 |
(* local theorems *) |
|
1266 |
||
16540 | 1267 |
fun pretty_lthms ctxt = |
20012 | 1268 |
let |
26284 | 1269 |
val local_facts = facts_of ctxt; |
1270 |
val props = Facts.props local_facts; |
|
26673 | 1271 |
val facts = |
35141 | 1272 |
(if null props then [] else [("<unnamed>", props)]) @ |
28212 | 1273 |
Facts.dest_static [] local_facts; |
20012 | 1274 |
in |
35141 | 1275 |
if null facts then [] |
28212 | 1276 |
else [Pretty.big_list "facts:" (map #1 (sort_wrt (#1 o #2) (map (`(pretty_fact ctxt)) facts)))] |
20012 | 1277 |
end; |
10810 | 1278 |
|
12057 | 1279 |
val print_lthms = Pretty.writeln o Pretty.chunks o pretty_lthms; |
10810 | 1280 |
|
1281 |
||
1282 |
(* local contexts *) |
|
1283 |
||
26722 | 1284 |
local |
1285 |
||
1286 |
fun pretty_case (name, (fixes, ((asms, (lets, cs)), ctxt))) = |
|
10810 | 1287 |
let |
24922 | 1288 |
val prt_term = Syntax.pretty_term ctxt; |
12057 | 1289 |
|
10810 | 1290 |
fun prt_let (xi, t) = Pretty.block |
10818 | 1291 |
[Pretty.quote (prt_term (Var (xi, Term.fastype_of t))), Pretty.str " =", Pretty.brk 1, |
10810 | 1292 |
Pretty.quote (prt_term t)]; |
1293 |
||
53380
08f3491c50bf
cases: formal binding of 'assumes', with position provided via invoke_case;
wenzelm
parents:
53378
diff
changeset
|
1294 |
fun prt_asm (b, ts) = Pretty.block (Pretty.breaks |
08f3491c50bf
cases: formal binding of 'assumes', with position provided via invoke_case;
wenzelm
parents:
53378
diff
changeset
|
1295 |
((if Binding.is_empty b then [] |
08f3491c50bf
cases: formal binding of 'assumes', with position provided via invoke_case;
wenzelm
parents:
53378
diff
changeset
|
1296 |
else [Binding.pretty b, Pretty.str ":"]) @ map (Pretty.quote o prt_term) ts)); |
13425
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
1297 |
|
10810 | 1298 |
fun prt_sect _ _ _ [] = [] |
35141 | 1299 |
| prt_sect s sep prt xs = |
1300 |
[Pretty.block (Pretty.breaks (Pretty.str s :: |
|
1301 |
flat (separate sep (map (single o prt) xs))))]; |
|
26722 | 1302 |
in |
1303 |
Pretty.block (Pretty.fbreaks |
|
10810 | 1304 |
(Pretty.str (name ^ ":") :: |
42496 | 1305 |
prt_sect "fix" [] (Pretty.str o Binding.name_of o fst) fixes @ |
10810 | 1306 |
prt_sect "let" [Pretty.str "and"] prt_let |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19422
diff
changeset
|
1307 |
(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
|
1308 |
(if forall (null o #2) asms then [] |
18609 | 1309 |
else prt_sect "assume" [Pretty.str "and"] prt_asm asms) @ |
26722 | 1310 |
prt_sect "subcases:" [] (Pretty.str o fst) cs)) |
1311 |
end; |
|
16540 | 1312 |
|
26722 | 1313 |
in |
1314 |
||
1315 |
fun pretty_cases ctxt = |
|
1316 |
let |
|
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1317 |
fun mk_case (_, (_, false)) = NONE |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1318 |
| mk_case (name, (c as Rule_Cases.Case {fixes, ...}, true)) = |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1319 |
SOME (name, (fixes, case_result c ctxt)); |
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
52223
diff
changeset
|
1320 |
val cases = dest_cases ctxt |> map_filter mk_case; |
10810 | 1321 |
in |
35141 | 1322 |
if null cases then [] |
26722 | 1323 |
else [Pretty.big_list "cases:" (map pretty_case cases)] |
10810 | 1324 |
end; |
1325 |
||
1326 |
val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases; |
|
1327 |
||
26722 | 1328 |
end; |
1329 |
||
10810 | 1330 |
|
12057 | 1331 |
(* core context *) |
10810 | 1332 |
|
42717
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
wenzelm
parents:
42502
diff
changeset
|
1333 |
val debug = Config.bool (Config.declare "Proof_Context.debug" (K (Config.Bool false))); |
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
wenzelm
parents:
42502
diff
changeset
|
1334 |
val verbose = Config.bool (Config.declare "Proof_Context.verbose" (K (Config.Bool false))); |
10810 | 1335 |
|
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
1336 |
fun pretty_ctxt ctxt = |
42717
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
wenzelm
parents:
42502
diff
changeset
|
1337 |
if not (Config.get ctxt debug) then [] |
20310 | 1338 |
else |
1339 |
let |
|
24922 | 1340 |
val prt_term = Syntax.pretty_term ctxt; |
12057 | 1341 |
|
20310 | 1342 |
(*structures*) |
35429
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35412
diff
changeset
|
1343 |
val {structs, ...} = Local_Syntax.idents_of (syntax_of ctxt); |
35139 | 1344 |
val prt_structs = |
1345 |
if null structs then [] |
|
20310 | 1346 |
else [Pretty.block (Pretty.str "structures:" :: Pretty.brk 1 :: |
1347 |
Pretty.commas (map Pretty.str structs))]; |
|
12093 | 1348 |
|
20310 | 1349 |
(*fixes*) |
1350 |
fun prt_fix (x, x') = |
|
1351 |
if x = x' then Pretty.str x |
|
1352 |
else Pretty.block [Pretty.str x, Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')]; |
|
1353 |
val fixes = |
|
42488
4638622bcaa1
reorganized fixes as specialized (global) name space;
wenzelm
parents:
42469
diff
changeset
|
1354 |
filter_out ((can Name.dest_internal orf member (op =) structs) o #1) |
4638622bcaa1
reorganized fixes as specialized (global) name space;
wenzelm
parents:
42469
diff
changeset
|
1355 |
(Variable.dest_fixes ctxt); |
35139 | 1356 |
val prt_fixes = |
1357 |
if null fixes then [] |
|
20310 | 1358 |
else [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 :: |
1359 |
Pretty.commas (map prt_fix fixes))]; |
|
12057 | 1360 |
|
20310 | 1361 |
(*prems*) |
35139 | 1362 |
val prt_prems = |
51584 | 1363 |
(case Assumption.all_prems_of ctxt of |
1364 |
[] => [] |
|
51601 | 1365 |
| prems => [Pretty.big_list "prems:" [pretty_fact ctxt ("", prems)]]); |
20310 | 1366 |
in prt_structs @ prt_fixes @ prt_prems end; |
10810 | 1367 |
|
1368 |
||
1369 |
(* main context *) |
|
1370 |
||
16540 | 1371 |
fun pretty_context ctxt = |
10810 | 1372 |
let |
42717
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
wenzelm
parents:
42502
diff
changeset
|
1373 |
val verbose = Config.get ctxt verbose; |
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
wenzelm
parents:
42502
diff
changeset
|
1374 |
fun verb f x = if verbose then f (x ()) else []; |
35141 | 1375 |
|
24922 | 1376 |
val prt_term = Syntax.pretty_term ctxt; |
1377 |
val prt_typ = Syntax.pretty_typ ctxt; |
|
1378 |
val prt_sort = Syntax.pretty_sort ctxt; |
|
10810 | 1379 |
|
1380 |
(*theory*) |
|
12057 | 1381 |
val pretty_thy = Pretty.block |
17384 | 1382 |
[Pretty.str "theory:", Pretty.brk 1, Context.pretty_thy (theory_of ctxt)]; |
10810 | 1383 |
|
1384 |
(*defaults*) |
|
1385 |
fun prt_atom prt prtT (x, X) = Pretty.block |
|
1386 |
[prt x, Pretty.str " ::", Pretty.brk 1, prtT X]; |
|
1387 |
||
1388 |
fun prt_var (x, ~1) = prt_term (Syntax.free x) |
|
1389 |
| prt_var xi = prt_term (Syntax.var xi); |
|
1390 |
||
1391 |
fun prt_varT (x, ~1) = prt_typ (TFree (x, [])) |
|
1392 |
| prt_varT xi = prt_typ (TVar (xi, [])); |
|
1393 |
||
1394 |
val prt_defT = prt_atom prt_var prt_typ; |
|
1395 |
val prt_defS = prt_atom prt_varT prt_sort; |
|
16540 | 1396 |
|
20163 | 1397 |
val (types, sorts) = Variable.constraints_of ctxt; |
10810 | 1398 |
in |
18609 | 1399 |
verb single (K pretty_thy) @ |
18672
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents:
18619
diff
changeset
|
1400 |
pretty_ctxt ctxt @ |
21728 | 1401 |
verb (pretty_abbrevs false) (K ctxt) @ |
10810 | 1402 |
verb pretty_binds (K ctxt) @ |
12057 | 1403 |
verb pretty_lthms (K ctxt) @ |
10810 | 1404 |
verb pretty_cases (K ctxt) @ |
18609 | 1405 |
verb single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @ |
20163 | 1406 |
verb single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts))) |
10810 | 1407 |
end; |
1408 |
||
5819 | 1409 |
end; |
35429
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35412
diff
changeset
|
1410 |
|
42360 | 1411 |
val show_abbrevs = Proof_Context.show_abbrevs; |
40879
ca132ef44944
configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents:
39557
diff
changeset
|
1412 |