| author | wenzelm |
| Tue, 15 Jul 2008 15:59:49 +0200 | |
| changeset 27608 | 8fd5662ccd97 |
| parent 27582 | 367aff8d7ffd |
| child 27614 | f38c25d106a7 |
| permissions | -rw-r--r-- |
| 5831 | 1 |
(* Title: Pure/Isar/isar_cmd.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
4 |
||
| 21350 | 5 |
Derived Isar commands. |
| 5831 | 6 |
*) |
7 |
||
8 |
signature ISAR_CMD = |
|
9 |
sig |
|
| 26435 | 10 |
val generic_setup: string * Position.T -> theory -> theory |
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
11 |
val parse_ast_translation: bool * (string * Position.T) -> theory -> theory |
|
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
12 |
val parse_translation: bool * (string * Position.T) -> theory -> theory |
|
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
13 |
val print_translation: bool * (string * Position.T) -> theory -> theory |
|
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
14 |
val typed_print_translation: bool * (string * Position.T) -> theory -> theory |
|
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
15 |
val print_ast_translation: bool * (string * Position.T) -> theory -> theory |
|
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
16 |
val oracle: bstring -> string -> string * Position.T -> theory -> theory |
| 21350 | 17 |
val add_axioms: ((bstring * string) * Attrib.src list) list -> theory -> theory |
18 |
val add_defs: (bool * bool) * ((bstring * string) * Attrib.src list) list -> theory -> theory |
|
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26186
diff
changeset
|
19 |
val apply_theorems: (Facts.ref * Attrib.src list) list -> theory -> thm list * theory |
| 21350 | 20 |
val apply_theorems_i: (thm list * attribute list) list -> theory -> thm list * theory |
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
21 |
val declaration: string * Position.T -> local_theory -> local_theory |
|
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
22 |
val simproc_setup: string -> string list -> string * Position.T -> string list -> |
|
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
23 |
local_theory -> local_theory |
|
26671
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
24 |
val hide_names: bool -> string * xstring list -> theory -> theory |
| 21350 | 25 |
val have: ((string * Attrib.src list) * (string * string list) list) list -> |
26 |
bool -> Proof.state -> Proof.state |
|
27 |
val hence: ((string * Attrib.src list) * (string * string list) list) list -> |
|
28 |
bool -> Proof.state -> Proof.state |
|
29 |
val show: ((string * Attrib.src list) * (string * string list) list) list -> |
|
30 |
bool -> Proof.state -> Proof.state |
|
31 |
val thus: ((string * Attrib.src list) * (string * string list) list) list -> |
|
32 |
bool -> Proof.state -> Proof.state |
|
33 |
val qed: Method.text option -> Toplevel.transition -> Toplevel.transition |
|
34 |
val terminal_proof: Method.text * Method.text option -> |
|
35 |
Toplevel.transition -> Toplevel.transition |
|
36 |
val default_proof: Toplevel.transition -> Toplevel.transition |
|
37 |
val immediate_proof: Toplevel.transition -> Toplevel.transition |
|
38 |
val done_proof: Toplevel.transition -> Toplevel.transition |
|
39 |
val skip_proof: Toplevel.transition -> Toplevel.transition |
|
|
27574
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
40 |
val init_theory: string * string list * (string * bool) list -> |
|
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
41 |
Toplevel.transition -> Toplevel.transition |
| 7462 | 42 |
val welcome: Toplevel.transition -> Toplevel.transition |
| 5831 | 43 |
val exit: Toplevel.transition -> Toplevel.transition |
44 |
val quit: Toplevel.transition -> Toplevel.transition |
|
| 9731 | 45 |
val pr: string list * (int option * int option) -> Toplevel.transition -> Toplevel.transition |
| 8453 | 46 |
val disable_pr: Toplevel.transition -> Toplevel.transition |
47 |
val enable_pr: Toplevel.transition -> Toplevel.transition |
|
| 26489 | 48 |
val ml_diag: bool -> string * Position.T -> Toplevel.transition -> Toplevel.transition |
|
25793
6c2adbf41c7c
added nested_command (with explicit position argument via properties);
wenzelm
parents:
25331
diff
changeset
|
49 |
val nested_command: Markup.property list -> string * Position.T -> Toplevel.transition |
| 14950 | 50 |
val cd: Path.T -> Toplevel.transition -> Toplevel.transition |
| 5831 | 51 |
val pwd: Toplevel.transition -> Toplevel.transition |
| 14950 | 52 |
val display_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition |
53 |
val print_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition |
|
| 7124 | 54 |
val pretty_setmargin: int -> Toplevel.transition -> Toplevel.transition |
| 7308 | 55 |
val print_context: Toplevel.transition -> Toplevel.transition |
| 20621 | 56 |
val print_theory: bool -> Toplevel.transition -> Toplevel.transition |
| 5831 | 57 |
val print_syntax: Toplevel.transition -> Toplevel.transition |
| 21725 | 58 |
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
|
59 |
val print_facts: Toplevel.transition -> Toplevel.transition |
| 24115 | 60 |
val print_configs: Toplevel.transition -> Toplevel.transition |
| 5880 | 61 |
val print_theorems: Toplevel.transition -> Toplevel.transition |
| 12060 | 62 |
val print_locales: Toplevel.transition -> Toplevel.transition |
| 18135 | 63 |
val print_locale: bool * (Locale.expr * Element.context list) |
| 12758 | 64 |
-> Toplevel.transition -> Toplevel.transition |
|
17139
165c97f9bb63
Printing of interpretations: option to show witness theorems;
ballarin
parents:
17066
diff
changeset
|
65 |
val print_registrations: bool -> string -> Toplevel.transition -> Toplevel.transition |
| 5831 | 66 |
val print_attributes: Toplevel.transition -> Toplevel.transition |
| 16026 | 67 |
val print_simpset: Toplevel.transition -> Toplevel.transition |
| 12382 | 68 |
val print_rules: Toplevel.transition -> Toplevel.transition |
| 9219 | 69 |
val print_trans_rules: Toplevel.transition -> Toplevel.transition |
| 5831 | 70 |
val print_methods: Toplevel.transition -> Toplevel.transition |
| 9219 | 71 |
val print_antiquotations: Toplevel.transition -> Toplevel.transition |
| 20574 | 72 |
val class_deps: Toplevel.transition -> Toplevel.transition |
| 22485 | 73 |
val thy_deps: Toplevel.transition -> Toplevel.transition |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26186
diff
changeset
|
74 |
val thm_deps: (Facts.ref * Attrib.src list) list -> Toplevel.transition -> Toplevel.transition |
|
22340
275802767bf3
Remove duplicates from printed theorems in find_theorems
kleing
parents:
22239
diff
changeset
|
75 |
val find_theorems: (int option * bool) * (bool * string FindTheorems.criterion) list |
| 13284 | 76 |
-> Toplevel.transition -> Toplevel.transition |
| 26184 | 77 |
val unused_thms: (string list * string list option) option -> |
78 |
Toplevel.transition -> Toplevel.transition |
|
| 5831 | 79 |
val print_binds: Toplevel.transition -> Toplevel.transition |
| 8369 | 80 |
val print_cases: Toplevel.transition -> Toplevel.transition |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26186
diff
changeset
|
81 |
val print_stmts: string list * (Facts.ref * Attrib.src list) list |
| 19268 | 82 |
-> Toplevel.transition -> Toplevel.transition |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26186
diff
changeset
|
83 |
val print_thms: string list * (Facts.ref * Attrib.src list) list |
| 10581 | 84 |
-> Toplevel.transition -> Toplevel.transition |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26186
diff
changeset
|
85 |
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
|
86 |
-> Toplevel.transition -> Toplevel.transition |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12758
diff
changeset
|
87 |
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
|
88 |
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
|
89 |
val print_type: (string list * string) -> Toplevel.transition -> Toplevel.transition |
|
12938
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
90 |
val add_header: string * Position.T -> Toplevel.transition -> Toplevel.transition |
|
17262
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
91 |
val add_chapter: xstring option * (string * Position.T) -> |
|
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
92 |
Toplevel.transition -> Toplevel.transition |
|
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
93 |
val add_section: xstring option * (string * Position.T) -> |
|
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
94 |
Toplevel.transition -> Toplevel.transition |
|
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
95 |
val add_subsection: xstring option * (string * Position.T) -> |
|
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
96 |
Toplevel.transition -> Toplevel.transition |
|
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
97 |
val add_subsubsection: xstring option * (string * Position.T) -> |
|
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
98 |
Toplevel.transition -> Toplevel.transition |
|
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
99 |
val add_text: xstring option * (string * Position.T) -> |
|
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents:
17228
diff
changeset
|
100 |
Toplevel.transition -> Toplevel.transition |
|
12938
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
101 |
val add_text_raw: string * Position.T -> Toplevel.transition -> Toplevel.transition |
|
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
102 |
val add_sect: string * Position.T -> Toplevel.transition -> Toplevel.transition |
|
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
103 |
val add_subsect: string * Position.T -> Toplevel.transition -> Toplevel.transition |
|
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
104 |
val add_subsubsect: string * Position.T -> Toplevel.transition -> Toplevel.transition |
|
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
105 |
val add_txt: string * Position.T -> Toplevel.transition -> Toplevel.transition |
|
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
106 |
val add_txt_raw: string * Position.T -> Toplevel.transition -> Toplevel.transition |
| 5831 | 107 |
end; |
108 |
||
109 |
structure IsarCmd: ISAR_CMD = |
|
110 |
struct |
|
111 |
||
112 |
||
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
113 |
(** theory declarations **) |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
114 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
115 |
(* generic_setup *) |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
116 |
|
| 26435 | 117 |
fun generic_setup (txt, pos) = |
| 26455 | 118 |
ML_Context.expression pos "val setup: theory -> theory" "Context.map_theory setup" txt |
| 26435 | 119 |
|> Context.theory_map; |
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
120 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
121 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
122 |
(* translation functions *) |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
123 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
124 |
local |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
125 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
126 |
fun advancedT false = "" |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
127 |
| advancedT true = "Proof.context -> "; |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
128 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
129 |
fun advancedN false = "" |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
130 |
| advancedN true = "advanced_"; |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
131 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
132 |
in |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
133 |
|
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
134 |
fun parse_ast_translation (a, (txt, pos)) = |
| 26455 | 135 |
txt |> ML_Context.expression pos |
136 |
("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
|
137 |
"Syntax.ast list -> Syntax.ast)) list") |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
138 |
("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
|
139 |
|> Context.theory_map; |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
140 |
|
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
141 |
fun parse_translation (a, (txt, pos)) = |
| 26455 | 142 |
txt |> ML_Context.expression pos |
143 |
("val parse_translation: (string * (" ^ advancedT a ^
|
|
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
144 |
"term list -> term)) list") |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
145 |
("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
|
146 |
|> Context.theory_map; |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
147 |
|
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
148 |
fun print_translation (a, (txt, pos)) = |
| 26455 | 149 |
txt |> ML_Context.expression pos |
150 |
("val print_translation: (string * (" ^ advancedT a ^
|
|
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
151 |
"term list -> term)) list") |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
152 |
("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
|
153 |
|> Context.theory_map; |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
154 |
|
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
155 |
fun print_ast_translation (a, (txt, pos)) = |
| 26455 | 156 |
txt |> ML_Context.expression pos |
157 |
("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
|
158 |
"Syntax.ast list -> Syntax.ast)) list") |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
159 |
("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
|
160 |
|> Context.theory_map; |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
161 |
|
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
162 |
fun typed_print_translation (a, (txt, pos)) = |
| 26455 | 163 |
txt |> ML_Context.expression pos |
164 |
("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
|
165 |
"bool -> typ -> term list -> term)) list") |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
166 |
("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
|
167 |
|> Context.theory_map; |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
168 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
169 |
end; |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
170 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
171 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
172 |
(* oracles *) |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
173 |
|
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
174 |
fun oracle name typ (oracle, pos) = |
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
175 |
let val txt = |
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
176 |
"local\ |
|
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
177 |
\ type T = " ^ typ ^ ";\ |
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
178 |
\ val oracle: theory -> T -> term = " ^ oracle ^ ";\n\ |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
179 |
\ val name = " ^ quote name ^ ";\n\ |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
180 |
\ exception Arg of T;\n\ |
| 26463 | 181 |
\ val _ = Context.>> (Context.map_theory\n\ |
182 |
\ (Theory.add_oracle (name, fn (thy, Arg x) => oracle thy x)));\n\ |
|
|
26425
6561665c5cb1
renamed ML_Context.the_context to ML_Context.the_global_context;
wenzelm
parents:
26415
diff
changeset
|
183 |
\ val thy = ML_Context.the_global_context ();\n\ |
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
184 |
\ val invoke_" ^ name ^ " = Thm.invoke_oracle_i thy (Sign.full_name thy name);\n\ |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
185 |
\in\n\ |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
186 |
\ fun " ^ name ^ " thy x = invoke_" ^ name ^ " (thy, Arg x);\n\ |
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
187 |
\end;\n"; |
| 26455 | 188 |
in Context.theory_map (ML_Context.exec (fn () => ML_Context.eval false pos txt)) end; |
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
189 |
|
|
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
190 |
|
| 21350 | 191 |
(* axioms *) |
192 |
||
193 |
fun add_axms f args thy = |
|
194 |
f (map (fn (x, srcs) => (x, map (Attrib.attribute thy) srcs)) args) thy; |
|
195 |
||
196 |
val add_axioms = add_axms (snd oo PureThy.add_axioms); |
|
197 |
||
198 |
fun add_defs ((unchecked, overloaded), args) = |
|
199 |
add_axms |
|
200 |
(snd oo (if unchecked then PureThy.add_defs_unchecked else PureThy.add_defs) overloaded) args; |
|
201 |
||
202 |
||
203 |
(* facts *) |
|
204 |
||
205 |
fun apply_theorems args thy = |
|
206 |
let val facts = Attrib.map_facts (Attrib.attribute thy) [(("", []), args)]
|
|
207 |
in apfst (maps snd) (PureThy.note_thmss "" facts thy) end; |
|
208 |
||
209 |
fun apply_theorems_i args = apfst (maps snd) o PureThy.note_thmss_i "" [(("", []), args)];
|
|
210 |
||
211 |
||
| 22087 | 212 |
(* declarations *) |
213 |
||
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
214 |
fun declaration (txt, pos) = |
| 26455 | 215 |
txt |> ML_Context.expression pos |
216 |
"val declaration: Morphism.declaration" |
|
| 24020 | 217 |
"Context.map_proof (LocalTheory.declaration declaration)" |
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
218 |
|> Context.proof_map; |
| 22087 | 219 |
|
220 |
||
| 22202 | 221 |
(* simprocs *) |
222 |
||
|
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26336
diff
changeset
|
223 |
fun simproc_setup name lhss (proc, pos) identifier = |
| 26455 | 224 |
ML_Context.expression pos |
| 22239 | 225 |
"val proc: Morphism.morphism -> Simplifier.simpset -> cterm -> thm option" |
226 |
("Context.map_proof (Simplifier.def_simproc {name = " ^ ML_Syntax.print_string name ^ ", \
|
|
227 |
\lhss = " ^ ML_Syntax.print_strings lhss ^ ", proc = proc, \ |
|
228 |
\identifier = Library.maps ML_Context.thms " ^ ML_Syntax.print_strings identifier ^ "})") proc |
|
| 22202 | 229 |
|> Context.proof_map; |
230 |
||
231 |
||
|
26671
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
232 |
(* hide names *) |
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
233 |
|
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
234 |
val hide_kinds = |
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
235 |
[("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
|
236 |
("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
|
237 |
("const", (Sign.intern_const, Sign.declared_const, Sign.hide_const)),
|
| 26694 | 238 |
("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
|
239 |
|
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
240 |
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
|
241 |
(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
|
242 |
SOME (intern, check, hide) => |
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
243 |
let |
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
244 |
val names = map (intern thy) xnames; |
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
245 |
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
|
246 |
in |
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
247 |
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
|
248 |
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
|
249 |
end |
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
250 |
| 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
|
251 |
|
|
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents:
26626
diff
changeset
|
252 |
|
| 21350 | 253 |
(* goals *) |
254 |
||
255 |
fun goal opt_chain goal stmt int = |
|
256 |
opt_chain #> goal NONE (K Seq.single) stmt int; |
|
257 |
||
258 |
val have = goal I Proof.have; |
|
259 |
val hence = goal Proof.chain Proof.have; |
|
260 |
val show = goal I Proof.show; |
|
261 |
val thus = goal Proof.chain Proof.show; |
|
262 |
||
263 |
||
264 |
(* local endings *) |
|
265 |
||
266 |
fun local_qed m = Toplevel.proofs (Proof.local_qed (m, true)); |
|
267 |
val local_terminal_proof = Toplevel.proofs o Proof.local_terminal_proof; |
|
268 |
val local_default_proof = Toplevel.proofs Proof.local_default_proof; |
|
269 |
val local_immediate_proof = Toplevel.proofs Proof.local_immediate_proof; |
|
270 |
val local_done_proof = Toplevel.proofs Proof.local_done_proof; |
|
271 |
val local_skip_proof = Toplevel.proofs' Proof.local_skip_proof; |
|
272 |
||
| 27562 | 273 |
val skip_local_qed = Toplevel.skip_proof (fn i => if i > 1 then i - 1 else raise Toplevel.UNDEF); |
| 21350 | 274 |
|
275 |
||
276 |
(* global endings *) |
|
277 |
||
278 |
fun global_qed m = Toplevel.end_proof (K (Proof.global_qed (m, true))); |
|
279 |
val global_terminal_proof = Toplevel.end_proof o K o Proof.global_terminal_proof; |
|
280 |
val global_default_proof = Toplevel.end_proof (K Proof.global_default_proof); |
|
281 |
val global_immediate_proof = Toplevel.end_proof (K Proof.global_immediate_proof); |
|
282 |
val global_skip_proof = Toplevel.end_proof Proof.global_skip_proof; |
|
283 |
val global_done_proof = Toplevel.end_proof (K Proof.global_done_proof); |
|
284 |
||
285 |
val skip_global_qed = Toplevel.skip_proof_to_theory (equal 1); |
|
286 |
||
287 |
||
288 |
(* common endings *) |
|
289 |
||
290 |
fun qed m = local_qed m o global_qed m o skip_local_qed o skip_global_qed; |
|
291 |
fun terminal_proof m = local_terminal_proof m o global_terminal_proof m; |
|
292 |
val default_proof = local_default_proof o global_default_proof; |
|
293 |
val immediate_proof = local_immediate_proof o global_immediate_proof; |
|
294 |
val done_proof = local_done_proof o global_done_proof; |
|
295 |
val skip_proof = local_skip_proof o global_skip_proof; |
|
296 |
||
297 |
||
298 |
(* init and exit *) |
|
299 |
||
|
27574
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
300 |
fun init_theory (name, imports, uses) = |
|
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
301 |
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
|
302 |
(fn thy => |
|
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
303 |
if ThyInfo.check_known_thy (Context.theory_name thy) |
|
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
304 |
then ThyInfo.end_theory thy else ()); |
| 21350 | 305 |
|
| 7462 | 306 |
val welcome = Toplevel.imperative (writeln o Session.welcome); |
| 5831 | 307 |
|
308 |
val exit = Toplevel.keep (fn state => |
|
| 26599 | 309 |
(Context.set_thread_data (try Toplevel.generic_theory_of state); |
| 24071 | 310 |
raise Toplevel.TERMINATE)); |
| 5831 | 311 |
|
312 |
val quit = Toplevel.imperative quit; |
|
313 |
||
| 7101 | 314 |
|
| 8453 | 315 |
(* print state *) |
316 |
||
| 15531 | 317 |
fun set_limit _ NONE = () |
318 |
| set_limit r (SOME n) = r := n; |
|
| 9731 | 319 |
|
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
320 |
fun pr (modes, (lim1, lim2)) = Toplevel.keep (fn state => |
| 9731 | 321 |
(set_limit goals_limit lim1; set_limit ProofContext.prems_limit lim2; Toplevel.quiet := false; |
| 23935 | 322 |
PrintMode.with_modes modes (Toplevel.print_state true) state)); |
| 8453 | 323 |
|
324 |
val disable_pr = Toplevel.imperative (fn () => Toplevel.quiet := true); |
|
325 |
val enable_pr = Toplevel.imperative (fn () => Toplevel.quiet := false); |
|
326 |
||
327 |
||
| 26489 | 328 |
(* diagnostic ML evaluation *) |
| 5831 | 329 |
|
| 26489 | 330 |
fun ml_diag verbose (txt, pos) = Toplevel.keep (fn state => |
331 |
(ML_Context.eval_in (try Toplevel.generic_theory_of state) verbose pos txt)); |
|
| 5831 | 332 |
|
333 |
||
|
25793
6c2adbf41c7c
added nested_command (with explicit position argument via properties);
wenzelm
parents:
25331
diff
changeset
|
334 |
(* nested commands *) |
|
6c2adbf41c7c
added nested_command (with explicit position argument via properties);
wenzelm
parents:
25331
diff
changeset
|
335 |
|
|
6c2adbf41c7c
added nested_command (with explicit position argument via properties);
wenzelm
parents:
25331
diff
changeset
|
336 |
fun nested_command props (str, pos) = |
| 26053 | 337 |
let val pos' = Position.of_properties (props |> Position.default_properties pos) in |
|
25793
6c2adbf41c7c
added nested_command (with explicit position argument via properties);
wenzelm
parents:
25331
diff
changeset
|
338 |
(case OuterSyntax.parse pos' str of |
| 25956 | 339 |
[transition] => transition |
|
25793
6c2adbf41c7c
added nested_command (with explicit position argument via properties);
wenzelm
parents:
25331
diff
changeset
|
340 |
| _ => error "exactly one command expected") |
|
6c2adbf41c7c
added nested_command (with explicit position argument via properties);
wenzelm
parents:
25331
diff
changeset
|
341 |
end; |
|
6c2adbf41c7c
added nested_command (with explicit position argument via properties);
wenzelm
parents:
25331
diff
changeset
|
342 |
|
|
6c2adbf41c7c
added nested_command (with explicit position argument via properties);
wenzelm
parents:
25331
diff
changeset
|
343 |
|
| 5831 | 344 |
(* current working directory *) |
345 |
||
| 14950 | 346 |
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
|
347 |
val pwd = Toplevel.imperative (fn () => writeln (Path.implode (File.pwd ()))); |
| 5831 | 348 |
|
349 |
||
| 14934 | 350 |
(* present draft files *) |
351 |
||
352 |
fun display_drafts files = Toplevel.imperative (fn () => |
|
| 16258 | 353 |
let val outfile = File.shell_path (Present.drafts (getenv "ISABELLE_DOC_FORMAT") files) |
354 |
in File.isatool ("display -c " ^ outfile ^ " &"); () end);
|
|
| 14934 | 355 |
|
356 |
fun print_drafts files = Toplevel.imperative (fn () => |
|
| 16258 | 357 |
let val outfile = File.shell_path (Present.drafts "ps" files) |
358 |
in File.isatool ("print -c " ^ outfile); () end);
|
|
| 14934 | 359 |
|
360 |
||
| 7124 | 361 |
(* pretty_setmargin *) |
362 |
||
363 |
fun pretty_setmargin n = Toplevel.imperative (fn () => Pretty.setmargin n); |
|
| 5831 | 364 |
|
365 |
||
| 9513 | 366 |
(* print parts of theory and proof context *) |
| 5831 | 367 |
|
| 7308 | 368 |
val print_context = Toplevel.keep Toplevel.print_state_context; |
| 9513 | 369 |
|
| 20621 | 370 |
fun print_theory verbose = Toplevel.unknown_theory o |
| 22872 | 371 |
Toplevel.keep (Pretty.writeln o ProofDisplay.pretty_full_theory verbose o Toplevel.theory_of); |
| 9513 | 372 |
|
| 21663 | 373 |
val print_syntax = Toplevel.unknown_context o |
374 |
Toplevel.keep (ProofContext.print_syntax o Toplevel.context_of); |
|
| 9513 | 375 |
|
| 21725 | 376 |
val print_abbrevs = Toplevel.unknown_context o |
377 |
Toplevel.keep (ProofContext.print_abbrevs o Toplevel.context_of); |
|
378 |
||
|
21003
37492b0062c6
renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents:
20978
diff
changeset
|
379 |
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
|
380 |
ProofContext.setmp_verbose |
| 21506 | 381 |
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
|
382 |
|
| 24115 | 383 |
val print_configs = Toplevel.unknown_context o Toplevel.keep (fn state => |
384 |
Attrib.print_configs (Toplevel.context_of state)); |
|
| 23989 | 385 |
|
| 17066 | 386 |
val print_theorems_proof = Toplevel.keep (fn state => |
387 |
ProofContext.setmp_verbose |
|
388 |
ProofContext.print_lthms (Proof.context_of (Toplevel.proof_of state))); |
|
389 |
||
| 18588 | 390 |
val print_theorems_theory = Toplevel.keep (fn state => |
391 |
Toplevel.theory_of state |> |
|
|
27574
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents:
27562
diff
changeset
|
392 |
(case Option.map Toplevel.theory_node (Toplevel.previous_node_of state) of |
| 20957 | 393 |
SOME (SOME prev_thy) => ProofDisplay.print_theorems_diff (Context.theory_of prev_thy) |
| 19430 | 394 |
| _ => ProofDisplay.print_theorems)); |
| 18588 | 395 |
|
| 21663 | 396 |
val print_theorems = Toplevel.unknown_context o print_theorems_theory o print_theorems_proof; |
| 9513 | 397 |
|
| 12060 | 398 |
val print_locales = Toplevel.unknown_theory o |
399 |
Toplevel.keep (Locale.print_locales o Toplevel.theory_of); |
|
400 |
||
| 22573 | 401 |
fun print_locale (show_facts, (imports, body)) = Toplevel.unknown_theory o |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
402 |
Toplevel.keep (fn state => |
| 22573 | 403 |
Locale.print_locale (Toplevel.theory_of state) show_facts imports body); |
| 15596 | 404 |
|
|
17139
165c97f9bb63
Printing of interpretations: option to show witness theorems;
ballarin
parents:
17066
diff
changeset
|
405 |
fun print_registrations show_wits name = Toplevel.unknown_context o |
| 20957 | 406 |
Toplevel.keep (Toplevel.node_case |
|
24789
33b7fbc07361
Simplified interface for printing of interpretations.
ballarin
parents:
24560
diff
changeset
|
407 |
(Context.cases (Locale.print_registrations show_wits name o ProofContext.init) |
|
33b7fbc07361
Simplified interface for printing of interpretations.
ballarin
parents:
24560
diff
changeset
|
408 |
(Locale.print_registrations show_wits name)) |
|
33b7fbc07361
Simplified interface for printing of interpretations.
ballarin
parents:
24560
diff
changeset
|
409 |
(Locale.print_registrations show_wits name o Proof.context_of)); |
| 12060 | 410 |
|
| 9513 | 411 |
val print_attributes = Toplevel.unknown_theory o |
412 |
Toplevel.keep (Attrib.print_attributes o Toplevel.theory_of); |
|
413 |
||
| 16026 | 414 |
val print_simpset = Toplevel.unknown_context o |
| 27582 | 415 |
Toplevel.keep (Pretty.writeln o Simplifier.pretty_ss o Simplifier.local_simpset_of o Toplevel.context_of); |
| 16026 | 416 |
|
| 12382 | 417 |
val print_rules = Toplevel.unknown_context o |
| 18639 | 418 |
Toplevel.keep (ContextRules.print_rules o Toplevel.context_of); |
| 12382 | 419 |
|
| 9513 | 420 |
val print_trans_rules = Toplevel.unknown_context o |
| 18639 | 421 |
Toplevel.keep (Calculation.print_rules o Toplevel.context_of); |
| 9513 | 422 |
|
423 |
val print_methods = Toplevel.unknown_theory o |
|
424 |
Toplevel.keep (Method.print_methods o Toplevel.theory_of); |
|
425 |
||
|
22116
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents:
22087
diff
changeset
|
426 |
val print_antiquotations = Toplevel.imperative ThyOutput.print_antiquotations; |
| 5831 | 427 |
|
| 22485 | 428 |
val thy_deps = Toplevel.unknown_theory o Toplevel.keep (fn state => |
429 |
let |
|
430 |
val thy = Toplevel.theory_of state; |
|
|
24560
2693220bd77f
thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents:
24508
diff
changeset
|
431 |
val all_thys = sort ThyInfo.thy_ord (thy :: Theory.ancestors_of thy); |
| 22604 | 432 |
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
|
433 |
let |
|
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents:
22573
diff
changeset
|
434 |
val name = Context.theory_name node; |
|
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents:
22573
diff
changeset
|
435 |
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
|
436 |
val dir = Present.session_name node; |
|
2693220bd77f
thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents:
24508
diff
changeset
|
437 |
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
|
438 |
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
|
439 |
in Present.display_graph gr end); |
| 22485 | 440 |
|
| 20574 | 441 |
val class_deps = Toplevel.unknown_theory o Toplevel.keep (fn state => |
442 |
let |
|
443 |
val thy = Toplevel.theory_of state; |
|
444 |
val {classes = (space, algebra), ...} = Type.rep_tsig (Sign.tsig_of thy);
|
|
445 |
val {classes, ...} = Sorts.rep_algebra algebra;
|
|
446 |
fun entry (c, (i, (_, cs))) = |
|
447 |
(i, {name = NameSpace.extern space c, ID = c, parents = cs,
|
|
448 |
dir = "", unfold = true, path = ""}); |
|
449 |
val gr = |
|
450 |
Graph.fold (cons o entry) classes [] |
|
451 |
|> sort (int_ord o pairself #1) |> map #2; |
|
452 |
in Present.display_graph gr end); |
|
453 |
||
|
15964
f2074e12d1d4
searching for thms by combination of criteria (intro, elim, dest, name, term pattern)
kleing
parents:
15799
diff
changeset
|
454 |
|
| 16026 | 455 |
(* retrieve theorems *) |
| 7615 | 456 |
|
| 9513 | 457 |
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
|
458 |
ThmDeps.thm_deps (Proof.get_thmss (Toplevel.enter_proof_body state) args)); |
| 9454 | 459 |
|
|
24560
2693220bd77f
thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents:
24508
diff
changeset
|
460 |
fun find_theorems ((opt_lim, rem_dups), spec) = |
|
22340
275802767bf3
Remove duplicates from printed theorems in find_theorems
kleing
parents:
22239
diff
changeset
|
461 |
Toplevel.unknown_theory o Toplevel.keep (fn state => |
| 16026 | 462 |
let |
|
21003
37492b0062c6
renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents:
20978
diff
changeset
|
463 |
val proof_state = Toplevel.enter_proof_body state; |
| 16026 | 464 |
val ctxt = Proof.context_of proof_state; |
465 |
val opt_goal = try Proof.get_goal proof_state |> Option.map (Thm.prop_of o #2 o #2); |
|
|
22340
275802767bf3
Remove duplicates from printed theorems in find_theorems
kleing
parents:
22239
diff
changeset
|
466 |
in FindTheorems.print_theorems ctxt opt_goal opt_lim rem_dups spec end); |
| 16026 | 467 |
|
| 5831 | 468 |
|
| 26184 | 469 |
(* find unused theorems *) |
470 |
||
|
26186
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
471 |
fun unused_thms opt_range = Toplevel.keep (fn state => |
|
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
472 |
let |
|
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
473 |
val thy = Toplevel.theory_of state; |
|
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
474 |
val ctxt = Toplevel.context_of state; |
|
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
475 |
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
|
476 |
in |
|
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
477 |
ThmDeps.unused_thms |
|
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
478 |
(case opt_range of |
| 26694 | 479 |
NONE => (Theory.parents_of thy, [thy]) |
480 |
| SOME (xs, NONE) => (map ThyInfo.get_theory xs, [thy]) |
|
481 |
| 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
|
482 |
|> map pretty_thm |> Pretty.chunks |> Pretty.writeln |
|
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents:
26184
diff
changeset
|
483 |
end); |
| 26184 | 484 |
|
485 |
||
| 5831 | 486 |
(* print proof context contents *) |
487 |
||
| 21663 | 488 |
val print_binds = Toplevel.unknown_context o Toplevel.keep (fn state => |
489 |
ProofContext.setmp_verbose ProofContext.print_binds (Toplevel.context_of state)); |
|
| 9513 | 490 |
|
| 21663 | 491 |
val print_cases = Toplevel.unknown_context o Toplevel.keep (fn state => |
492 |
ProofContext.setmp_verbose ProofContext.print_cases (Toplevel.context_of state)); |
|
| 5831 | 493 |
|
494 |
||
| 19268 | 495 |
(* print theorems, terms, types etc. *) |
496 |
||
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
497 |
local |
|
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 |
fun string_of_stmts state args = |
| 19268 | 500 |
Proof.get_thmss state args |
| 21437 | 501 |
|> 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
|
502 |
|> Pretty.chunks2 |> Pretty.string_of; |
| 5880 | 503 |
|
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
504 |
fun string_of_thms state args = |
| 12055 | 505 |
Pretty.string_of (ProofContext.pretty_thms (Proof.context_of state) |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
506 |
(Proof.get_thmss state args)); |
| 5895 | 507 |
|
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
508 |
fun string_of_prfs full state arg = |
| 17066 | 509 |
Pretty.string_of (case arg of |
| 15531 | 510 |
NONE => |
|
12125
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
511 |
let |
| 17066 | 512 |
val (ctxt, (_, thm)) = Proof.get_goal state; |
|
26626
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26599
diff
changeset
|
513 |
val thy = ProofContext.theory_of ctxt; |
|
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26599
diff
changeset
|
514 |
val prf = Thm.proof_of thm; |
| 17066 | 515 |
val prop = Thm.full_prop_of thm; |
|
12125
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
516 |
val prf' = Proofterm.rewrite_proof_notypes ([], []) prf |
|
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
517 |
in |
|
27258
656cfac246be
moved ProofContext.pretty_proof to ProofSyntax.pretty_proof;
wenzelm
parents:
27200
diff
changeset
|
518 |
ProofSyntax.pretty_proof ctxt |
| 17066 | 519 |
(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
|
520 |
end |
| 15531 | 521 |
| SOME args => Pretty.chunks |
|
27258
656cfac246be
moved ProofContext.pretty_proof to ProofSyntax.pretty_proof;
wenzelm
parents:
27200
diff
changeset
|
522 |
(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
|
523 |
(Proof.get_thmss state args))); |
|
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11017
diff
changeset
|
524 |
|
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
525 |
fun string_of_prop state s = |
| 5831 | 526 |
let |
| 12055 | 527 |
val ctxt = Proof.context_of state; |
|
24508
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
wenzelm
parents:
24314
diff
changeset
|
528 |
val prop = Syntax.read_prop ctxt s; |
|
26704
51ee753cc2e3
token translations: context dependent, result Pretty.T;
wenzelm
parents:
26694
diff
changeset
|
529 |
val ctxt' = Variable.auto_fixes prop ctxt; |
|
51ee753cc2e3
token translations: context dependent, result Pretty.T;
wenzelm
parents:
26694
diff
changeset
|
530 |
in Pretty.string_of (Pretty.quote (Syntax.pretty_term ctxt' prop)) end; |
| 5831 | 531 |
|
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
532 |
fun string_of_term state s = |
| 5831 | 533 |
let |
| 12055 | 534 |
val ctxt = Proof.context_of state; |
|
24508
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
wenzelm
parents:
24314
diff
changeset
|
535 |
val t = Syntax.read_term ctxt s; |
| 5831 | 536 |
val T = Term.type_of t; |
|
26704
51ee753cc2e3
token translations: context dependent, result Pretty.T;
wenzelm
parents:
26694
diff
changeset
|
537 |
val ctxt' = Variable.auto_fixes t ctxt; |
| 5831 | 538 |
in |
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
539 |
Pretty.string_of |
|
26704
51ee753cc2e3
token translations: context dependent, result Pretty.T;
wenzelm
parents:
26694
diff
changeset
|
540 |
(Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t), Pretty.fbrk, |
|
51ee753cc2e3
token translations: context dependent, result Pretty.T;
wenzelm
parents:
26694
diff
changeset
|
541 |
Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' T)]) |
| 9128 | 542 |
end; |
| 5831 | 543 |
|
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
544 |
fun string_of_type state s = |
| 5831 | 545 |
let |
| 12055 | 546 |
val ctxt = Proof.context_of state; |
| 25331 | 547 |
val T = Syntax.read_typ ctxt s; |
| 24920 | 548 |
in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt T)) end; |
| 9128 | 549 |
|
| 23935 | 550 |
fun print_item string_of (modes, arg) = Toplevel.keep (fn state => |
551 |
PrintMode.with_modes modes (fn () => |
|
552 |
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
|
553 |
|
|
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
554 |
in |
| 9128 | 555 |
|
| 19268 | 556 |
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
|
557 |
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
|
558 |
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
|
559 |
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
|
560 |
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
|
561 |
val print_type = print_item string_of_type; |
| 5831 | 562 |
|
|
19385
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
563 |
end; |
|
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
wenzelm
parents:
19268
diff
changeset
|
564 |
|
|
12938
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
565 |
|
|
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
566 |
(* markup commands *) |
|
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
567 |
|
|
27356
cb052da62549
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
27258
diff
changeset
|
568 |
fun check_text s state = |
|
cb052da62549
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
27258
diff
changeset
|
569 |
(ThyOutput.eval_antiquote (#1 (OuterKeyword.get_lexicons ())) state s; ()); |
|
cb052da62549
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
27258
diff
changeset
|
570 |
|
|
12938
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
571 |
fun add_header s = Toplevel.keep' (fn int => fn state => |
|
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
21725
diff
changeset
|
572 |
(if Toplevel.is_toplevel state then () else raise Toplevel.UNDEF; |
|
27356
cb052da62549
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
27258
diff
changeset
|
573 |
if int then check_text s NONE else ())); |
|
12938
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
574 |
|
|
12953
7d5bd53555d8
markup commands: proper theory/proof transactions!
wenzelm
parents:
12938
diff
changeset
|
575 |
local |
|
7d5bd53555d8
markup commands: proper theory/proof transactions!
wenzelm
parents:
12938
diff
changeset
|
576 |
|
|
27356
cb052da62549
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
27258
diff
changeset
|
577 |
fun present _ txt true node = check_text txt (SOME node) |
| 26415 | 578 |
| present f (s, _) false node = Context.setmp_thread_data |
579 |
(try (Toplevel.cases_node I (Context.Proof o Proof.context_of)) node) f s; |
|
|
12953
7d5bd53555d8
markup commands: proper theory/proof transactions!
wenzelm
parents:
12938
diff
changeset
|
580 |
|
| 19057 | 581 |
fun present_local_theory f (loc, txt) = Toplevel.present_local_theory loc (present f txt); |
582 |
fun present_proof f txt = Toplevel.print o Toplevel.present_proof (present f txt); |
|
|
12938
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
583 |
|
|
12953
7d5bd53555d8
markup commands: proper theory/proof transactions!
wenzelm
parents:
12938
diff
changeset
|
584 |
in |
|
7d5bd53555d8
markup commands: proper theory/proof transactions!
wenzelm
parents:
12938
diff
changeset
|
585 |
|
| 19057 | 586 |
val add_chapter = present_local_theory Present.section; |
587 |
val add_section = present_local_theory Present.section; |
|
588 |
val add_subsection = present_local_theory Present.subsection; |
|
589 |
val add_subsubsection = present_local_theory Present.subsubsection; |
|
590 |
val add_text = present_local_theory (K ()); |
|
591 |
fun add_text_raw txt = present_local_theory (K ()) (NONE, txt); |
|
592 |
val add_txt = present_proof (K ()); |
|
593 |
val add_txt_raw = add_txt; |
|
594 |
val add_sect = add_txt; |
|
595 |
val add_subsect = add_txt; |
|
596 |
val add_subsubsect = add_txt; |
|
|
12938
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents:
12876
diff
changeset
|
597 |
|
| 5831 | 598 |
end; |
|
12953
7d5bd53555d8
markup commands: proper theory/proof transactions!
wenzelm
parents:
12938
diff
changeset
|
599 |
|
|
7d5bd53555d8
markup commands: proper theory/proof transactions!
wenzelm
parents:
12938
diff
changeset
|
600 |
end; |