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