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