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