| author | haftmann | 
| Tue, 23 Apr 2013 11:14:50 +0200 | |
| changeset 51734 | d504e349e951 | 
| parent 51717 | 9e7d1c139569 | 
| child 52143 | 36ffe23b25f8 | 
| permissions | -rw-r--r-- | 
| 5831 | 1 | (* Title: Pure/Isar/isar_cmd.ML | 
| 2 | Author: Markus Wenzel, TU Muenchen | |
| 3 | ||
| 30805 | 4 | Miscellaneous Isar commands. | 
| 5831 | 5 | *) | 
| 6 | ||
| 7 | signature ISAR_CMD = | |
| 8 | sig | |
| 30575 | 9 | val global_setup: Symbol_Pos.text * Position.T -> theory -> theory | 
| 10 | val local_setup: Symbol_Pos.text * Position.T -> Proof.context -> Proof.context | |
| 11 | val parse_ast_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory | |
| 12 | val parse_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory | |
| 13 | val print_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory | |
| 14 | val typed_print_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory | |
| 15 | val print_ast_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory | |
| 42204 | 16 | val translations: (xstring * string) Syntax.trrule list -> theory -> theory | 
| 17 | val no_translations: (xstring * string) Syntax.trrule list -> theory -> theory | |
| 30573 | 18 | val oracle: bstring * Position.T -> Symbol_Pos.text * Position.T -> theory -> theory | 
| 29579 | 19 | val add_defs: (bool * bool) * ((binding * string) * Attrib.src list) list -> theory -> theory | 
| 40784 | 20 |   val declaration: {syntax: bool, pervasive: bool} ->
 | 
| 21 | Symbol_Pos.text * Position.T -> local_theory -> local_theory | |
| 42464 | 22 | val simproc_setup: string * Position.T -> string list -> Symbol_Pos.text * Position.T -> | 
| 23 | string list -> local_theory -> local_theory | |
| 36176 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 24 | val hide_class: bool -> xstring list -> theory -> theory | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 25 | val hide_type: bool -> xstring list -> theory -> theory | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 26 | val hide_const: bool -> xstring list -> theory -> theory | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 27 | val hide_fact: bool -> xstring list -> theory -> theory | 
| 28084 
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
 wenzelm parents: 
28083diff
changeset | 28 | 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 | 29 | 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 | 30 | 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 | 31 | val thus: (Attrib.binding * (string * string list) list) list -> bool -> Proof.state -> Proof.state | 
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 32 | val qed: Method.text_range option -> Toplevel.transition -> Toplevel.transition | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 33 | val terminal_proof: Method.text_range * Method.text_range option -> | 
| 21350 | 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 | |
| 30575 | 39 | val ml_diag: bool -> Symbol_Pos.text * Position.T -> Toplevel.transition -> Toplevel.transition | 
| 48776 
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
 wenzelm parents: 
47815diff
changeset | 40 | val diag_state: Proof.context -> Toplevel.state | 
| 
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
 wenzelm parents: 
47815diff
changeset | 41 |   val diag_goal: Proof.context -> {context: Proof.context, facts: thm list, goal: thm}
 | 
| 48881 
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
 wenzelm parents: 
48792diff
changeset | 42 | val display_drafts: string list -> Toplevel.transition -> Toplevel.transition | 
| 
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
 wenzelm parents: 
48792diff
changeset | 43 | val print_drafts: string list -> Toplevel.transition -> Toplevel.transition | 
| 33515 
d066e8369a33
print_theorems: suppress concealed (global) facts, unless "!" option is given;
 wenzelm parents: 
33456diff
changeset | 44 | val print_theorems: bool -> Toplevel.transition -> Toplevel.transition | 
| 49569 
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
 wenzelm parents: 
49561diff
changeset | 45 | val thy_deps: Toplevel.transition -> Toplevel.transition | 
| 
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
 wenzelm parents: 
49561diff
changeset | 46 | val locale_deps: Toplevel.transition -> Toplevel.transition | 
| 20574 | 47 | val class_deps: Toplevel.transition -> Toplevel.transition | 
| 26336 
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
 wenzelm parents: 
26186diff
changeset | 48 | val thm_deps: (Facts.ref * Attrib.src list) list -> Toplevel.transition -> Toplevel.transition | 
| 26184 | 49 | val unused_thms: (string list * string list option) option -> | 
| 50 | Toplevel.transition -> Toplevel.transition | |
| 26336 
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
 wenzelm parents: 
26186diff
changeset | 51 | val print_stmts: string list * (Facts.ref * Attrib.src list) list | 
| 19268 | 52 | -> Toplevel.transition -> Toplevel.transition | 
| 26336 
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
 wenzelm parents: 
26186diff
changeset | 53 | val print_thms: string list * (Facts.ref * Attrib.src list) list | 
| 10581 | 54 | -> Toplevel.transition -> Toplevel.transition | 
| 26336 
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
 wenzelm parents: 
26186diff
changeset | 55 | 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 | 56 | -> Toplevel.transition -> Toplevel.transition | 
| 12876 
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
 wenzelm parents: 
12758diff
changeset | 57 | 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 | 58 | val print_term: (string list * string) -> Toplevel.transition -> Toplevel.transition | 
| 48792 | 59 | val print_type: (string list * (string * string option)) -> | 
| 60 | Toplevel.transition -> Toplevel.transition | |
| 30573 | 61 | val header_markup: Symbol_Pos.text * Position.T -> Toplevel.transition -> Toplevel.transition | 
| 45488 
6d71d9e52369
pass positions for named targets, for formal links in the document model;
 wenzelm parents: 
45291diff
changeset | 62 | val local_theory_markup: (xstring * Position.T) option * (Symbol_Pos.text * Position.T) -> | 
| 17262 
63cf42df2723
add_chapter/section/subsection/subsubsection/text: optional locale specification;
 wenzelm parents: 
17228diff
changeset | 63 | Toplevel.transition -> Toplevel.transition | 
| 30573 | 64 | val proof_markup: Symbol_Pos.text * Position.T -> Toplevel.transition -> Toplevel.transition | 
| 5831 | 65 | end; | 
| 66 | ||
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
37198diff
changeset | 67 | structure Isar_Cmd: ISAR_CMD = | 
| 5831 | 68 | struct | 
| 69 | ||
| 70 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 71 | (** theory declarations **) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 72 | |
| 30461 | 73 | (* generic setup *) | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 74 | |
| 30461 | 75 | fun global_setup (txt, pos) = | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 76 | ML_Lex.read pos txt | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 77 | |> ML_Context.expression pos "val setup: theory -> theory" "Context.map_theory setup" | 
| 26435 | 78 | |> Context.theory_map; | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 79 | |
| 30461 | 80 | fun local_setup (txt, pos) = | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 81 | ML_Lex.read pos txt | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 82 | |> ML_Context.expression pos "val setup: local_theory -> local_theory" "Context.map_proof setup" | 
| 30461 | 83 | |> Context.proof_map; | 
| 84 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 85 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 86 | (* translation functions *) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 87 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 88 | local | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 89 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 90 | fun advancedT false = "" | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 91 | | advancedT true = "Proof.context -> "; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 92 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 93 | fun advancedN false = "" | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 94 | | advancedN true = "advanced_"; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 95 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 96 | in | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 97 | |
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26336diff
changeset | 98 | fun parse_ast_translation (a, (txt, pos)) = | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 99 | ML_Lex.read pos txt | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 100 | |> ML_Context.expression pos | 
| 26455 | 101 |     ("val parse_ast_translation: (string * (" ^ advancedT a ^
 | 
| 42224 
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
 wenzelm parents: 
42204diff
changeset | 102 | "Ast.ast list -> Ast.ast)) list") | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 103 |     ("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 | 104 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 105 | |
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26336diff
changeset | 106 | fun parse_translation (a, (txt, pos)) = | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 107 | ML_Lex.read pos txt | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 108 | |> ML_Context.expression pos | 
| 26455 | 109 |     ("val parse_translation: (string * (" ^ advancedT a ^
 | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 110 | "term list -> term)) list") | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 111 |     ("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 | 112 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 113 | |
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26336diff
changeset | 114 | fun print_translation (a, (txt, pos)) = | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 115 | ML_Lex.read pos txt | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 116 | |> ML_Context.expression pos | 
| 26455 | 117 |     ("val print_translation: (string * (" ^ advancedT a ^
 | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 118 | "term list -> term)) list") | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 119 |     ("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 | 120 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 121 | |
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26336diff
changeset | 122 | fun print_ast_translation (a, (txt, pos)) = | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 123 | ML_Lex.read pos txt | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 124 | |> ML_Context.expression pos | 
| 26455 | 125 |     ("val print_ast_translation: (string * (" ^ advancedT a ^
 | 
| 42224 
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
 wenzelm parents: 
42204diff
changeset | 126 | "Ast.ast list -> Ast.ast)) list") | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 127 |     ("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 | 128 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 129 | |
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26336diff
changeset | 130 | fun typed_print_translation (a, (txt, pos)) = | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 131 | ML_Lex.read pos txt | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 132 | |> ML_Context.expression pos | 
| 42247 
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
 wenzelm parents: 
42243diff
changeset | 133 |     ("val typed_print_translation: (string * (" ^ advancedT a ^ "typ -> term list -> term)) list")
 | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 134 |     ("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 | 135 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 136 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 137 | end; | 
| 
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 | |
| 42204 | 140 | (* translation rules *) | 
| 141 | ||
| 142 | fun read_trrules thy raw_rules = | |
| 143 | let | |
| 42360 | 144 | val ctxt = Proof_Context.init_global thy; | 
| 42204 | 145 | in | 
| 146 | raw_rules |> map (Syntax.map_trrule (fn (r, s) => | |
| 42360 | 147 | Syntax_Phases.parse_ast_pattern ctxt (Proof_Context.intern_type ctxt r, s))) | 
| 42204 | 148 | end; | 
| 149 | ||
| 150 | fun translations args thy = Sign.add_trrules (read_trrules thy args) thy; | |
| 151 | fun no_translations args thy = Sign.del_trrules (read_trrules thy args) thy; | |
| 152 | ||
| 153 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 154 | (* oracles *) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 155 | |
| 30334 | 156 | fun oracle (name, pos) (body_txt, body_pos) = | 
| 27871 
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
 wenzelm parents: 
27853diff
changeset | 157 | let | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 158 | val body = ML_Lex.read body_pos body_txt; | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 159 | val ants = | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 160 | ML_Lex.read Position.none | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 161 |        ("local\n\
 | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 162 | \ val binding = " ^ ML_Syntax.make_binding (name, pos) ^ ";\n\ | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 163 |         \  val body = ") @ body @ ML_Lex.read Position.none (";\n\
 | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 164 | \in\n\ | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 165 | \ val " ^ name ^ " = snd (Context.>>> (Context.map_theory_result (Thm.add_oracle (binding, body))));\n\ | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 166 | \end;\n"); | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 167 | in Context.theory_map (ML_Context.exec (fn () => ML_Context.eval false body_pos ants)) end; | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 168 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 169 | |
| 50737 | 170 | (* old-style defs *) | 
| 21350 | 171 | |
| 35852 
4e3fe0b8687b
minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
 wenzelm parents: 
35141diff
changeset | 172 | fun add_defs ((unchecked, overloaded), args) thy = | 
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 173 | thy |> | 
| 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 174 | (if unchecked then Global_Theory.add_defs_unchecked_cmd else Global_Theory.add_defs_cmd) | 
| 47815 | 175 | overloaded | 
| 176 | (map (fn ((b, ax), srcs) => ((b, ax), map (Attrib.attribute_cmd_global thy) srcs)) args) | |
| 35852 
4e3fe0b8687b
minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
 wenzelm parents: 
35141diff
changeset | 177 | |> snd; | 
| 21350 | 178 | |
| 179 | ||
| 22087 | 180 | (* declarations *) | 
| 181 | ||
| 40784 | 182 | fun declaration {syntax, pervasive} (txt, pos) =
 | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 183 | ML_Lex.read pos txt | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 184 | |> ML_Context.expression pos | 
| 26455 | 185 | "val declaration: Morphism.declaration" | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
44338diff
changeset | 186 |     ("Context.map_proof (Local_Theory.declaration {syntax = " ^ Bool.toString syntax ^ ", \
 | 
| 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
44338diff
changeset | 187 | \pervasive = " ^ Bool.toString pervasive ^ "} declaration)") | 
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26336diff
changeset | 188 | |> Context.proof_map; | 
| 22087 | 189 | |
| 190 | ||
| 22202 | 191 | (* simprocs *) | 
| 192 | ||
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 193 | fun simproc_setup name lhss (txt, pos) identifier = | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 194 | ML_Lex.read pos txt | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 195 | |> ML_Context.expression pos | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51583diff
changeset | 196 | "val proc: Morphism.morphism -> Proof.context -> cterm -> thm option" | 
| 42464 | 197 |     ("Context.map_proof (Simplifier.def_simproc_cmd {name = " ^ ML_Syntax.make_binding name ^ ", \
 | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 198 | \lhss = " ^ ML_Syntax.print_strings lhss ^ ", proc = proc, \ | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 199 | \identifier = Library.maps ML_Context.thms " ^ ML_Syntax.print_strings identifier ^ "})") | 
| 22202 | 200 | |> Context.proof_map; | 
| 201 | ||
| 202 | ||
| 26671 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 203 | (* hide names *) | 
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 204 | |
| 36176 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 205 | fun hide_names intern check hide fully xnames thy = | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 206 | let | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 207 | val names = map (intern thy) xnames; | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 208 | val bads = filter_out (check thy) names; | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 209 | in | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 210 | if null bads then fold (hide fully) names thy | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 211 |     else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads)
 | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 212 | end; | 
| 26671 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 213 | |
| 36176 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 214 | val hide_class = hide_names Sign.intern_class (can o Sign.certify_class) Sign.hide_class; | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 215 | val hide_type = hide_names Sign.intern_type Sign.declared_tyname Sign.hide_type; | 
| 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36174diff
changeset | 216 | val hide_const = hide_names Sign.intern_const Sign.declared_const Sign.hide_const; | 
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 217 | val hide_fact = | 
| 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 218 | hide_names Global_Theory.intern_fact Global_Theory.defined_fact Global_Theory.hide_fact; | 
| 26671 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 219 | |
| 
c95590e01df5
added hide_names command (formerly Sign.hide_names), support fact name space;
 wenzelm parents: 
26626diff
changeset | 220 | |
| 21350 | 221 | (* goals *) | 
| 222 | ||
| 223 | fun goal opt_chain goal stmt int = | |
| 29383 | 224 | opt_chain #> goal NONE (K I) stmt int; | 
| 21350 | 225 | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36178diff
changeset | 226 | val have = goal I Proof.have_cmd; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36178diff
changeset | 227 | val hence = goal Proof.chain Proof.have_cmd; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36178diff
changeset | 228 | val show = goal I Proof.show_cmd; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36178diff
changeset | 229 | val thus = goal Proof.chain Proof.show_cmd; | 
| 21350 | 230 | |
| 231 | ||
| 232 | (* local endings *) | |
| 233 | ||
| 29383 | 234 | fun local_qed m = Toplevel.proof (Proof.local_qed (m, true)); | 
| 32061 
11f8ee55662d
parallel_proofs: more fine-grained control with optional parallel checking of nested Isar proofs;
 wenzelm parents: 
31819diff
changeset | 235 | val local_terminal_proof = Toplevel.proof' o Proof.local_future_terminal_proof; | 
| 29383 | 236 | val local_default_proof = Toplevel.proof Proof.local_default_proof; | 
| 237 | val local_immediate_proof = Toplevel.proof Proof.local_immediate_proof; | |
| 238 | val local_done_proof = Toplevel.proof Proof.local_done_proof; | |
| 239 | val local_skip_proof = Toplevel.proof' Proof.local_skip_proof; | |
| 21350 | 240 | |
| 27562 | 241 | val skip_local_qed = Toplevel.skip_proof (fn i => if i > 1 then i - 1 else raise Toplevel.UNDEF); | 
| 21350 | 242 | |
| 243 | ||
| 244 | (* global endings *) | |
| 245 | ||
| 246 | fun global_qed m = Toplevel.end_proof (K (Proof.global_qed (m, true))); | |
| 49012 
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
 wenzelm parents: 
48918diff
changeset | 247 | val global_terminal_proof = Toplevel.end_proof o Proof.global_future_terminal_proof; | 
| 21350 | 248 | val global_default_proof = Toplevel.end_proof (K Proof.global_default_proof); | 
| 249 | val global_immediate_proof = Toplevel.end_proof (K Proof.global_immediate_proof); | |
| 250 | val global_skip_proof = Toplevel.end_proof Proof.global_skip_proof; | |
| 251 | val global_done_proof = Toplevel.end_proof (K Proof.global_done_proof); | |
| 252 | ||
| 28375 | 253 | val skip_global_qed = Toplevel.skip_proof_to_theory (fn n => n = 1); | 
| 21350 | 254 | |
| 255 | ||
| 256 | (* common endings *) | |
| 257 | ||
| 258 | fun qed m = local_qed m o global_qed m o skip_local_qed o skip_global_qed; | |
| 259 | fun terminal_proof m = local_terminal_proof m o global_terminal_proof m; | |
| 260 | val default_proof = local_default_proof o global_default_proof; | |
| 261 | val immediate_proof = local_immediate_proof o global_immediate_proof; | |
| 262 | val done_proof = local_done_proof o global_done_proof; | |
| 263 | val skip_proof = local_skip_proof o global_skip_proof; | |
| 264 | ||
| 265 | ||
| 26489 | 266 | (* diagnostic ML evaluation *) | 
| 5831 | 267 | |
| 37305 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 268 | structure Diag_State = Proof_Data | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 269 | ( | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 270 | type T = Toplevel.state; | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 271 | fun init _ = Toplevel.toplevel; | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 272 | ); | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 273 | |
| 26489 | 274 | fun ml_diag verbose (txt, pos) = Toplevel.keep (fn state => | 
| 37305 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 275 | let val opt_ctxt = | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 276 | try Toplevel.generic_theory_of state | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 277 | |> Option.map (Context.proof_of #> Diag_State.put state) | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 278 | in ML_Context.eval_text_in opt_ctxt verbose pos txt end); | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 279 | |
| 48776 
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
 wenzelm parents: 
47815diff
changeset | 280 | val diag_state = Diag_State.get; | 
| 37305 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 281 | |
| 48776 
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
 wenzelm parents: 
47815diff
changeset | 282 | fun diag_goal ctxt = | 
| 
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
 wenzelm parents: 
47815diff
changeset | 283 | Proof.goal (Toplevel.proof_of (diag_state ctxt)) | 
| 37305 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 284 | handle Toplevel.UNDEF => error "No goal present"; | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 285 | |
| 43560 
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
 wenzelm parents: 
42464diff
changeset | 286 | val _ = | 
| 
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
 wenzelm parents: 
42464diff
changeset | 287 | Context.>> (Context.map_theory | 
| 
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
 wenzelm parents: 
42464diff
changeset | 288 | (ML_Antiquote.value (Binding.qualify true "Isar" (Binding.name "state")) | 
| 48776 
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
 wenzelm parents: 
47815diff
changeset | 289 | (Scan.succeed "Isar_Cmd.diag_state ML_context") #> | 
| 43560 
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
 wenzelm parents: 
42464diff
changeset | 290 | ML_Antiquote.value (Binding.qualify true "Isar" (Binding.name "goal")) | 
| 48776 
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
 wenzelm parents: 
47815diff
changeset | 291 | (Scan.succeed "Isar_Cmd.diag_goal ML_context"))); | 
| 5831 | 292 | |
| 293 | ||
| 14934 | 294 | (* present draft files *) | 
| 295 | ||
| 48881 
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
 wenzelm parents: 
48792diff
changeset | 296 | fun display_drafts names = Toplevel.imperative (fn () => | 
| 
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
 wenzelm parents: 
48792diff
changeset | 297 | let | 
| 
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
 wenzelm parents: 
48792diff
changeset | 298 | val paths = map Path.explode names; | 
| 
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
 wenzelm parents: 
48792diff
changeset | 299 | val outfile = File.shell_path (Present.drafts (getenv "ISABELLE_DOC_FORMAT") paths); | 
| 40743 | 300 |   in Isabelle_System.isabelle_tool "display" ("-c " ^ outfile ^ " &"); () end);
 | 
| 14934 | 301 | |
| 48881 
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
 wenzelm parents: 
48792diff
changeset | 302 | fun print_drafts names = Toplevel.imperative (fn () => | 
| 
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
 wenzelm parents: 
48792diff
changeset | 303 | let | 
| 
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
 wenzelm parents: 
48792diff
changeset | 304 | val paths = map Path.explode names; | 
| 
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
 wenzelm parents: 
48792diff
changeset | 305 | val outfile = File.shell_path (Present.drafts "ps" paths); | 
| 40743 | 306 |   in Isabelle_System.isabelle_tool "print" ("-c " ^ outfile); () end);
 | 
| 14934 | 307 | |
| 308 | ||
| 50737 | 309 | (* print theorems *) | 
| 23989 | 310 | |
| 35141 | 311 | val print_theorems_proof = | 
| 42360 | 312 | Toplevel.keep (Proof_Context.print_lthms o Proof.context_of o Toplevel.proof_of); | 
| 17066 | 313 | |
| 33515 
d066e8369a33
print_theorems: suppress concealed (global) facts, unless "!" option is given;
 wenzelm parents: 
33456diff
changeset | 314 | fun print_theorems_theory verbose = Toplevel.keep (fn state => | 
| 18588 | 315 | Toplevel.theory_of state |> | 
| 30801 | 316 | (case Toplevel.previous_context_of state of | 
| 42360 | 317 | SOME prev => Proof_Display.print_theorems_diff verbose (Proof_Context.theory_of prev) | 
| 33515 
d066e8369a33
print_theorems: suppress concealed (global) facts, unless "!" option is given;
 wenzelm parents: 
33456diff
changeset | 318 | | NONE => Proof_Display.print_theorems verbose)); | 
| 18588 | 319 | |
| 33515 
d066e8369a33
print_theorems: suppress concealed (global) facts, unless "!" option is given;
 wenzelm parents: 
33456diff
changeset | 320 | fun print_theorems verbose = | 
| 
d066e8369a33
print_theorems: suppress concealed (global) facts, unless "!" option is given;
 wenzelm parents: 
33456diff
changeset | 321 | Toplevel.unknown_context o print_theorems_theory verbose o print_theorems_proof; | 
| 9513 | 322 | |
| 12060 | 323 | |
| 50737 | 324 | (* display dependencies *) | 
| 5831 | 325 | |
| 22485 | 326 | val thy_deps = Toplevel.unknown_theory o Toplevel.keep (fn state => | 
| 327 | let | |
| 328 | val thy = Toplevel.theory_of state; | |
| 37866 
cd1d1bc7684c
thy_deps: more direct comparison of sessions, which is presumably what "unfold" is meant to indicate here -- also avoid referring to accidental theory loader state;
 wenzelm parents: 
37305diff
changeset | 329 | val thy_session = Present.session_name thy; | 
| 
cd1d1bc7684c
thy_deps: more direct comparison of sessions, which is presumably what "unfold" is meant to indicate here -- also avoid referring to accidental theory loader state;
 wenzelm parents: 
37305diff
changeset | 330 | |
| 42425 | 331 | val gr = rev (Theory.nodes_of thy) |> map (fn node => | 
| 22602 
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
 wenzelm parents: 
22573diff
changeset | 332 | let | 
| 
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
 wenzelm parents: 
22573diff
changeset | 333 | val name = Context.theory_name node; | 
| 
a165d9ed08b8
simplified thy_deps using Theory.ancestors_of (in order of creation);
 wenzelm parents: 
22573diff
changeset | 334 | val parents = map Context.theory_name (Theory.parents_of node); | 
| 37866 
cd1d1bc7684c
thy_deps: more direct comparison of sessions, which is presumably what "unfold" is meant to indicate here -- also avoid referring to accidental theory loader state;
 wenzelm parents: 
37305diff
changeset | 335 | val session = Present.session_name node; | 
| 
cd1d1bc7684c
thy_deps: more direct comparison of sessions, which is presumably what "unfold" is meant to indicate here -- also avoid referring to accidental theory loader state;
 wenzelm parents: 
37305diff
changeset | 336 | val unfold = (session = thy_session); | 
| 49561 | 337 | in | 
| 338 |        {name = name, ID = name, parents = parents, dir = session,
 | |
| 339 | unfold = unfold, path = "", content = []} | |
| 340 | end); | |
| 341 | in Graph_Display.display_graph gr end); | |
| 22485 | 342 | |
| 49569 
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
 wenzelm parents: 
49561diff
changeset | 343 | val locale_deps = Toplevel.unknown_theory o Toplevel.keep (fn state => | 
| 
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
 wenzelm parents: 
49561diff
changeset | 344 | let | 
| 
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
 wenzelm parents: 
49561diff
changeset | 345 | val thy = Toplevel.theory_of state; | 
| 
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
 wenzelm parents: 
49561diff
changeset | 346 |     val gr = Locale.pretty_locale_deps thy |> map (fn {name, parents, body} =>
 | 
| 
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
 wenzelm parents: 
49561diff
changeset | 347 |      {name = Locale.extern thy name, ID = name, parents = parents,
 | 
| 
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
 wenzelm parents: 
49561diff
changeset | 348 | dir = "", unfold = true, path = "", content = [body]}); | 
| 
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
 wenzelm parents: 
49561diff
changeset | 349 | in Graph_Display.display_graph gr end); | 
| 
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
 wenzelm parents: 
49561diff
changeset | 350 | |
| 20574 | 351 | val class_deps = Toplevel.unknown_theory o Toplevel.keep (fn state => | 
| 352 | let | |
| 42358 
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
 wenzelm parents: 
42247diff
changeset | 353 | val ctxt = Toplevel.context_of state; | 
| 42360 | 354 |     val {classes = (space, algebra), ...} = Type.rep_tsig (Proof_Context.tsig_of ctxt);
 | 
| 36328 
4d9deabf6474
replaced Sorts.rep_algebra by slightly more abstract selectors classes_of/arities_of;
 wenzelm parents: 
36323diff
changeset | 355 | val classes = Sorts.classes_of algebra; | 
| 20574 | 356 | fun entry (c, (i, (_, cs))) = | 
| 44338 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
43564diff
changeset | 357 |       (i, {name = Name_Space.extern ctxt space c, ID = c, parents = Graph.Keys.dest cs,
 | 
| 49561 | 358 | dir = "", unfold = true, path = "", content = []}); | 
| 20574 | 359 | val gr = | 
| 360 | Graph.fold (cons o entry) classes [] | |
| 361 | |> sort (int_ord o pairself #1) |> map #2; | |
| 49561 | 362 | in Graph_Display.display_graph gr end); | 
| 20574 | 363 | |
| 9513 | 364 | fun thm_deps args = Toplevel.unknown_theory o Toplevel.keep (fn state => | 
| 37870 
dd9cfc512b7f
thm_deps/unused_thms: Context.get_theory based on proper theory ancestry, not accidental theory loader state;
 wenzelm parents: 
37866diff
changeset | 365 | Thm_Deps.thm_deps (Toplevel.theory_of state) | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 366 | (Attrib.eval_thms (Toplevel.context_of state) args)); | 
| 9454 | 367 | |
| 5831 | 368 | |
| 26184 | 369 | (* find unused theorems *) | 
| 370 | ||
| 26186 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 371 | fun unused_thms opt_range = Toplevel.keep (fn state => | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 372 | let | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 373 | val thy = Toplevel.theory_of state; | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 374 | val ctxt = Toplevel.context_of state; | 
| 42360 | 375 | fun pretty_thm (a, th) = Proof_Context.pretty_fact ctxt (a, [th]); | 
| 37870 
dd9cfc512b7f
thm_deps/unused_thms: Context.get_theory based on proper theory ancestry, not accidental theory loader state;
 wenzelm parents: 
37866diff
changeset | 376 | val get_theory = Context.get_theory thy; | 
| 26186 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 377 | in | 
| 33391 | 378 | Thm_Deps.unused_thms | 
| 26186 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 379 | (case opt_range of | 
| 26694 | 380 | NONE => (Theory.parents_of thy, [thy]) | 
| 37870 
dd9cfc512b7f
thm_deps/unused_thms: Context.get_theory based on proper theory ancestry, not accidental theory loader state;
 wenzelm parents: 
37866diff
changeset | 381 | | SOME (xs, NONE) => (map get_theory xs, [thy]) | 
| 
dd9cfc512b7f
thm_deps/unused_thms: Context.get_theory based on proper theory ancestry, not accidental theory loader state;
 wenzelm parents: 
37866diff
changeset | 382 | | SOME (xs, SOME ys) => (map get_theory xs, map get_theory ys)) | 
| 26186 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 383 | |> map pretty_thm |> Pretty.chunks |> Pretty.writeln | 
| 
9af968b694d9
unused_thms: print via official context (ProofContext.pretty_fact),
 wenzelm parents: 
26184diff
changeset | 384 | end); | 
| 26184 | 385 | |
| 386 | ||
| 19268 | 387 | (* print theorems, terms, types etc. *) | 
| 388 | ||
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 389 | local | 
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 390 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 391 | fun string_of_stmts ctxt args = | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 392 | Attrib.eval_thms ctxt args | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 393 | |> map (Element.pretty_statement ctxt Thm.theoremK) | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 394 | |> Pretty.chunks2 |> Pretty.string_of; | 
| 5880 | 395 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 396 | fun string_of_thms ctxt args = | 
| 51583 | 397 |   Pretty.string_of (Proof_Context.pretty_fact ctxt ("", Attrib.eval_thms ctxt args));
 | 
| 5895 | 398 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 399 | fun string_of_prfs full state arg = | 
| 32859 
204f749f35a9
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
 wenzelm parents: 
32804diff
changeset | 400 | Pretty.string_of | 
| 
204f749f35a9
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
 wenzelm parents: 
32804diff
changeset | 401 | (case arg of | 
| 15531 | 402 | NONE => | 
| 12125 
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
 berghofe parents: 
12069diff
changeset | 403 | let | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 404 |           val {context = ctxt, goal = thm} = Proof.simple_goal (Toplevel.proof_of state);
 | 
| 42360 | 405 | val thy = Proof_Context.theory_of ctxt; | 
| 28814 | 406 | val prf = Thm.proof_of thm; | 
| 17066 | 407 | val prop = Thm.full_prop_of thm; | 
| 32859 
204f749f35a9
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
 wenzelm parents: 
32804diff
changeset | 408 | val prf' = Proofterm.rewrite_proof_notypes ([], []) prf; | 
| 12125 
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
 berghofe parents: 
12069diff
changeset | 409 | in | 
| 33388 | 410 | Proof_Syntax.pretty_proof ctxt | 
| 17066 | 411 | (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 | 412 | end | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 413 | | SOME srcs => | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 414 | let val ctxt = Toplevel.context_of state | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 415 | in map (Proof_Syntax.pretty_proof_of ctxt full) (Attrib.eval_thms ctxt srcs) end | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 416 | |> Pretty.chunks); | 
| 11524 
197f2e14a714
Added functions for printing primitive proof terms.
 berghofe parents: 
11017diff
changeset | 417 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 418 | fun string_of_prop ctxt s = | 
| 5831 | 419 | let | 
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24314diff
changeset | 420 | val prop = Syntax.read_prop ctxt s; | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 421 | val ctxt' = Variable.auto_fixes prop ctxt; | 
| 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 422 | in Pretty.string_of (Pretty.quote (Syntax.pretty_term ctxt' prop)) end; | 
| 5831 | 423 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 424 | fun string_of_term ctxt s = | 
| 5831 | 425 | let | 
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24314diff
changeset | 426 | val t = Syntax.read_term ctxt s; | 
| 5831 | 427 | val T = Term.type_of t; | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 428 | val ctxt' = Variable.auto_fixes t ctxt; | 
| 5831 | 429 | in | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 430 | Pretty.string_of | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 431 | (Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t), Pretty.fbrk, | 
| 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 432 | Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' T)]) | 
| 9128 | 433 | end; | 
| 5831 | 434 | |
| 48792 | 435 | fun string_of_type ctxt (s, NONE) = | 
| 436 | let val T = Syntax.read_typ ctxt s | |
| 437 | in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt T)) end | |
| 438 | | string_of_type ctxt (s1, SOME s2) = | |
| 439 | let | |
| 440 | val ctxt' = Config.put show_sorts true ctxt; | |
| 441 | val raw_T = Syntax.parse_typ ctxt' s1; | |
| 442 | val S = Syntax.read_sort ctxt' s2; | |
| 443 | val T = | |
| 444 | Syntax.check_term ctxt' | |
| 445 | (Logic.mk_type raw_T |> Type.constraint (Term.itselfT (Type_Infer.anyT S))) | |
| 446 | |> Logic.dest_type; | |
| 447 | in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt' T)) end; | |
| 9128 | 448 | |
| 23935 | 449 | fun print_item string_of (modes, arg) = Toplevel.keep (fn state => | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 450 | Print_Mode.with_modes modes (fn () => writeln (string_of state arg)) ()); | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 451 | |
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 452 | in | 
| 9128 | 453 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 454 | val print_stmts = print_item (string_of_stmts o Toplevel.context_of); | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 455 | val print_thms = print_item (string_of_thms o Toplevel.context_of); | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 456 | val print_prfs = print_item o string_of_prfs; | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 457 | val print_prop = print_item (string_of_prop o Toplevel.context_of); | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 458 | val print_term = print_item (string_of_term o Toplevel.context_of); | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 459 | val print_type = print_item (string_of_type o Toplevel.context_of); | 
| 5831 | 460 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 461 | end; | 
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 462 | |
| 12938 
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
 wenzelm parents: 
12876diff
changeset | 463 | |
| 
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
 wenzelm parents: 
12876diff
changeset | 464 | (* markup commands *) | 
| 
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
 wenzelm parents: 
12876diff
changeset | 465 | |
| 27853 
916038f77be6
simplified markup commands -- removed obsolete Present.results, always check text;
 wenzelm parents: 
27730diff
changeset | 466 | fun header_markup txt = Toplevel.keep (fn state => | 
| 48918 
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
 wenzelm parents: 
48881diff
changeset | 467 | if Toplevel.is_toplevel state then Thy_Output.check_text txt state | 
| 27853 
916038f77be6
simplified markup commands -- removed obsolete Present.results, always check text;
 wenzelm parents: 
27730diff
changeset | 468 | else raise Toplevel.UNDEF); | 
| 12953 
7d5bd53555d8
markup commands: proper theory/proof transactions!
 wenzelm parents: 
12938diff
changeset | 469 | |
| 48918 
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
 wenzelm parents: 
48881diff
changeset | 470 | fun local_theory_markup (loc, txt) = Toplevel.present_local_theory loc (Thy_Output.check_text txt); | 
| 
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
 wenzelm parents: 
48881diff
changeset | 471 | val proof_markup = Toplevel.present_proof o Thy_Output.check_text; | 
| 12938 
a646d0467d81
markup commands (from isar_thy.ML) with proper check of antiquotations;
 wenzelm parents: 
12876diff
changeset | 472 | |
| 5831 | 473 | end; |