author | bulwahn |
Sat, 24 Oct 2009 16:55:42 +0200 | |
changeset 33126 | bb8806eb5da7 |
parent 32859 | 204f749f35a9 |
child 33095 | bbd52d2f8696 |
permissions | -rw-r--r-- |
5831 | 1 |
(* Title: Pure/Isar/isar_cmd.ML |
2 |
Author: Markus Wenzel, TU Muenchen |
|
3 |
||
30805 | 4 |
Miscellaneous Isar commands. |
5831 | 5 |
*) |
6 |
||
7 |
signature ISAR_CMD = |
|
8 |
sig |
|
30575 | 9 |
val global_setup: Symbol_Pos.text * Position.T -> theory -> theory |
10 |
val local_setup: Symbol_Pos.text * Position.T -> Proof.context -> Proof.context |
|
11 |
val parse_ast_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory |
|
12 |
val parse_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory |
|
13 |
val print_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory |
|
14 |
val typed_print_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory |
|
15 |
val print_ast_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory |
|
30573 | 16 |
val oracle: bstring * Position.T -> Symbol_Pos.text * Position.T -> theory -> theory |
29579 | 17 |
val add_axioms: ((binding * string) * Attrib.src list) list -> theory -> theory |
18 |
val add_defs: (bool * bool) * ((binding * string) * Attrib.src list) list -> theory -> theory |
|
30575 | 19 |
val declaration: Symbol_Pos.text * Position.T -> local_theory -> local_theory |
20 |
val simproc_setup: string -> string list -> Symbol_Pos.text * Position.T -> string list -> |
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
21 |
local_theory -> local_theory |
26671
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
22 |
val hide_names: bool -> string * xstring list -> theory -> theory |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
23 |
val have: (Attrib.binding * (string * string list) list) list -> bool -> Proof.state -> Proof.state |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
24 |
val hence: (Attrib.binding * (string * string list) list) list -> bool -> Proof.state -> Proof.state |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
25 |
val show: (Attrib.binding * (string * string list) list) list -> bool -> Proof.state -> Proof.state |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
26 |
val thus: (Attrib.binding * (string * string list) list) list -> bool -> Proof.state -> Proof.state |
21350 | 27 |
val qed: Method.text option -> Toplevel.transition -> Toplevel.transition |
28 |
val terminal_proof: Method.text * Method.text option -> |
|
29 |
Toplevel.transition -> Toplevel.transition |
|
30 |
val default_proof: Toplevel.transition -> Toplevel.transition |
|
31 |
val immediate_proof: Toplevel.transition -> Toplevel.transition |
|
32 |
val done_proof: Toplevel.transition -> Toplevel.transition |
|
33 |
val skip_proof: Toplevel.transition -> Toplevel.transition |
|
27574
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
34 |
val init_theory: string * string list * (string * bool) list -> |
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
35 |
Toplevel.transition -> Toplevel.transition |
5831 | 36 |
val exit: Toplevel.transition -> Toplevel.transition |
37 |
val quit: Toplevel.transition -> Toplevel.transition |
|
9731 | 38 |
val pr: string list * (int option * int option) -> Toplevel.transition -> Toplevel.transition |
8453 | 39 |
val disable_pr: Toplevel.transition -> Toplevel.transition |
40 |
val enable_pr: Toplevel.transition -> Toplevel.transition |
|
30575 | 41 |
val ml_diag: bool -> Symbol_Pos.text * Position.T -> Toplevel.transition -> Toplevel.transition |
14950 | 42 |
val cd: Path.T -> Toplevel.transition -> Toplevel.transition |
5831 | 43 |
val pwd: Toplevel.transition -> Toplevel.transition |
14950 | 44 |
val display_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition |
45 |
val print_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition |
|
7124 | 46 |
val pretty_setmargin: int -> Toplevel.transition -> Toplevel.transition |
7308 | 47 |
val print_context: Toplevel.transition -> Toplevel.transition |
20621 | 48 |
val print_theory: bool -> Toplevel.transition -> Toplevel.transition |
5831 | 49 |
val print_syntax: Toplevel.transition -> Toplevel.transition |
21725 | 50 |
val print_abbrevs: Toplevel.transition -> Toplevel.transition |
21003
37492b0062c6
renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents:
20978
diff
changeset
|
51 |
val print_facts: Toplevel.transition -> Toplevel.transition |
24115 | 52 |
val print_configs: Toplevel.transition -> Toplevel.transition |
5880 | 53 |
val print_theorems: Toplevel.transition -> Toplevel.transition |
12060 | 54 |
val print_locales: Toplevel.transition -> Toplevel.transition |
29223 | 55 |
val print_locale: bool * xstring -> Toplevel.transition -> Toplevel.transition |
32804
ca430e6aee1c
Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents:
32149
diff
changeset
|
56 |
val print_registrations: string -> Toplevel.transition -> Toplevel.transition |
5831 | 57 |
val print_attributes: Toplevel.transition -> Toplevel.transition |
16026 | 58 |
val print_simpset: Toplevel.transition -> Toplevel.transition |
12382 | 59 |
val print_rules: Toplevel.transition -> Toplevel.transition |
9219 | 60 |
val print_trans_rules: Toplevel.transition -> Toplevel.transition |
5831 | 61 |
val print_methods: Toplevel.transition -> Toplevel.transition |
9219 | 62 |
val print_antiquotations: Toplevel.transition -> Toplevel.transition |
20574 | 63 |
val class_deps: Toplevel.transition -> Toplevel.transition |
22485 | 64 |
val thy_deps: Toplevel.transition -> Toplevel.transition |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26186
diff
changeset
|
65 |
val thm_deps: (Facts.ref * Attrib.src list) list -> Toplevel.transition -> Toplevel.transition |
26184 | 66 |
val unused_thms: (string list * string list option) option -> |
67 |
Toplevel.transition -> Toplevel.transition |
|
5831 | 68 |
val print_binds: Toplevel.transition -> Toplevel.transition |
8369 | 69 |
val print_cases: Toplevel.transition -> Toplevel.transition |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26186
diff
changeset
|
70 |
val print_stmts: string list * (Facts.ref * Attrib.src list) list |
19268 | 71 |
-> Toplevel.transition -> Toplevel.transition |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26186
diff
changeset
|
72 |
val print_thms: string list * (Facts.ref * Attrib.src list) list |
10581 | 73 |
-> Toplevel.transition -> Toplevel.transition |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26186
diff
changeset
|
74 |
val print_prfs: bool -> string list * (Facts.ref * Attrib.src list) list option |
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11017
diff
changeset
|
75 |
-> Toplevel.transition -> Toplevel.transition |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12758
diff
changeset
|
76 |
val print_prop: (string list * string) -> Toplevel.transition -> Toplevel.transition |
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12758
diff
changeset
|
77 |
val print_term: (string list * string) -> Toplevel.transition -> Toplevel.transition |
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12758
diff
changeset
|
78 |
val print_type: (string list * string) -> Toplevel.transition -> Toplevel.transition |
30573 | 79 |
val header_markup: Symbol_Pos.text * Position.T -> Toplevel.transition -> Toplevel.transition |
80 |
val local_theory_markup: xstring option * (Symbol_Pos.text * Position.T) -> |
|
17262
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
81 |
Toplevel.transition -> Toplevel.transition |
30573 | 82 |
val proof_markup: Symbol_Pos.text * Position.T -> Toplevel.transition -> Toplevel.transition |
5831 | 83 |
end; |
84 |
||
85 |
structure IsarCmd: ISAR_CMD = |
|
86 |
struct |
|
87 |
||
88 |
||
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
89 |
(** theory declarations **) |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
90 |
|
30461 | 91 |
(* generic setup *) |
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
92 |
|
30461 | 93 |
fun global_setup (txt, pos) = |
26455 | 94 |
ML_Context.expression pos "val setup: theory -> theory" "Context.map_theory setup" txt |
26435 | 95 |
|> Context.theory_map; |
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
96 |
|
30461 | 97 |
fun local_setup (txt, pos) = |
98 |
ML_Context.expression pos "val setup: local_theory -> local_theory" "Context.map_proof setup" txt |
|
99 |
|> Context.proof_map; |
|
100 |
||
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
101 |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
102 |
(* translation functions *) |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
103 |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
104 |
local |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
105 |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
106 |
fun advancedT false = "" |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
107 |
| advancedT true = "Proof.context -> "; |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
108 |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
109 |
fun advancedN false = "" |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
110 |
| advancedN true = "advanced_"; |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
111 |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
112 |
in |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
113 |
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
114 |
fun parse_ast_translation (a, (txt, pos)) = |
26455 | 115 |
txt |> ML_Context.expression pos |
116 |
("val parse_ast_translation: (string * (" ^ advancedT a ^ |
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
117 |
"Syntax.ast list -> Syntax.ast)) list") |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
118 |
("Context.map_theory (Sign.add_" ^ advancedN a ^ "trfuns (parse_ast_translation, [], [], []))") |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
119 |
|> Context.theory_map; |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
120 |
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
121 |
fun parse_translation (a, (txt, pos)) = |
26455 | 122 |
txt |> ML_Context.expression pos |
123 |
("val parse_translation: (string * (" ^ advancedT a ^ |
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
124 |
"term list -> term)) list") |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
125 |
("Context.map_theory (Sign.add_" ^ advancedN a ^ "trfuns ([], parse_translation, [], []))") |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
126 |
|> Context.theory_map; |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
127 |
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
128 |
fun print_translation (a, (txt, pos)) = |
26455 | 129 |
txt |> ML_Context.expression pos |
130 |
("val print_translation: (string * (" ^ advancedT a ^ |
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
131 |
"term list -> term)) list") |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
132 |
("Context.map_theory (Sign.add_" ^ advancedN a ^ "trfuns ([], [], print_translation, []))") |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
133 |
|> Context.theory_map; |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
134 |
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
135 |
fun print_ast_translation (a, (txt, pos)) = |
26455 | 136 |
txt |> ML_Context.expression pos |
137 |
("val print_ast_translation: (string * (" ^ advancedT a ^ |
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
138 |
"Syntax.ast list -> Syntax.ast)) list") |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
139 |
("Context.map_theory (Sign.add_" ^ advancedN a ^ "trfuns ([], [], [], print_ast_translation))") |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
140 |
|> Context.theory_map; |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
141 |
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
142 |
fun typed_print_translation (a, (txt, pos)) = |
26455 | 143 |
txt |> ML_Context.expression pos |
144 |
("val typed_print_translation: (string * (" ^ advancedT a ^ |
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
145 |
"bool -> typ -> term list -> term)) list") |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
146 |
("Context.map_theory (Sign.add_" ^ advancedN a ^ "trfunsT typed_print_translation)") |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
147 |
|> Context.theory_map; |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
148 |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
149 |
end; |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
150 |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
151 |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
152 |
(* oracles *) |
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
153 |
|
30334 | 154 |
fun oracle (name, pos) (body_txt, body_pos) = |
27871
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
wenzelm
parents:
27853
diff
changeset
|
155 |
let |
30573 | 156 |
val body = Symbol_Pos.content (Symbol_Pos.explode (body_txt, body_pos)); |
27871
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
wenzelm
parents:
27853
diff
changeset
|
157 |
val txt = |
28290 | 158 |
"local\n\ |
30524 | 159 |
\ val binding = " ^ ML_Syntax.make_binding (name, pos) ^ ";\n\ |
30334 | 160 |
\ val body = " ^ body ^ ";\n\ |
27871
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
wenzelm
parents:
27853
diff
changeset
|
161 |
\in\n\ |
30334 | 162 |
\ val " ^ name ^ " = snd (Context.>>> (Context.map_theory_result (Thm.add_oracle (binding, body))));\n\ |
27871
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
wenzelm
parents:
27853
diff
changeset
|
163 |
\end;\n"; |
30334 | 164 |
in Context.theory_map (ML_Context.exec (fn () => ML_Context.eval false body_pos txt)) end; |
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
165 |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
166 |
|
21350 | 167 |
(* axioms *) |
168 |
||
169 |
fun add_axms f args thy = |
|
30337
eb189f7e43a1
Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents:
30334
diff
changeset
|
170 |
f (map (fn ((b, ax), srcs) => ((b, ax), map (Attrib.attribute thy) srcs)) args) thy; |
21350 | 171 |
|
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27614
diff
changeset
|
172 |
val add_axioms = add_axms (snd oo PureThy.add_axioms_cmd); |
21350 | 173 |
|
174 |
fun add_defs ((unchecked, overloaded), args) = |
|
175 |
add_axms |
|
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27614
diff
changeset
|
176 |
(snd oo (if unchecked then PureThy.add_defs_unchecked_cmd else PureThy.add_defs_cmd) overloaded) args; |
21350 | 177 |
|
178 |
||
22087 | 179 |
(* declarations *) |
180 |
||
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
181 |
fun declaration (txt, pos) = |
26455 | 182 |
txt |> ML_Context.expression pos |
183 |
"val declaration: Morphism.declaration" |
|
24020 | 184 |
"Context.map_proof (LocalTheory.declaration declaration)" |
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
185 |
|> Context.proof_map; |
22087 | 186 |
|
187 |
||
22202 | 188 |
(* simprocs *) |
189 |
||
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
190 |
fun simproc_setup name lhss (proc, pos) identifier = |
26455 | 191 |
ML_Context.expression pos |
22239 | 192 |
"val proc: Morphism.morphism -> Simplifier.simpset -> cterm -> thm option" |
193 |
("Context.map_proof (Simplifier.def_simproc {name = " ^ ML_Syntax.print_string name ^ ", \ |
|
194 |
\lhss = " ^ ML_Syntax.print_strings lhss ^ ", proc = proc, \ |
|
195 |
\identifier = Library.maps ML_Context.thms " ^ ML_Syntax.print_strings identifier ^ "})") proc |
|
22202 | 196 |
|> Context.proof_map; |
197 |
||
198 |
||
26671
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
199 |
(* hide names *) |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
200 |
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
201 |
val hide_kinds = |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
202 |
[("class", (Sign.intern_class, can o Sign.certify_class, Sign.hide_class)), |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
203 |
("type", (Sign.intern_type, Sign.declared_tyname, Sign.hide_type)), |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
204 |
("const", (Sign.intern_const, Sign.declared_const, Sign.hide_const)), |
26694 | 205 |
("fact", (PureThy.intern_fact, PureThy.defined_fact, PureThy.hide_fact))]; |
26671
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
206 |
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
207 |
fun hide_names b (kind, xnames) thy = |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
208 |
(case AList.lookup (op =) hide_kinds kind of |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
209 |
SOME (intern, check, hide) => |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
210 |
let |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
211 |
val names = map (intern thy) xnames; |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
212 |
val bads = filter_out (check thy) names; |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
213 |
in |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
214 |
if null bads then fold (hide b) names thy |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
215 |
else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads) |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
216 |
end |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
217 |
| NONE => error ("Bad name space specification: " ^ quote kind)); |
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
218 |
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
219 |
|
21350 | 220 |
(* goals *) |
221 |
||
222 |
fun goal opt_chain goal stmt int = |
|
29383 | 223 |
opt_chain #> goal NONE (K I) stmt int; |
21350 | 224 |
|
225 |
val have = goal I Proof.have; |
|
226 |
val hence = goal Proof.chain Proof.have; |
|
227 |
val show = goal I Proof.show; |
|
228 |
val thus = goal Proof.chain Proof.show; |
|
229 |
||
230 |
||
231 |
(* local endings *) |
|
232 |
||
29383 | 233 |
fun local_qed m = Toplevel.proof (Proof.local_qed (m, true)); |
32061
11f8ee55662d
parallel_proofs: more fine-grained control with optional parallel checking of nested Isar proofs;
wenzelm
parents:
31819
diff
changeset
|
234 |
val local_terminal_proof = Toplevel.proof' o Proof.local_future_terminal_proof; |
29383 | 235 |
val local_default_proof = Toplevel.proof Proof.local_default_proof; |
236 |
val local_immediate_proof = Toplevel.proof Proof.local_immediate_proof; |
|
237 |
val local_done_proof = Toplevel.proof Proof.local_done_proof; |
|
238 |
val local_skip_proof = Toplevel.proof' Proof.local_skip_proof; |
|
21350 | 239 |
|
27562 | 240 |
val skip_local_qed = Toplevel.skip_proof (fn i => if i > 1 then i - 1 else raise Toplevel.UNDEF); |
21350 | 241 |
|
242 |
||
243 |
(* global endings *) |
|
244 |
||
245 |
fun global_qed m = Toplevel.end_proof (K (Proof.global_qed (m, true))); |
|
246 |
val global_terminal_proof = Toplevel.end_proof o K o Proof.global_terminal_proof; |
|
247 |
val global_default_proof = Toplevel.end_proof (K Proof.global_default_proof); |
|
248 |
val global_immediate_proof = Toplevel.end_proof (K Proof.global_immediate_proof); |
|
249 |
val global_skip_proof = Toplevel.end_proof Proof.global_skip_proof; |
|
250 |
val global_done_proof = Toplevel.end_proof (K Proof.global_done_proof); |
|
251 |
||
28375 | 252 |
val skip_global_qed = Toplevel.skip_proof_to_theory (fn n => n = 1); |
21350 | 253 |
|
254 |
||
255 |
(* common endings *) |
|
256 |
||
257 |
fun qed m = local_qed m o global_qed m o skip_local_qed o skip_global_qed; |
|
258 |
fun terminal_proof m = local_terminal_proof m o global_terminal_proof m; |
|
259 |
val default_proof = local_default_proof o global_default_proof; |
|
260 |
val immediate_proof = local_immediate_proof o global_immediate_proof; |
|
261 |
val done_proof = local_done_proof o global_done_proof; |
|
262 |
val skip_proof = local_skip_proof o global_skip_proof; |
|
263 |
||
264 |
||
265 |
(* init and exit *) |
|
266 |
||
27574
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
267 |
fun init_theory (name, imports, uses) = |
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
268 |
Toplevel.init_theory name (ThyInfo.begin_theory name imports (map (apfst Path.explode) uses)) |
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
269 |
(fn thy => |
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
270 |
if ThyInfo.check_known_thy (Context.theory_name thy) |
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
271 |
then ThyInfo.end_theory thy else ()); |
21350 | 272 |
|
5831 | 273 |
val exit = Toplevel.keep (fn state => |
26599 | 274 |
(Context.set_thread_data (try Toplevel.generic_theory_of state); |
24071 | 275 |
raise Toplevel.TERMINATE)); |
5831 | 276 |
|
277 |
val quit = Toplevel.imperative quit; |
|
278 |
||
7101 | 279 |
|
8453 | 280 |
(* print state *) |
281 |
||
15531 | 282 |
fun set_limit _ NONE = () |
283 |
| set_limit r (SOME n) = r := n; |
|
9731 | 284 |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
285 |
fun pr (modes, (lim1, lim2)) = Toplevel.keep (fn state => |
9731 | 286 |
(set_limit goals_limit lim1; set_limit ProofContext.prems_limit lim2; Toplevel.quiet := false; |
23935 | 287 |
PrintMode.with_modes modes (Toplevel.print_state true) state)); |
8453 | 288 |
|
289 |
val disable_pr = Toplevel.imperative (fn () => Toplevel.quiet := true); |
|
290 |
val enable_pr = Toplevel.imperative (fn () => Toplevel.quiet := false); |
|
291 |
||
292 |
||
26489 | 293 |
(* diagnostic ML evaluation *) |
5831 | 294 |
|
26489 | 295 |
fun ml_diag verbose (txt, pos) = Toplevel.keep (fn state => |
28273
17f6aa02ded3
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28084
diff
changeset
|
296 |
(ML_Context.eval_in |
17f6aa02ded3
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28084
diff
changeset
|
297 |
(Option.map Context.proof_of (try Toplevel.generic_theory_of state)) verbose pos txt)); |
5831 | 298 |
|
299 |
||
300 |
(* current working directory *) |
|
301 |
||
30805 | 302 |
fun cd path = Toplevel.imperative (fn () => File.cd path); |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
21725
diff
changeset
|
303 |
val pwd = Toplevel.imperative (fn () => writeln (Path.implode (File.pwd ()))); |
5831 | 304 |
|
305 |
||
14934 | 306 |
(* present draft files *) |
307 |
||
308 |
fun display_drafts files = Toplevel.imperative (fn () => |
|
16258 | 309 |
let val outfile = File.shell_path (Present.drafts (getenv "ISABELLE_DOC_FORMAT") files) |
31819 | 310 |
in File.isabelle_tool "display" ("-c " ^ outfile ^ " &"); () end); |
14934 | 311 |
|
312 |
fun print_drafts files = Toplevel.imperative (fn () => |
|
16258 | 313 |
let val outfile = File.shell_path (Present.drafts "ps" files) |
31819 | 314 |
in File.isabelle_tool "print" ("-c " ^ outfile); () end); |
14934 | 315 |
|
316 |
||
7124 | 317 |
(* pretty_setmargin *) |
318 |
||
319 |
fun pretty_setmargin n = Toplevel.imperative (fn () => Pretty.setmargin n); |
|
5831 | 320 |
|
321 |
||
9513 | 322 |
(* print parts of theory and proof context *) |
5831 | 323 |
|
7308 | 324 |
val print_context = Toplevel.keep Toplevel.print_state_context; |
9513 | 325 |
|
20621 | 326 |
fun print_theory verbose = Toplevel.unknown_theory o |
22872 | 327 |
Toplevel.keep (Pretty.writeln o ProofDisplay.pretty_full_theory verbose o Toplevel.theory_of); |
9513 | 328 |
|
21663 | 329 |
val print_syntax = Toplevel.unknown_context o |
330 |
Toplevel.keep (ProofContext.print_syntax o Toplevel.context_of); |
|
9513 | 331 |
|
21725 | 332 |
val print_abbrevs = Toplevel.unknown_context o |
333 |
Toplevel.keep (ProofContext.print_abbrevs o Toplevel.context_of); |
|
334 |
||
21003
37492b0062c6
renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents:
20978
diff
changeset
|
335 |
val print_facts = Toplevel.unknown_context o Toplevel.keep (fn state => |
37492b0062c6
renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents:
20978
diff
changeset
|
336 |
ProofContext.setmp_verbose |
21506 | 337 |
ProofContext.print_lthms (Toplevel.context_of state)); |
21003
37492b0062c6
renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents:
20978
diff
changeset
|
338 |
|
24115 | 339 |
val print_configs = Toplevel.unknown_context o Toplevel.keep (fn state => |
340 |
Attrib.print_configs (Toplevel.context_of state)); |
|
23989 | 341 |
|
17066 | 342 |
val print_theorems_proof = Toplevel.keep (fn state => |
343 |
ProofContext.setmp_verbose |
|
344 |
ProofContext.print_lthms (Proof.context_of (Toplevel.proof_of state))); |
|
345 |
||
18588 | 346 |
val print_theorems_theory = Toplevel.keep (fn state => |
347 |
Toplevel.theory_of state |> |
|
30801 | 348 |
(case Toplevel.previous_context_of state of |
349 |
SOME prev => ProofDisplay.print_theorems_diff (ProofContext.theory_of prev) |
|
350 |
| NONE => ProofDisplay.print_theorems)); |
|
18588 | 351 |
|
21663 | 352 |
val print_theorems = Toplevel.unknown_context o print_theorems_theory o print_theorems_proof; |
9513 | 353 |
|
12060 | 354 |
val print_locales = Toplevel.unknown_theory o |
29360 | 355 |
Toplevel.keep (Locale.print_locales o Toplevel.theory_of); |
12060 | 356 |
|
29223 | 357 |
fun print_locale (show_facts, name) = Toplevel.unknown_theory o |
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
358 |
Toplevel.keep (fn state => |
29360 | 359 |
Locale.print_locale (Toplevel.theory_of state) show_facts name); |
15596 | 360 |
|
32804
ca430e6aee1c
Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents:
32149
diff
changeset
|
361 |
fun print_registrations name = Toplevel.unknown_context o |
ca430e6aee1c
Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents:
32149
diff
changeset
|
362 |
Toplevel.keep (fn state => |
ca430e6aee1c
Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents:
32149
diff
changeset
|
363 |
Locale.print_registrations (Toplevel.theory_of state) name); |
ca430e6aee1c
Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents:
32149
diff
changeset
|
364 |
|
9513 | 365 |
val print_attributes = Toplevel.unknown_theory o |
366 |
Toplevel.keep (Attrib.print_attributes o Toplevel.theory_of); |
|
367 |
||
16026 | 368 |
val print_simpset = Toplevel.unknown_context o |
30357 | 369 |
Toplevel.keep (fn state => |
370 |
let val ctxt = Toplevel.context_of state |
|
32149
ef59550a55d3
renamed simpset_of to global_simpset_of, and local_simpset_of to simpset_of -- same for claset and clasimpset;
wenzelm
parents:
32091
diff
changeset
|
371 |
in Pretty.writeln (Simplifier.pretty_ss ctxt (simpset_of ctxt)) end); |
16026 | 372 |
|
12382 | 373 |
val print_rules = Toplevel.unknown_context o |
18639 | 374 |
Toplevel.keep (ContextRules.print_rules o Toplevel.context_of); |
12382 | 375 |
|
9513 | 376 |
val print_trans_rules = Toplevel.unknown_context o |
18639 | 377 |
Toplevel.keep (Calculation.print_rules o Toplevel.context_of); |
9513 | 378 |
|
379 |
val print_methods = Toplevel.unknown_theory o |
|
380 |
Toplevel.keep (Method.print_methods o Toplevel.theory_of); |
|
381 |
||
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
382 |
val print_antiquotations = Toplevel.imperative ThyOutput.print_antiquotations; |
5831 | 383 |
|
22485 | 384 |
val thy_deps = Toplevel.unknown_theory o Toplevel.keep (fn state => |
385 |
let |
|
386 |
val thy = Toplevel.theory_of state; |
|
24560
2693220bd77f
thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents:
24508
diff
changeset
|
387 |
val all_thys = sort ThyInfo.thy_ord (thy :: Theory.ancestors_of thy); |
22604 | 388 |
val gr = all_thys |> map (fn node => |
22602
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents:
22573
diff
changeset
|
389 |
let |
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents:
22573
diff
changeset
|
390 |
val name = Context.theory_name node; |
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents:
22573
diff
changeset
|
391 |
val parents = map Context.theory_name (Theory.parents_of node); |
24560
2693220bd77f
thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents:
24508
diff
changeset
|
392 |
val dir = Present.session_name node; |
2693220bd77f
thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents:
24508
diff
changeset
|
393 |
val unfold = not (ThyInfo.known_thy name andalso ThyInfo.is_finished name); |
2693220bd77f
thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents:
24508
diff
changeset
|
394 |
in {name = name, ID = name, parents = parents, dir = dir, unfold = unfold, path = ""} end); |
22602
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents:
22573
diff
changeset
|
395 |
in Present.display_graph gr end); |
22485 | 396 |
|
20574 | 397 |
val class_deps = Toplevel.unknown_theory o Toplevel.keep (fn state => |
398 |
let |
|
399 |
val thy = Toplevel.theory_of state; |
|
400 |
val {classes = (space, algebra), ...} = Type.rep_tsig (Sign.tsig_of thy); |
|
401 |
val {classes, ...} = Sorts.rep_algebra algebra; |
|
402 |
fun entry (c, (i, (_, cs))) = |
|
403 |
(i, {name = NameSpace.extern space c, ID = c, parents = cs, |
|
404 |
dir = "", unfold = true, path = ""}); |
|
405 |
val gr = |
|
406 |
Graph.fold (cons o entry) classes [] |
|
407 |
|> sort (int_ord o pairself #1) |> map #2; |
|
408 |
in Present.display_graph gr end); |
|
409 |
||
9513 | 410 |
fun thm_deps args = Toplevel.unknown_theory o Toplevel.keep (fn state => |
21003
37492b0062c6
renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents:
20978
diff
changeset
|
411 |
ThmDeps.thm_deps (Proof.get_thmss (Toplevel.enter_proof_body state) args)); |
9454 | 412 |
|
5831 | 413 |
|
26184 | 414 |
(* find unused theorems *) |
415 |
||
26186
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
416 |
fun unused_thms opt_range = Toplevel.keep (fn state => |
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
417 |
let |
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
418 |
val thy = Toplevel.theory_of state; |
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
419 |
val ctxt = Toplevel.context_of state; |
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
420 |
fun pretty_thm (a, th) = ProofContext.pretty_fact ctxt (a, [th]); |
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
421 |
in |
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
422 |
ThmDeps.unused_thms |
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
423 |
(case opt_range of |
26694 | 424 |
NONE => (Theory.parents_of thy, [thy]) |
425 |
| SOME (xs, NONE) => (map ThyInfo.get_theory xs, [thy]) |
|
426 |
| SOME (xs, SOME ys) => (map ThyInfo.get_theory xs, map ThyInfo.get_theory ys)) |
|
26186
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
427 |
|> map pretty_thm |> Pretty.chunks |> Pretty.writeln |
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
428 |
end); |
26184 | 429 |
|
430 |
||
5831 | 431 |
(* print proof context contents *) |
432 |
||
21663 | 433 |
val print_binds = Toplevel.unknown_context o Toplevel.keep (fn state => |
434 |
ProofContext.setmp_verbose ProofContext.print_binds (Toplevel.context_of state)); |
|
9513 | 435 |
|
21663 | 436 |
val print_cases = Toplevel.unknown_context o Toplevel.keep (fn state => |
437 |
ProofContext.setmp_verbose ProofContext.print_cases (Toplevel.context_of state)); |
|
5831 | 438 |
|
439 |
||
19268 | 440 |
(* print theorems, terms, types etc. *) |
441 |
||
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
442 |
local |
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
443 |
|
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
444 |
fun string_of_stmts state args = |
19268 | 445 |
Proof.get_thmss state args |
21437 | 446 |
|> map (Element.pretty_statement (Proof.context_of state) Thm.theoremK) |
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
447 |
|> Pretty.chunks2 |> Pretty.string_of; |
5880 | 448 |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
449 |
fun string_of_thms state args = |
32091
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents:
32061
diff
changeset
|
450 |
Pretty.string_of (Display.pretty_thms (Proof.context_of state) (Proof.get_thmss state args)); |
5895 | 451 |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
452 |
fun string_of_prfs full state arg = |
32859
204f749f35a9
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
wenzelm
parents:
32804
diff
changeset
|
453 |
Pretty.string_of |
204f749f35a9
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
wenzelm
parents:
32804
diff
changeset
|
454 |
(case arg of |
15531 | 455 |
NONE => |
12125
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
456 |
let |
32859
204f749f35a9
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
wenzelm
parents:
32804
diff
changeset
|
457 |
val (ctxt, thm) = Proof.flat_goal state; |
26626
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26599
diff
changeset
|
458 |
val thy = ProofContext.theory_of ctxt; |
28814 | 459 |
val prf = Thm.proof_of thm; |
17066 | 460 |
val prop = Thm.full_prop_of thm; |
32859
204f749f35a9
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
wenzelm
parents:
32804
diff
changeset
|
461 |
val prf' = Proofterm.rewrite_proof_notypes ([], []) prf; |
12125
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
462 |
in |
27258
656cfac246be
moved ProofContext.pretty_proof to ProofSyntax.pretty_proof;
wenzelm
parents:
27200
diff
changeset
|
463 |
ProofSyntax.pretty_proof ctxt |
17066 | 464 |
(if full then Reconstruct.reconstruct_proof thy prop prf' else prf') |
12125
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
465 |
end |
15531 | 466 |
| SOME args => Pretty.chunks |
27258
656cfac246be
moved ProofContext.pretty_proof to ProofSyntax.pretty_proof;
wenzelm
parents:
27200
diff
changeset
|
467 |
(map (ProofSyntax.pretty_proof_of (Proof.context_of state) full) |
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
468 |
(Proof.get_thmss state args))); |
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11017
diff
changeset
|
469 |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
470 |
fun string_of_prop state s = |
5831 | 471 |
let |
12055 | 472 |
val ctxt = Proof.context_of state; |
24508
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
wenzelm
parents:
24314
diff
changeset
|
473 |
val prop = Syntax.read_prop ctxt s; |
26704
51ee753cc2e3
token translations: context dependent, result Pretty.T;
wenzelm
parents:
26694
diff
changeset
|
474 |
val ctxt' = Variable.auto_fixes prop ctxt; |
51ee753cc2e3
token translations: context dependent, result Pretty.T;
wenzelm
parents:
26694
diff
changeset
|
475 |
in Pretty.string_of (Pretty.quote (Syntax.pretty_term ctxt' prop)) end; |
5831 | 476 |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
477 |
fun string_of_term state s = |
5831 | 478 |
let |
12055 | 479 |
val ctxt = Proof.context_of state; |
24508
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
wenzelm
parents:
24314
diff
changeset
|
480 |
val t = Syntax.read_term ctxt s; |
5831 | 481 |
val T = Term.type_of t; |
26704
51ee753cc2e3
token translations: context dependent, result Pretty.T;
wenzelm
parents:
26694
diff
changeset
|
482 |
val ctxt' = Variable.auto_fixes t ctxt; |
5831 | 483 |
in |
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
484 |
Pretty.string_of |
26704
51ee753cc2e3
token translations: context dependent, result Pretty.T;
wenzelm
parents:
26694
diff
changeset
|
485 |
(Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t), Pretty.fbrk, |
51ee753cc2e3
token translations: context dependent, result Pretty.T;
wenzelm
parents:
26694
diff
changeset
|
486 |
Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' T)]) |
9128 | 487 |
end; |
5831 | 488 |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
489 |
fun string_of_type state s = |
5831 | 490 |
let |
12055 | 491 |
val ctxt = Proof.context_of state; |
25331 | 492 |
val T = Syntax.read_typ ctxt s; |
24920 | 493 |
in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt T)) end; |
9128 | 494 |
|
23935 | 495 |
fun print_item string_of (modes, arg) = Toplevel.keep (fn state => |
496 |
PrintMode.with_modes modes (fn () => |
|
497 |
writeln (string_of (Toplevel.enter_proof_body state) arg)) ()); |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
498 |
|
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
499 |
in |
9128 | 500 |
|
19268 | 501 |
val print_stmts = print_item string_of_stmts; |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12758
diff
changeset
|
502 |
val print_thms = print_item string_of_thms; |
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
503 |
val print_prfs = print_item o string_of_prfs; |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12758
diff
changeset
|
504 |
val print_prop = print_item string_of_prop; |
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12758
diff
changeset
|
505 |
val print_term = print_item string_of_term; |
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12758
diff
changeset
|
506 |
val print_type = print_item string_of_type; |
5831 | 507 |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
508 |
end; |
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
509 |
|
12938
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
510 |
|
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
511 |
(* markup commands *) |
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
512 |
|
30367 | 513 |
fun check_text (txt, pos) state = |
27876 | 514 |
(Position.report Markup.doc_source pos; |
30367 | 515 |
ignore (ThyOutput.eval_antiquote (#1 (OuterKeyword.get_lexicons ())) state (txt, pos))); |
12953
7d5bd53555d8
markup commands: proper theory/proof transactions!
wenzelm
parents:
12938
diff
changeset
|
516 |
|
27853
916038f77be6
simplified markup commands -- removed obsolete Present.results, always check text;
wenzelm
parents:
27730
diff
changeset
|
517 |
fun header_markup txt = Toplevel.keep (fn state => |
30367 | 518 |
if Toplevel.is_toplevel state then check_text txt state |
27853
916038f77be6
simplified markup commands -- removed obsolete Present.results, always check text;
wenzelm
parents:
27730
diff
changeset
|
519 |
else raise Toplevel.UNDEF); |
12953
7d5bd53555d8
markup commands: proper theory/proof transactions!
wenzelm
parents:
12938
diff
changeset
|
520 |
|
30367 | 521 |
fun local_theory_markup (loc, txt) = Toplevel.present_local_theory loc (check_text txt); |
522 |
val proof_markup = Toplevel.present_proof o check_text; |
|
12938
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
523 |
|
5831 | 524 |
end; |