| author | wenzelm | 
| Tue, 30 Dec 2008 21:46:48 +0100 | |
| changeset 29258 | bce03c644efb | 
| parent 29230 | 155f6c110dfc | 
| child 29360 | a5be60c3674e | 
| permissions | -rw-r--r-- | 
| 5831 | 1 | (* Title: Pure/Isar/isar_cmd.ML | 
| 2 | ID: $Id$ | |
| 3 | Author: Markus Wenzel, TU Muenchen | |
| 4 | ||
| 21350 | 5 | Derived Isar commands. | 
| 5831 | 6 | *) | 
| 7 | ||
| 8 | signature ISAR_CMD = | |
| 9 | sig | |
| 26435 | 10 | val generic_setup: string * Position.T -> theory -> theory | 
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
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 | 
| 28290 | 16 | val oracle: bstring -> SymbolPos.text * Position.T -> theory -> theory | 
| 28965 | 17 | val add_axioms: ((Binding.T * string) * Attrib.src list) list -> theory -> theory | 
| 18 | val add_defs: (bool * bool) * ((Binding.T * 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 | 
| 7462 | 36 | val welcome: Toplevel.transition -> Toplevel.transition | 
| 5831 | 37 | val exit: Toplevel.transition -> Toplevel.transition | 
| 38 | val quit: Toplevel.transition -> Toplevel.transition | |
| 9731 | 39 | val pr: string list * (int option * int option) -> Toplevel.transition -> Toplevel.transition | 
| 8453 | 40 | val disable_pr: Toplevel.transition -> Toplevel.transition | 
| 41 | val enable_pr: Toplevel.transition -> Toplevel.transition | |
| 26489 | 42 | val ml_diag: bool -> string * Position.T -> Toplevel.transition -> Toplevel.transition | 
| 14950 | 43 | val cd: Path.T -> Toplevel.transition -> Toplevel.transition | 
| 5831 | 44 | val pwd: Toplevel.transition -> Toplevel.transition | 
| 14950 | 45 | val display_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition | 
| 46 | val print_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition | |
| 7124 | 47 | val pretty_setmargin: int -> Toplevel.transition -> Toplevel.transition | 
| 7308 | 48 | val print_context: Toplevel.transition -> Toplevel.transition | 
| 20621 | 49 | val print_theory: bool -> Toplevel.transition -> Toplevel.transition | 
| 5831 | 50 | val print_syntax: Toplevel.transition -> Toplevel.transition | 
| 21725 | 51 | 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 | 52 | val print_facts: Toplevel.transition -> Toplevel.transition | 
| 24115 | 53 | val print_configs: Toplevel.transition -> Toplevel.transition | 
| 5880 | 54 | val print_theorems: Toplevel.transition -> Toplevel.transition | 
| 12060 | 55 | val print_locales: Toplevel.transition -> Toplevel.transition | 
| 29223 | 56 | val print_locale: bool * xstring -> Toplevel.transition -> Toplevel.transition | 
| 17139 
165c97f9bb63
Printing of interpretations: option to show witness theorems;
 ballarin parents: 
17066diff
changeset | 57 | val print_registrations: bool -> string -> Toplevel.transition -> Toplevel.transition | 
| 5831 | 58 | val print_attributes: Toplevel.transition -> Toplevel.transition | 
| 16026 | 59 | val print_simpset: Toplevel.transition -> Toplevel.transition | 
| 12382 | 60 | val print_rules: Toplevel.transition -> Toplevel.transition | 
| 9219 | 61 | val print_trans_rules: Toplevel.transition -> Toplevel.transition | 
| 5831 | 62 | val print_methods: Toplevel.transition -> Toplevel.transition | 
| 9219 | 63 | val print_antiquotations: Toplevel.transition -> Toplevel.transition | 
| 20574 | 64 | val class_deps: Toplevel.transition -> Toplevel.transition | 
| 22485 | 65 | val thy_deps: Toplevel.transition -> Toplevel.transition | 
| 26336 
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
 wenzelm parents: 
26186diff
changeset | 66 | val thm_deps: (Facts.ref * Attrib.src list) list -> Toplevel.transition -> Toplevel.transition | 
| 22340 
275802767bf3
Remove duplicates from printed theorems in find_theorems
 kleing parents: 
22239diff
changeset | 67 | val find_theorems: (int option * bool) * (bool * string FindTheorems.criterion) list | 
| 13284 | 68 | -> Toplevel.transition -> Toplevel.transition | 
| 26184 | 69 | val unused_thms: (string list * string list option) option -> | 
| 70 | Toplevel.transition -> Toplevel.transition | |
| 5831 | 71 | val print_binds: Toplevel.transition -> Toplevel.transition | 
| 8369 | 72 | val print_cases: Toplevel.transition -> Toplevel.transition | 
| 26336 
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
 wenzelm parents: 
26186diff
changeset | 73 | val print_stmts: string list * (Facts.ref * Attrib.src list) list | 
| 19268 | 74 | -> Toplevel.transition -> Toplevel.transition | 
| 26336 
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
 wenzelm parents: 
26186diff
changeset | 75 | val print_thms: string list * (Facts.ref * Attrib.src list) list | 
| 10581 | 76 | -> Toplevel.transition -> Toplevel.transition | 
| 26336 
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
 wenzelm parents: 
26186diff
changeset | 77 | 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 | 78 | -> Toplevel.transition -> Toplevel.transition | 
| 12876 
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
 wenzelm parents: 
12758diff
changeset | 79 | 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 | 80 | 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 | 81 | 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 | 82 | 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 | 83 | 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 | 84 | Toplevel.transition -> Toplevel.transition | 
| 27871 
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
 wenzelm parents: 
27853diff
changeset | 85 | val proof_markup: SymbolPos.text * Position.T -> Toplevel.transition -> Toplevel.transition | 
| 5831 | 86 | end; | 
| 87 | ||
| 88 | structure IsarCmd: ISAR_CMD = | |
| 89 | struct | |
| 90 | ||
| 91 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 92 | (** theory declarations **) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 93 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 94 | (* generic_setup *) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 95 | |
| 26435 | 96 | fun generic_setup (txt, pos) = | 
| 26455 | 97 | ML_Context.expression pos "val setup: theory -> theory" "Context.map_theory setup" txt | 
| 26435 | 98 | |> Context.theory_map; | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 99 | |
| 
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 | |
| 28290 | 153 | fun oracle name (oracle_txt, pos) = | 
| 27871 
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
 wenzelm parents: 
27853diff
changeset | 154 | let | 
| 
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
 wenzelm parents: 
27853diff
changeset | 155 | val oracle = SymbolPos.content (SymbolPos.explode (oracle_txt, pos)); | 
| 
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
 wenzelm parents: 
27853diff
changeset | 156 | val txt = | 
| 28290 | 157 | "local\n\ | 
| 27871 
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
 wenzelm parents: 
27853diff
changeset | 158 | \ val name = " ^ quote name ^ ";\n\ | 
| 28290 | 159 | \ val oracle = " ^ oracle ^ ";\n\ | 
| 27871 
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
 wenzelm parents: 
27853diff
changeset | 160 | \in\n\ | 
| 28290 | 161 | \ val " ^ name ^ " = snd (Context.>>> (Context.map_theory_result (Thm.add_oracle (name, oracle))));\n\ | 
| 27871 
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
 wenzelm parents: 
27853diff
changeset | 162 | \end;\n"; | 
| 26455 | 163 | in Context.theory_map (ML_Context.exec (fn () => ML_Context.eval false pos txt)) end; | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 164 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 165 | |
| 21350 | 166 | (* axioms *) | 
| 167 | ||
| 168 | fun add_axms f args thy = | |
| 29006 | 169 | f (map (fn ((b, ax), srcs) => ((Binding.base_name b, ax), map (Attrib.attribute thy) srcs)) args) thy; | 
| 21350 | 170 | |
| 27691 
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
 haftmann parents: 
27614diff
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: 
27614diff
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: 
26336diff
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: 
26336diff
changeset | 184 | |> Context.proof_map; | 
| 22087 | 185 | |
| 186 | ||
| 22202 | 187 | (* simprocs *) | 
| 188 | ||
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26336diff
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: 
26626diff
changeset | 198 | (* hide names *) | 
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 199 | |
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 200 | val hide_kinds = | 
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
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: 
26626diff
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: 
26626diff
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: 
26626diff
changeset | 205 | |
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 206 | fun hide_names b (kind, xnames) thy = | 
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
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: 
26626diff
changeset | 208 | SOME (intern, check, hide) => | 
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 209 | let | 
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 210 | val names = map (intern thy) xnames; | 
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 211 | val bads = filter_out (check thy) names; | 
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 212 | in | 
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
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: 
26626diff
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: 
26626diff
changeset | 215 | end | 
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
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: 
26626diff
changeset | 217 | |
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 218 | |
| 21350 | 219 | (* goals *) | 
| 220 | ||
| 221 | fun goal opt_chain goal stmt int = | |
| 222 | opt_chain #> goal NONE (K Seq.single) stmt int; | |
| 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 | ||
| 232 | fun local_qed m = Toplevel.proofs (Proof.local_qed (m, true)); | |
| 233 | val local_terminal_proof = Toplevel.proofs o Proof.local_terminal_proof; | |
| 234 | val local_default_proof = Toplevel.proofs Proof.local_default_proof; | |
| 235 | val local_immediate_proof = Toplevel.proofs Proof.local_immediate_proof; | |
| 236 | val local_done_proof = Toplevel.proofs Proof.local_done_proof; | |
| 237 | val local_skip_proof = Toplevel.proofs' Proof.local_skip_proof; | |
| 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: 
27562diff
changeset | 266 | fun init_theory (name, imports, uses) = | 
| 
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
 wenzelm parents: 
27562diff
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: 
27562diff
changeset | 268 | (fn thy => | 
| 
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
 wenzelm parents: 
27562diff
changeset | 269 | if ThyInfo.check_known_thy (Context.theory_name thy) | 
| 
4adce8310643
renamed theory to init_theory, removed obsolete kill argument;
 wenzelm parents: 
27562diff
changeset | 270 | then ThyInfo.end_theory thy else ()); | 
| 21350 | 271 | |
| 7462 | 272 | val welcome = Toplevel.imperative (writeln o Session.welcome); | 
| 5831 | 273 | |
| 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 | 
| 29223 | 357 | Toplevel.keep (NewLocale.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 => | 
| 29223 | 361 | NewLocale.print_locale (Toplevel.theory_of state) show_facts name); | 
| 15596 | 362 | |
| 17139 
165c97f9bb63
Printing of interpretations: option to show witness theorems;
 ballarin parents: 
17066diff
changeset | 363 | fun print_registrations show_wits name = Toplevel.unknown_context o | 
| 20957 | 364 | Toplevel.keep (Toplevel.node_case | 
| 24789 
33b7fbc07361
Simplified interface for printing of interpretations.
 ballarin parents: 
24560diff
changeset | 365 | (Context.cases (Locale.print_registrations show_wits name o ProofContext.init) | 
| 
33b7fbc07361
Simplified interface for printing of interpretations.
 ballarin parents: 
24560diff
changeset | 366 | (Locale.print_registrations show_wits name)) | 
| 
33b7fbc07361
Simplified interface for printing of interpretations.
 ballarin parents: 
24560diff
changeset | 367 | (Locale.print_registrations show_wits name o Proof.context_of)); | 
| 12060 | 368 | |
| 9513 | 369 | val print_attributes = Toplevel.unknown_theory o | 
| 370 | Toplevel.keep (Attrib.print_attributes o Toplevel.theory_of); | |
| 371 | ||
| 16026 | 372 | val print_simpset = Toplevel.unknown_context o | 
| 27582 | 373 | Toplevel.keep (Pretty.writeln o Simplifier.pretty_ss o Simplifier.local_simpset_of o Toplevel.context_of); | 
| 16026 | 374 | |
| 12382 | 375 | val print_rules = Toplevel.unknown_context o | 
| 18639 | 376 | Toplevel.keep (ContextRules.print_rules o Toplevel.context_of); | 
| 12382 | 377 | |
| 9513 | 378 | val print_trans_rules = Toplevel.unknown_context o | 
| 18639 | 379 | Toplevel.keep (Calculation.print_rules o Toplevel.context_of); | 
| 9513 | 380 | |
| 381 | val print_methods = Toplevel.unknown_theory o | |
| 382 | Toplevel.keep (Method.print_methods o Toplevel.theory_of); | |
| 383 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 384 | val print_antiquotations = Toplevel.imperative ThyOutput.print_antiquotations; | 
| 5831 | 385 | |
| 22485 | 386 | val thy_deps = Toplevel.unknown_theory o Toplevel.keep (fn state => | 
| 387 | let | |
| 388 | val thy = Toplevel.theory_of state; | |
| 24560 
2693220bd77f
thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
 wenzelm parents: 
24508diff
changeset | 389 | val all_thys = sort ThyInfo.thy_ord (thy :: Theory.ancestors_of thy); | 
| 22604 | 390 | val gr = all_thys |> map (fn node => | 
| 22602 
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
 wenzelm parents: 
22573diff
changeset | 391 | let | 
| 
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
 wenzelm parents: 
22573diff
changeset | 392 | val name = Context.theory_name node; | 
| 
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
 wenzelm parents: 
22573diff
changeset | 393 | 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 | 394 | val dir = Present.session_name node; | 
| 
2693220bd77f
thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
 wenzelm parents: 
24508diff
changeset | 395 | 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 | 396 |       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 | 397 | in Present.display_graph gr end); | 
| 22485 | 398 | |
| 20574 | 399 | val class_deps = Toplevel.unknown_theory o Toplevel.keep (fn state => | 
| 400 | let | |
| 401 | val thy = Toplevel.theory_of state; | |
| 402 |     val {classes = (space, algebra), ...} = Type.rep_tsig (Sign.tsig_of thy);
 | |
| 403 |     val {classes, ...} = Sorts.rep_algebra algebra;
 | |
| 404 | fun entry (c, (i, (_, cs))) = | |
| 405 |       (i, {name = NameSpace.extern space c, ID = c, parents = cs,
 | |
| 406 | dir = "", unfold = true, path = ""}); | |
| 407 | val gr = | |
| 408 | Graph.fold (cons o entry) classes [] | |
| 409 | |> sort (int_ord o pairself #1) |> map #2; | |
| 410 | in Present.display_graph gr end); | |
| 411 | ||
| 15964 
f2074e12d1d4
searching for thms by combination of criteria (intro, elim, dest, name, term pattern)
 kleing parents: 
15799diff
changeset | 412 | |
| 16026 | 413 | (* retrieve theorems *) | 
| 7615 | 414 | |
| 9513 | 415 | 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 | 416 | ThmDeps.thm_deps (Proof.get_thmss (Toplevel.enter_proof_body state) args)); | 
| 9454 | 417 | |
| 24560 
2693220bd77f
thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
 wenzelm parents: 
24508diff
changeset | 418 | fun find_theorems ((opt_lim, rem_dups), spec) = | 
| 22340 
275802767bf3
Remove duplicates from printed theorems in find_theorems
 kleing parents: 
22239diff
changeset | 419 | Toplevel.unknown_theory o Toplevel.keep (fn state => | 
| 16026 | 420 | let | 
| 21003 
37492b0062c6
renamed print_lthms to print_facts, do not insist on proof state;
 wenzelm parents: 
20978diff
changeset | 421 | val proof_state = Toplevel.enter_proof_body state; | 
| 16026 | 422 | val ctxt = Proof.context_of proof_state; | 
| 423 | val opt_goal = try Proof.get_goal proof_state |> Option.map (Thm.prop_of o #2 o #2); | |
| 22340 
275802767bf3
Remove duplicates from printed theorems in find_theorems
 kleing parents: 
22239diff
changeset | 424 | in FindTheorems.print_theorems ctxt opt_goal opt_lim rem_dups spec end); | 
| 16026 | 425 | |
| 5831 | 426 | |
| 26184 | 427 | (* find unused theorems *) | 
| 428 | ||
| 26186 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 429 | fun unused_thms opt_range = Toplevel.keep (fn state => | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 430 | let | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 431 | val thy = Toplevel.theory_of state; | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 432 | val ctxt = Toplevel.context_of state; | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 433 | 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 | 434 | in | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 435 | ThmDeps.unused_thms | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 436 | (case opt_range of | 
| 26694 | 437 | NONE => (Theory.parents_of thy, [thy]) | 
| 438 | | SOME (xs, NONE) => (map ThyInfo.get_theory xs, [thy]) | |
| 439 | | 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 | 440 | |> map pretty_thm |> Pretty.chunks |> Pretty.writeln | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 441 | end); | 
| 26184 | 442 | |
| 443 | ||
| 5831 | 444 | (* print proof context contents *) | 
| 445 | ||
| 21663 | 446 | val print_binds = Toplevel.unknown_context o Toplevel.keep (fn state => | 
| 447 | ProofContext.setmp_verbose ProofContext.print_binds (Toplevel.context_of state)); | |
| 9513 | 448 | |
| 21663 | 449 | val print_cases = Toplevel.unknown_context o Toplevel.keep (fn state => | 
| 450 | ProofContext.setmp_verbose ProofContext.print_cases (Toplevel.context_of state)); | |
| 5831 | 451 | |
| 452 | ||
| 19268 | 453 | (* print theorems, terms, types etc. *) | 
| 454 | ||
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 455 | local | 
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 456 | |
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 457 | fun string_of_stmts state args = | 
| 19268 | 458 | Proof.get_thmss state args | 
| 21437 | 459 | |> 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 | 460 | |> Pretty.chunks2 |> Pretty.string_of; | 
| 5880 | 461 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 462 | fun string_of_thms state args = | 
| 12055 | 463 | 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 | 464 | (Proof.get_thmss state args)); | 
| 5895 | 465 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 466 | fun string_of_prfs full state arg = | 
| 17066 | 467 | Pretty.string_of (case arg of | 
| 15531 | 468 | NONE => | 
| 12125 
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
 berghofe parents: 
12069diff
changeset | 469 | let | 
| 17066 | 470 | val (ctxt, (_, thm)) = Proof.get_goal state; | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26599diff
changeset | 471 | val thy = ProofContext.theory_of ctxt; | 
| 28814 | 472 | val prf = Thm.proof_of thm; | 
| 17066 | 473 | 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 | 474 | 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 | 475 | in | 
| 27258 
656cfac246be
moved ProofContext.pretty_proof to ProofSyntax.pretty_proof;
 wenzelm parents: 
27200diff
changeset | 476 | ProofSyntax.pretty_proof ctxt | 
| 17066 | 477 | (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 | 478 | end | 
| 15531 | 479 | | SOME args => Pretty.chunks | 
| 27258 
656cfac246be
moved ProofContext.pretty_proof to ProofSyntax.pretty_proof;
 wenzelm parents: 
27200diff
changeset | 480 | (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 | 481 | (Proof.get_thmss state args))); | 
| 11524 
197f2e14a714
Added functions for printing primitive proof terms.
 berghofe parents: 
11017diff
changeset | 482 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 483 | fun string_of_prop state s = | 
| 5831 | 484 | let | 
| 12055 | 485 | val ctxt = Proof.context_of state; | 
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24314diff
changeset | 486 | val prop = Syntax.read_prop ctxt s; | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 487 | val ctxt' = Variable.auto_fixes prop ctxt; | 
| 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 488 | in Pretty.string_of (Pretty.quote (Syntax.pretty_term ctxt' prop)) end; | 
| 5831 | 489 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 490 | fun string_of_term state s = | 
| 5831 | 491 | let | 
| 12055 | 492 | val ctxt = Proof.context_of state; | 
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24314diff
changeset | 493 | val t = Syntax.read_term ctxt s; | 
| 5831 | 494 | val T = Term.type_of t; | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 495 | val ctxt' = Variable.auto_fixes t ctxt; | 
| 5831 | 496 | in | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 497 | Pretty.string_of | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 498 | (Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t), Pretty.fbrk, | 
| 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 499 | Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' T)]) | 
| 9128 | 500 | end; | 
| 5831 | 501 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 502 | fun string_of_type state s = | 
| 5831 | 503 | let | 
| 12055 | 504 | val ctxt = Proof.context_of state; | 
| 25331 | 505 | val T = Syntax.read_typ ctxt s; | 
| 24920 | 506 | in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt T)) end; | 
| 9128 | 507 | |
| 23935 | 508 | fun print_item string_of (modes, arg) = Toplevel.keep (fn state => | 
| 509 | PrintMode.with_modes modes (fn () => | |
| 510 | 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 | 511 | |
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 512 | in | 
| 9128 | 513 | |
| 19268 | 514 | 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 | 515 | val print_thms = print_item string_of_thms; | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 516 | 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 | 517 | val print_prop = print_item string_of_prop; | 
| 
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
 wenzelm parents: 
12758diff
changeset | 518 | val print_term = print_item string_of_term; | 
| 
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
 wenzelm parents: 
12758diff
changeset | 519 | val print_type = print_item string_of_type; | 
| 5831 | 520 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 521 | end; | 
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 522 | |
| 12938 
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
 wenzelm parents: 
12876diff
changeset | 523 | |
| 
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
 wenzelm parents: 
12876diff
changeset | 524 | (* markup commands *) | 
| 
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
 wenzelm parents: 
12876diff
changeset | 525 | |
| 27876 | 526 | fun check_text (txt, pos) opt_node = | 
| 527 | (Position.report Markup.doc_source pos; | |
| 528 | ignore (ThyOutput.eval_antiquote (#1 (OuterKeyword.get_lexicons ())) opt_node (txt, pos))); | |
| 12953 
7d5bd53555d8
markup commands: proper theory/proof transactions!
 wenzelm parents: 
12938diff
changeset | 529 | |
| 27853 
916038f77be6
simplified markup commands -- removed obsolete Present.results, always check text;
 wenzelm parents: 
27730diff
changeset | 530 | fun header_markup txt = Toplevel.keep (fn state => | 
| 
916038f77be6
simplified markup commands -- removed obsolete Present.results, always check text;
 wenzelm parents: 
27730diff
changeset | 531 | if Toplevel.is_toplevel state then check_text txt NONE | 
| 
916038f77be6
simplified markup commands -- removed obsolete Present.results, always check text;
 wenzelm parents: 
27730diff
changeset | 532 | else raise Toplevel.UNDEF); | 
| 12953 
7d5bd53555d8
markup commands: proper theory/proof transactions!
 wenzelm parents: 
12938diff
changeset | 533 | |
| 27853 
916038f77be6
simplified markup commands -- removed obsolete Present.results, always check text;
 wenzelm parents: 
27730diff
changeset | 534 | fun local_theory_markup (loc, txt) = Toplevel.present_local_theory loc (check_text txt o SOME); | 
| 
916038f77be6
simplified markup commands -- removed obsolete Present.results, always check text;
 wenzelm parents: 
27730diff
changeset | 535 | fun proof_markup txt = Toplevel.present_proof (check_text txt o SOME); | 
| 12938 
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
 wenzelm parents: 
12876diff
changeset | 536 | |
| 5831 | 537 | end; |