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