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