src/Pure/Isar/isar_cmd.ML
author wenzelm
Thu, 07 Aug 2008 13:44:33 +0200
changeset 27762 4936264477f2
parent 27730 f76b87a9d27c
child 27853 916038f77be6
permissions -rw-r--r--
added General/symbol_pos.ML;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/isar_cmd.ML
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     4
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
     5
Derived Isar commands.
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     6
*)
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     7
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     8
signature ISAR_CMD =
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     9
sig
26435
bdce320cd426 eliminated delayed theory setup
wenzelm
parents: 26425
diff changeset
    10
  val generic_setup: string * Position.T -> theory -> theory
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
    11
  val parse_ast_translation: bool * (string * Position.T) -> theory -> theory
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
    12
  val parse_translation: bool * (string * Position.T) -> theory -> theory
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
    13
  val print_translation: bool * (string * Position.T) -> theory -> theory
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
    14
  val typed_print_translation: bool * (string * Position.T) -> theory -> theory
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
    15
  val print_ast_translation: bool * (string * Position.T) -> theory -> theory
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
    16
  val oracle: bstring -> string -> string * Position.T -> theory -> theory
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    17
  val add_axioms: ((bstring * string) * Attrib.src list) list -> theory -> theory
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    18
  val add_defs: (bool * bool) * ((bstring * string) * Attrib.src list) list -> theory -> theory
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
    19
  val declaration: string * Position.T -> local_theory -> local_theory
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
    20
  val simproc_setup: string -> string list -> string * Position.T -> string list ->
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
    21
    local_theory -> local_theory
26671
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
    22
  val hide_names: bool -> string * xstring list -> theory -> theory
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    23
  val have: ((string * Attrib.src list) * (string * string list) list) list ->
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    24
    bool -> Proof.state -> Proof.state
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    25
  val hence: ((string * Attrib.src list) * (string * string list) list) list ->
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    26
    bool -> Proof.state -> Proof.state
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    27
  val show: ((string * Attrib.src list) * (string * string list) list) list ->
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    28
    bool -> Proof.state -> Proof.state
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    29
  val thus: ((string * Attrib.src list) * (string * string list) list) list ->
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    30
    bool -> Proof.state -> Proof.state
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    31
  val qed: Method.text option -> Toplevel.transition -> Toplevel.transition
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    32
  val terminal_proof: Method.text * Method.text option ->
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    33
    Toplevel.transition -> Toplevel.transition
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    34
  val default_proof: Toplevel.transition -> Toplevel.transition
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    35
  val immediate_proof: Toplevel.transition -> Toplevel.transition
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    36
  val done_proof: Toplevel.transition -> Toplevel.transition
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    37
  val skip_proof: Toplevel.transition -> Toplevel.transition
27574
4adce8310643 renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents: 27562
diff changeset
    38
  val init_theory: string * string list * (string * bool) list ->
4adce8310643 renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents: 27562
diff changeset
    39
    Toplevel.transition -> Toplevel.transition
7462
f738df1d82e1 added welcome;
wenzelm
parents: 7413
diff changeset
    40
  val welcome: Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    41
  val exit: Toplevel.transition -> Toplevel.transition
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    42
  val quit: Toplevel.transition -> Toplevel.transition
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9513
diff changeset
    43
  val pr: string list * (int option * int option) -> Toplevel.transition -> Toplevel.transition
8453
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
    44
  val disable_pr: Toplevel.transition -> Toplevel.transition
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
    45
  val enable_pr: Toplevel.transition -> Toplevel.transition
26489
e83dc4bb9ab4 removed obsolete use_XXX;
wenzelm
parents: 26463
diff changeset
    46
  val ml_diag: bool -> string * Position.T -> Toplevel.transition -> Toplevel.transition
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
    47
  val cd: Path.T -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    48
  val pwd: Toplevel.transition -> Toplevel.transition
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
    49
  val display_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
    50
  val print_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
    51
  val pretty_setmargin: int -> Toplevel.transition -> Toplevel.transition
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7124
diff changeset
    52
  val print_context: Toplevel.transition -> Toplevel.transition
20621
29d57880ba00 'print_theory': bang option for full verbosity;
wenzelm
parents: 20574
diff changeset
    53
  val print_theory: bool -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    54
  val print_syntax: Toplevel.transition -> Toplevel.transition
21725
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
    55
  val print_abbrevs: Toplevel.transition -> Toplevel.transition
21003
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
    56
  val print_facts: Toplevel.transition -> Toplevel.transition
24115
39b407fd6e82 renamed 'print_options' to 'print_configs';
wenzelm
parents: 24071
diff changeset
    57
  val print_configs: Toplevel.transition -> Toplevel.transition
5880
feec44106a8e add print_theorems;
wenzelm
parents: 5831
diff changeset
    58
  val print_theorems: Toplevel.transition -> Toplevel.transition
12060
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
    59
  val print_locales: Toplevel.transition -> Toplevel.transition
18135
41cec935e804 Element.context;
wenzelm
parents: 18063
diff changeset
    60
  val print_locale: bool * (Locale.expr * Element.context list)
12758
f6aceb9d4b8e print_locale: allow full body specification;
wenzelm
parents: 12382
diff changeset
    61
    -> Toplevel.transition -> Toplevel.transition
17139
165c97f9bb63 Printing of interpretations: option to show witness theorems;
ballarin
parents: 17066
diff changeset
    62
  val print_registrations: bool -> string -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    63
  val print_attributes: Toplevel.transition -> Toplevel.transition
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
    64
  val print_simpset: Toplevel.transition -> Toplevel.transition
12382
8896d7f49422 added print_rules;
wenzelm
parents: 12288
diff changeset
    65
  val print_rules: Toplevel.transition -> Toplevel.transition
9219
84af672218b9 added print_trans_rules, print_antiquotations;
wenzelm
parents: 9128
diff changeset
    66
  val print_trans_rules: Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    67
  val print_methods: Toplevel.transition -> Toplevel.transition
9219
84af672218b9 added print_trans_rules, print_antiquotations;
wenzelm
parents: 9128
diff changeset
    68
  val print_antiquotations: Toplevel.transition -> Toplevel.transition
20574
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
    69
  val class_deps: Toplevel.transition -> Toplevel.transition
22485
3a7d623485fa added theory dependency graph
haftmann
parents: 22340
diff changeset
    70
  val thy_deps: Toplevel.transition -> Toplevel.transition
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26186
diff changeset
    71
  val thm_deps: (Facts.ref * Attrib.src list) list -> Toplevel.transition -> Toplevel.transition
22340
275802767bf3 Remove duplicates from printed theorems in find_theorems
kleing
parents: 22239
diff changeset
    72
  val find_theorems: (int option * bool) * (bool * string FindTheorems.criterion) list
13284
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13273
diff changeset
    73
    -> Toplevel.transition -> Toplevel.transition
26184
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
    74
  val unused_thms: (string list * string list option) option ->
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
    75
    Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    76
  val print_binds: Toplevel.transition -> Toplevel.transition
8369
1c833efb2802 added print_cases;
wenzelm
parents: 8349
diff changeset
    77
  val print_cases: Toplevel.transition -> Toplevel.transition
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26186
diff changeset
    78
  val print_stmts: string list * (Facts.ref * Attrib.src list) list
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
    79
    -> Toplevel.transition -> Toplevel.transition
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26186
diff changeset
    80
  val print_thms: string list * (Facts.ref * Attrib.src list) list
10581
74e542a299f0 dignostic commands: comment;
wenzelm
parents: 9731
diff changeset
    81
    -> Toplevel.transition -> Toplevel.transition
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26186
diff changeset
    82
  val print_prfs: bool -> string list * (Facts.ref * Attrib.src list) list option
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11017
diff changeset
    83
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
    84
  val print_prop: (string list * string) -> Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
    85
  val print_term: (string list * string) -> Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
    86
  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: 12876
diff changeset
    87
  val add_header: string * Position.T -> Toplevel.transition -> Toplevel.transition
17262
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    88
  val add_chapter: xstring option * (string * Position.T) ->
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    89
    Toplevel.transition -> Toplevel.transition
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    90
  val add_section: xstring option * (string * Position.T) ->
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    91
    Toplevel.transition -> Toplevel.transition
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    92
  val add_subsection: xstring option * (string * Position.T) ->
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    93
    Toplevel.transition -> Toplevel.transition
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    94
  val add_subsubsection: xstring option * (string * Position.T) ->
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    95
    Toplevel.transition -> Toplevel.transition
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    96
  val add_text: xstring option * (string * Position.T) ->
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    97
    Toplevel.transition -> Toplevel.transition
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
    98
  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: 12876
diff changeset
    99
  val add_sect: string * Position.T -> Toplevel.transition -> Toplevel.transition
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   100
  val add_subsect: string * Position.T -> Toplevel.transition -> Toplevel.transition
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   101
  val add_subsubsect: string * Position.T -> Toplevel.transition -> Toplevel.transition
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   102
  val add_txt: string * Position.T -> Toplevel.transition -> Toplevel.transition
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   103
  val add_txt_raw: string * Position.T -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   104
end;
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   105
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   106
structure IsarCmd: ISAR_CMD =
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   107
struct
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   108
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   109
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   110
(** theory declarations **)
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   111
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   112
(* generic_setup *)
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   113
26435
bdce320cd426 eliminated delayed theory setup
wenzelm
parents: 26425
diff changeset
   114
fun generic_setup (txt, pos) =
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   115
  ML_Context.expression pos "val setup: theory -> theory" "Context.map_theory setup" txt
26435
bdce320cd426 eliminated delayed theory setup
wenzelm
parents: 26425
diff changeset
   116
  |> Context.theory_map;
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   117
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   118
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   119
(* translation functions *)
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   120
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   121
local
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   122
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   123
fun advancedT false = ""
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   124
  | advancedT true = "Proof.context -> ";
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   125
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   126
fun advancedN false = ""
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   127
  | advancedN true = "advanced_";
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   128
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   129
in
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   130
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   131
fun parse_ast_translation (a, (txt, pos)) =
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   132
  txt |> ML_Context.expression pos
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   133
    ("val parse_ast_translation: (string * (" ^ advancedT a ^
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   134
      "Syntax.ast list -> Syntax.ast)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   135
    ("Context.map_theory (Sign.add_" ^ advancedN a ^ "trfuns (parse_ast_translation, [], [], []))")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   136
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   137
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   138
fun parse_translation (a, (txt, pos)) =
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   139
  txt |> ML_Context.expression pos
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   140
    ("val parse_translation: (string * (" ^ advancedT a ^
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   141
      "term list -> term)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   142
    ("Context.map_theory (Sign.add_" ^ advancedN a ^ "trfuns ([], parse_translation, [], []))")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   143
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   144
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   145
fun print_translation (a, (txt, pos)) =
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   146
  txt |> ML_Context.expression pos
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   147
    ("val print_translation: (string * (" ^ advancedT a ^
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   148
      "term list -> term)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   149
    ("Context.map_theory (Sign.add_" ^ advancedN a ^ "trfuns ([], [], print_translation, []))")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   150
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   151
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   152
fun print_ast_translation (a, (txt, pos)) =
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   153
  txt |> ML_Context.expression pos
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   154
    ("val print_ast_translation: (string * (" ^ advancedT a ^
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   155
      "Syntax.ast list -> Syntax.ast)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   156
    ("Context.map_theory (Sign.add_" ^ advancedN a ^ "trfuns ([], [], [], print_ast_translation))")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   157
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   158
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   159
fun typed_print_translation (a, (txt, pos)) =
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   160
  txt |> ML_Context.expression pos
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   161
    ("val typed_print_translation: (string * (" ^ advancedT a ^
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   162
      "bool -> typ -> term list -> term)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   163
    ("Context.map_theory (Sign.add_" ^ advancedN a ^ "trfunsT typed_print_translation)")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   164
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   165
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   166
end;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   167
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   168
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   169
(* oracles *)
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   170
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   171
fun oracle name typ (oracle, pos) =
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   172
  let val txt =
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   173
    "local\
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   174
    \  type T = " ^ typ ^ ";\
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   175
    \  val oracle: theory -> T -> term = " ^ oracle ^ ";\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   176
    \  val name = " ^ quote name ^ ";\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   177
    \  exception Arg of T;\n\
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26455
diff changeset
   178
    \  val _ = Context.>> (Context.map_theory\n\
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26455
diff changeset
   179
    \    (Theory.add_oracle (name, fn (thy, Arg x) => oracle thy x)));\n\
26425
6561665c5cb1 renamed ML_Context.the_context to ML_Context.the_global_context;
wenzelm
parents: 26415
diff changeset
   180
    \  val thy = ML_Context.the_global_context ();\n\
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   181
    \  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: 22087
diff changeset
   182
    \in\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   183
    \  fun " ^ name ^ " thy x = invoke_" ^ name ^ " (thy, Arg x);\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   184
    \end;\n";
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   185
  in Context.theory_map (ML_Context.exec (fn () => ML_Context.eval false pos txt)) end;
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   186
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   187
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   188
(* axioms *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   189
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   190
fun add_axms f args thy =
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   191
  f (map (fn (x, srcs) => (x, map (Attrib.attribute thy) srcs)) args) thy;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   192
27691
ce171cbd4b93 PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents: 27614
diff changeset
   193
val add_axioms = add_axms (snd oo PureThy.add_axioms_cmd);
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   194
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   195
fun add_defs ((unchecked, overloaded), args) =
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   196
  add_axms
27691
ce171cbd4b93 PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents: 27614
diff changeset
   197
    (snd oo (if unchecked then PureThy.add_defs_unchecked_cmd else PureThy.add_defs_cmd) overloaded) args;
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   198
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   199
22087
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   200
(* declarations *)
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   201
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   202
fun declaration (txt, pos) =
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   203
  txt |> ML_Context.expression pos
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   204
    "val declaration: Morphism.declaration"
24020
ed4d7abffee7 tuned signature;
wenzelm
parents: 24009
diff changeset
   205
    "Context.map_proof (LocalTheory.declaration declaration)"
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   206
  |> Context.proof_map;
22087
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   207
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   208
22202
0544af1a5117 added simproc_setup;
wenzelm
parents: 22116
diff changeset
   209
(* simprocs *)
0544af1a5117 added simproc_setup;
wenzelm
parents: 22116
diff changeset
   210
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   211
fun simproc_setup name lhss (proc, pos) identifier =
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   212
  ML_Context.expression pos
22239
9ddd3349d597 tuned oracle interface;
wenzelm
parents: 22202
diff changeset
   213
    "val proc: Morphism.morphism -> Simplifier.simpset -> cterm -> thm option"
9ddd3349d597 tuned oracle interface;
wenzelm
parents: 22202
diff changeset
   214
  ("Context.map_proof (Simplifier.def_simproc {name = " ^ ML_Syntax.print_string name ^ ", \
9ddd3349d597 tuned oracle interface;
wenzelm
parents: 22202
diff changeset
   215
    \lhss = " ^ ML_Syntax.print_strings lhss ^ ", proc = proc, \
9ddd3349d597 tuned oracle interface;
wenzelm
parents: 22202
diff changeset
   216
    \identifier = Library.maps ML_Context.thms " ^ ML_Syntax.print_strings identifier ^ "})") proc
22202
0544af1a5117 added simproc_setup;
wenzelm
parents: 22116
diff changeset
   217
  |> Context.proof_map;
0544af1a5117 added simproc_setup;
wenzelm
parents: 22116
diff changeset
   218
0544af1a5117 added simproc_setup;
wenzelm
parents: 22116
diff changeset
   219
26671
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   220
(* hide names *)
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   221
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   222
val hide_kinds =
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   223
 [("class", (Sign.intern_class, can o Sign.certify_class, Sign.hide_class)),
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   224
  ("type", (Sign.intern_type, Sign.declared_tyname, Sign.hide_type)),
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   225
  ("const", (Sign.intern_const, Sign.declared_const, Sign.hide_const)),
26694
29f5c1a296bc PureThy.defined_fact;
wenzelm
parents: 26671
diff changeset
   226
  ("fact", (PureThy.intern_fact, PureThy.defined_fact, PureThy.hide_fact))];
26671
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   227
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   228
fun hide_names b (kind, xnames) thy =
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   229
  (case AList.lookup (op =) hide_kinds kind of
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   230
    SOME (intern, check, hide) =>
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   231
      let
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   232
        val names = map (intern thy) xnames;
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   233
        val bads = filter_out (check thy) names;
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   234
      in
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   235
        if null bads then fold (hide b) names thy
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   236
        else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads)
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   237
      end
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   238
  | NONE => error ("Bad name space specification: " ^ quote kind));
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   239
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   240
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   241
(* goals *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   242
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   243
fun goal opt_chain goal stmt int =
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   244
  opt_chain #> goal NONE (K Seq.single) stmt int;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   245
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   246
val have = goal I Proof.have;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   247
val hence = goal Proof.chain Proof.have;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   248
val show = goal I Proof.show;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   249
val thus = goal Proof.chain Proof.show;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   250
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   251
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   252
(* local endings *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   253
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   254
fun local_qed m = Toplevel.proofs (Proof.local_qed (m, true));
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   255
val local_terminal_proof = Toplevel.proofs o Proof.local_terminal_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   256
val local_default_proof = Toplevel.proofs Proof.local_default_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   257
val local_immediate_proof = Toplevel.proofs Proof.local_immediate_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   258
val local_done_proof = Toplevel.proofs Proof.local_done_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   259
val local_skip_proof = Toplevel.proofs' Proof.local_skip_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   260
27562
bcb01eb565ee removed obsolete history commands;
wenzelm
parents: 27493
diff changeset
   261
val skip_local_qed = Toplevel.skip_proof (fn i => if i > 1 then i - 1 else raise Toplevel.UNDEF);
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   262
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   263
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   264
(* global endings *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   265
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   266
fun global_qed m = Toplevel.end_proof (K (Proof.global_qed (m, true)));
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   267
val global_terminal_proof = Toplevel.end_proof o K o Proof.global_terminal_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   268
val global_default_proof = Toplevel.end_proof (K Proof.global_default_proof);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   269
val global_immediate_proof = Toplevel.end_proof (K Proof.global_immediate_proof);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   270
val global_skip_proof = Toplevel.end_proof Proof.global_skip_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   271
val global_done_proof = Toplevel.end_proof (K Proof.global_done_proof);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   272
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   273
val skip_global_qed = Toplevel.skip_proof_to_theory (equal 1);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   274
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   275
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   276
(* common endings *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   277
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   278
fun qed m = local_qed m o global_qed m o skip_local_qed o skip_global_qed;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   279
fun terminal_proof m = local_terminal_proof m o global_terminal_proof m;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   280
val default_proof = local_default_proof o global_default_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   281
val immediate_proof = local_immediate_proof o global_immediate_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   282
val done_proof = local_done_proof o global_done_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   283
val skip_proof = local_skip_proof o global_skip_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   284
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   285
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   286
(* init and exit *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   287
27574
4adce8310643 renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents: 27562
diff changeset
   288
fun init_theory (name, imports, uses) =
4adce8310643 renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents: 27562
diff changeset
   289
  Toplevel.init_theory name (ThyInfo.begin_theory name imports (map (apfst Path.explode) uses))
4adce8310643 renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents: 27562
diff changeset
   290
    (fn thy =>
4adce8310643 renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents: 27562
diff changeset
   291
      if ThyInfo.check_known_thy (Context.theory_name thy)
4adce8310643 renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents: 27562
diff changeset
   292
      then ThyInfo.end_theory thy else ());
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   293
7462
f738df1d82e1 added welcome;
wenzelm
parents: 7413
diff changeset
   294
val welcome = Toplevel.imperative (writeln o Session.welcome);
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   295
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   296
val exit = Toplevel.keep (fn state =>
26599
791e4b436f8a Context.set_thread_data: non-critical;
wenzelm
parents: 26498
diff changeset
   297
 (Context.set_thread_data (try Toplevel.generic_theory_of state);
24071
82873bc360c2 marked some CRITICAL sections;
wenzelm
parents: 24031
diff changeset
   298
  raise Toplevel.TERMINATE));
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   299
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   300
val quit = Toplevel.imperative quit;
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   301
7101
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
   302
8453
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   303
(* print state *)
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   304
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   305
fun set_limit _ NONE = ()
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   306
  | set_limit r (SOME n) = r := n;
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9513
diff changeset
   307
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   308
fun pr (modes, (lim1, lim2)) = Toplevel.keep (fn state =>
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9513
diff changeset
   309
  (set_limit goals_limit lim1; set_limit ProofContext.prems_limit lim2; Toplevel.quiet := false;
23935
2a4e42ec9a54 PrintMode.with_modes;
wenzelm
parents: 23897
diff changeset
   310
    PrintMode.with_modes modes (Toplevel.print_state true) state));
8453
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   311
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   312
val disable_pr = Toplevel.imperative (fn () => Toplevel.quiet := true);
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   313
val enable_pr = Toplevel.imperative (fn () => Toplevel.quiet := false);
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   314
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   315
26489
e83dc4bb9ab4 removed obsolete use_XXX;
wenzelm
parents: 26463
diff changeset
   316
(* diagnostic ML evaluation *)
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   317
26489
e83dc4bb9ab4 removed obsolete use_XXX;
wenzelm
parents: 26463
diff changeset
   318
fun ml_diag verbose (txt, pos) = Toplevel.keep (fn state =>
e83dc4bb9ab4 removed obsolete use_XXX;
wenzelm
parents: 26463
diff changeset
   319
  (ML_Context.eval_in (try Toplevel.generic_theory_of state) verbose pos txt));
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   320
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   321
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   322
(* current working directory *)
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   323
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   324
fun cd path = Toplevel.imperative (fn () => (File.cd path));
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 21725
diff changeset
   325
val pwd = Toplevel.imperative (fn () => writeln (Path.implode (File.pwd ())));
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   326
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   327
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   328
(* present draft files *)
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   329
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   330
fun display_drafts files = Toplevel.imperative (fn () =>
16258
f3d913abf7e5 File.shell_path;
wenzelm
parents: 16193
diff changeset
   331
  let val outfile = File.shell_path (Present.drafts (getenv "ISABELLE_DOC_FORMAT") files)
f3d913abf7e5 File.shell_path;
wenzelm
parents: 16193
diff changeset
   332
  in File.isatool ("display -c " ^ outfile ^ " &"); () end);
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   333
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   334
fun print_drafts files = Toplevel.imperative (fn () =>
16258
f3d913abf7e5 File.shell_path;
wenzelm
parents: 16193
diff changeset
   335
  let val outfile = File.shell_path (Present.drafts "ps" files)
f3d913abf7e5 File.shell_path;
wenzelm
parents: 16193
diff changeset
   336
  in File.isatool ("print -c " ^ outfile); () end);
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   337
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   338
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   339
(* pretty_setmargin *)
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   340
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   341
fun pretty_setmargin n = Toplevel.imperative (fn () => Pretty.setmargin n);
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   342
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   343
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   344
(* print parts of theory and proof context *)
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   345
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7124
diff changeset
   346
val print_context = Toplevel.keep Toplevel.print_state_context;
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   347
20621
29d57880ba00 'print_theory': bang option for full verbosity;
wenzelm
parents: 20574
diff changeset
   348
fun print_theory verbose = Toplevel.unknown_theory o
22872
d7189dc8939c tuned ProofDisplay.pretty_full_theory;
wenzelm
parents: 22604
diff changeset
   349
  Toplevel.keep (Pretty.writeln o ProofDisplay.pretty_full_theory verbose o Toplevel.theory_of);
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   350
21663
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   351
val print_syntax = Toplevel.unknown_context o
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   352
  Toplevel.keep (ProofContext.print_syntax o Toplevel.context_of);
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   353
21725
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
   354
val print_abbrevs = Toplevel.unknown_context o
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
   355
  Toplevel.keep (ProofContext.print_abbrevs o Toplevel.context_of);
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
   356
21003
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
   357
val print_facts = Toplevel.unknown_context o Toplevel.keep (fn state =>
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
   358
  ProofContext.setmp_verbose
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 21437
diff changeset
   359
    ProofContext.print_lthms (Toplevel.context_of state));
21003
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
   360
24115
39b407fd6e82 renamed 'print_options' to 'print_configs';
wenzelm
parents: 24071
diff changeset
   361
val print_configs = Toplevel.unknown_context o Toplevel.keep (fn state =>
39b407fd6e82 renamed 'print_options' to 'print_configs';
wenzelm
parents: 24071
diff changeset
   362
  Attrib.print_configs (Toplevel.context_of state));
23989
d7df8545f9f6 added command 'print_options';
wenzelm
parents: 23935
diff changeset
   363
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   364
val print_theorems_proof = Toplevel.keep (fn state =>
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   365
  ProofContext.setmp_verbose
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   366
    ProofContext.print_lthms (Proof.context_of (Toplevel.proof_of state)));
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   367
18588
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   368
val print_theorems_theory = Toplevel.keep (fn state =>
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   369
  Toplevel.theory_of state |>
27574
4adce8310643 renamed theory to init_theory, removed obsolete kill argument;
wenzelm
parents: 27562
diff changeset
   370
  (case Option.map Toplevel.theory_node (Toplevel.previous_node_of state) of
20957
f2a795db0500 undo_end/kill: handle local theory;
wenzelm
parents: 20927
diff changeset
   371
    SOME (SOME prev_thy) => ProofDisplay.print_theorems_diff (Context.theory_of prev_thy)
19430
177e35232d1b ProofDisplay.print_theorems/theory;
wenzelm
parents: 19385
diff changeset
   372
  | _ => ProofDisplay.print_theorems));
18588
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   373
21663
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   374
val print_theorems = Toplevel.unknown_context o print_theorems_theory o print_theorems_proof;
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   375
12060
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
   376
val print_locales = Toplevel.unknown_theory o
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
   377
  Toplevel.keep (Locale.print_locales o Toplevel.theory_of);
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
   378
22573
2ac646ab2f6c avoid clash with Alice keywords;
wenzelm
parents: 22485
diff changeset
   379
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: 19268
diff changeset
   380
  Toplevel.keep (fn state =>
22573
2ac646ab2f6c avoid clash with Alice keywords;
wenzelm
parents: 22485
diff changeset
   381
    Locale.print_locale (Toplevel.theory_of state) show_facts imports body);
15596
8665d08085df First version of global registration command.
ballarin
parents: 15531
diff changeset
   382
17139
165c97f9bb63 Printing of interpretations: option to show witness theorems;
ballarin
parents: 17066
diff changeset
   383
fun print_registrations show_wits name = Toplevel.unknown_context o
20957
f2a795db0500 undo_end/kill: handle local theory;
wenzelm
parents: 20927
diff changeset
   384
  Toplevel.keep (Toplevel.node_case
24789
33b7fbc07361 Simplified interface for printing of interpretations.
ballarin
parents: 24560
diff changeset
   385
      (Context.cases (Locale.print_registrations show_wits name o ProofContext.init)
33b7fbc07361 Simplified interface for printing of interpretations.
ballarin
parents: 24560
diff changeset
   386
        (Locale.print_registrations show_wits name))
33b7fbc07361 Simplified interface for printing of interpretations.
ballarin
parents: 24560
diff changeset
   387
    (Locale.print_registrations show_wits name o Proof.context_of));
12060
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
   388
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   389
val print_attributes = Toplevel.unknown_theory o
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   390
  Toplevel.keep (Attrib.print_attributes o Toplevel.theory_of);
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   391
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   392
val print_simpset = Toplevel.unknown_context o
27582
367aff8d7ffd dropped junk
haftmann
parents: 27574
diff changeset
   393
  Toplevel.keep (Pretty.writeln o Simplifier.pretty_ss o Simplifier.local_simpset_of o Toplevel.context_of);
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   394
12382
8896d7f49422 added print_rules;
wenzelm
parents: 12288
diff changeset
   395
val print_rules = Toplevel.unknown_context o
18639
242fcc3292b6 print rules: generic context;
wenzelm
parents: 18588
diff changeset
   396
  Toplevel.keep (ContextRules.print_rules o Toplevel.context_of);
12382
8896d7f49422 added print_rules;
wenzelm
parents: 12288
diff changeset
   397
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   398
val print_trans_rules = Toplevel.unknown_context o
18639
242fcc3292b6 print rules: generic context;
wenzelm
parents: 18588
diff changeset
   399
  Toplevel.keep (Calculation.print_rules o Toplevel.context_of);
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   400
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   401
val print_methods = Toplevel.unknown_theory o
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   402
  Toplevel.keep (Method.print_methods o Toplevel.theory_of);
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   403
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   404
val print_antiquotations = Toplevel.imperative ThyOutput.print_antiquotations;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   405
22485
3a7d623485fa added theory dependency graph
haftmann
parents: 22340
diff changeset
   406
val thy_deps = Toplevel.unknown_theory o Toplevel.keep (fn state =>
3a7d623485fa added theory dependency graph
haftmann
parents: 22340
diff changeset
   407
  let
3a7d623485fa added theory dependency graph
haftmann
parents: 22340
diff changeset
   408
    val thy = Toplevel.theory_of state;
24560
2693220bd77f thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents: 24508
diff changeset
   409
    val all_thys = sort ThyInfo.thy_ord (thy :: Theory.ancestors_of thy);
22604
6419dcc822f1 thy_deps: sort Context.thy_ord;
wenzelm
parents: 22602
diff changeset
   410
    val gr = all_thys |> map (fn node =>
22602
a165d9ed08b8 simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents: 22573
diff changeset
   411
      let
a165d9ed08b8 simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents: 22573
diff changeset
   412
        val name = Context.theory_name node;
a165d9ed08b8 simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents: 22573
diff changeset
   413
        val parents = map Context.theory_name (Theory.parents_of node);
24560
2693220bd77f thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents: 24508
diff changeset
   414
        val dir = Present.session_name node;
2693220bd77f thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents: 24508
diff changeset
   415
        val unfold = not (ThyInfo.known_thy name andalso ThyInfo.is_finished name);
2693220bd77f thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents: 24508
diff changeset
   416
      in {name = name, ID = name, parents = parents, dir = dir, unfold = unfold, path = ""} end);
22602
a165d9ed08b8 simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents: 22573
diff changeset
   417
  in Present.display_graph gr end);
22485
3a7d623485fa added theory dependency graph
haftmann
parents: 22340
diff changeset
   418
20574
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   419
val class_deps = Toplevel.unknown_theory o Toplevel.keep (fn state =>
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   420
  let
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   421
    val thy = Toplevel.theory_of state;
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   422
    val {classes = (space, algebra), ...} = Type.rep_tsig (Sign.tsig_of thy);
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   423
    val {classes, ...} = Sorts.rep_algebra algebra;
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   424
    fun entry (c, (i, (_, cs))) =
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   425
      (i, {name = NameSpace.extern space c, ID = c, parents = cs,
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   426
            dir = "", unfold = true, path = ""});
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   427
    val gr =
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   428
      Graph.fold (cons o entry) classes []
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   429
      |> sort (int_ord o pairself #1) |> map #2;
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   430
  in Present.display_graph gr end);
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   431
15964
f2074e12d1d4 searching for thms by combination of criteria (intro, elim, dest, name, term pattern)
kleing
parents: 15799
diff changeset
   432
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   433
(* retrieve theorems *)
7615
c650147f56f1 added print_thms_containing;
wenzelm
parents: 7503
diff changeset
   434
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   435
fun thm_deps args = Toplevel.unknown_theory o Toplevel.keep (fn state =>
21003
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
   436
  ThmDeps.thm_deps (Proof.get_thmss (Toplevel.enter_proof_body state) args));
9454
ea80449107cc added thm_deps;
wenzelm
parents: 9273
diff changeset
   437
24560
2693220bd77f thy_deps: ThyInfo.thy_ord, improved dir/unfold entry;
wenzelm
parents: 24508
diff changeset
   438
fun find_theorems ((opt_lim, rem_dups), spec) =
22340
275802767bf3 Remove duplicates from printed theorems in find_theorems
kleing
parents: 22239
diff changeset
   439
  Toplevel.unknown_theory o Toplevel.keep (fn state =>
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   440
  let
21003
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
   441
    val proof_state = Toplevel.enter_proof_body state;
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   442
    val ctxt = Proof.context_of proof_state;
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   443
    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: 22239
diff changeset
   444
  in FindTheorems.print_theorems ctxt opt_goal opt_lim rem_dups spec end);
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   445
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   446
26184
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
   447
(* find unused theorems *)
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
   448
26186
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   449
fun unused_thms opt_range = Toplevel.keep (fn state =>
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   450
  let
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   451
    val thy = Toplevel.theory_of state;
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   452
    val ctxt = Toplevel.context_of state;
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   453
    fun pretty_thm (a, th) = ProofContext.pretty_fact ctxt (a, [th]);
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   454
  in
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   455
    ThmDeps.unused_thms
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   456
      (case opt_range of
26694
29f5c1a296bc PureThy.defined_fact;
wenzelm
parents: 26671
diff changeset
   457
        NONE => (Theory.parents_of thy, [thy])
29f5c1a296bc PureThy.defined_fact;
wenzelm
parents: 26671
diff changeset
   458
      | SOME (xs, NONE) => (map ThyInfo.get_theory xs, [thy])
29f5c1a296bc PureThy.defined_fact;
wenzelm
parents: 26671
diff changeset
   459
      | SOME (xs, SOME ys) => (map ThyInfo.get_theory xs, map ThyInfo.get_theory ys))
26186
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   460
    |> map pretty_thm |> Pretty.chunks |> Pretty.writeln
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   461
  end);
26184
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
   462
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
   463
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   464
(* print proof context contents *)
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   465
21663
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   466
val print_binds = Toplevel.unknown_context o Toplevel.keep (fn state =>
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   467
  ProofContext.setmp_verbose ProofContext.print_binds (Toplevel.context_of state));
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   468
21663
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   469
val print_cases = Toplevel.unknown_context o Toplevel.keep (fn state =>
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   470
  ProofContext.setmp_verbose ProofContext.print_cases (Toplevel.context_of state));
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   471
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   472
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   473
(* print theorems, terms, types etc. *)
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   474
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   475
local
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   476
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   477
fun string_of_stmts state args =
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   478
  Proof.get_thmss state args
21437
a3c55b85cf0e moved theorem kinds from PureThy to Thm;
wenzelm
parents: 21350
diff changeset
   479
  |> map (Element.pretty_statement (Proof.context_of state) Thm.theoremK)
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   480
  |> Pretty.chunks2 |> Pretty.string_of;
5880
feec44106a8e add print_theorems;
wenzelm
parents: 5831
diff changeset
   481
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   482
fun string_of_thms state args =
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   483
  Pretty.string_of (ProofContext.pretty_thms (Proof.context_of state)
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   484
    (Proof.get_thmss state args));
5895
457b42674b57 added print_thm;
wenzelm
parents: 5880
diff changeset
   485
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   486
fun string_of_prfs full state arg =
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   487
  Pretty.string_of (case arg of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   488
      NONE =>
12125
316d11f760f7 Commands prf and full_prf can now also be used to display proof term
berghofe
parents: 12069
diff changeset
   489
        let
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   490
          val (ctxt, (_, thm)) = Proof.get_goal state;
26626
c6231d64d264 rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26599
diff changeset
   491
          val thy = ProofContext.theory_of ctxt;
c6231d64d264 rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26599
diff changeset
   492
          val prf = Thm.proof_of thm;
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   493
          val prop = Thm.full_prop_of thm;
12125
316d11f760f7 Commands prf and full_prf can now also be used to display proof term
berghofe
parents: 12069
diff changeset
   494
          val prf' = Proofterm.rewrite_proof_notypes ([], []) prf
316d11f760f7 Commands prf and full_prf can now also be used to display proof term
berghofe
parents: 12069
diff changeset
   495
        in
27258
656cfac246be moved ProofContext.pretty_proof to ProofSyntax.pretty_proof;
wenzelm
parents: 27200
diff changeset
   496
          ProofSyntax.pretty_proof ctxt
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   497
            (if full then Reconstruct.reconstruct_proof thy prop prf' else prf')
12125
316d11f760f7 Commands prf and full_prf can now also be used to display proof term
berghofe
parents: 12069
diff changeset
   498
        end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   499
    | SOME args => Pretty.chunks
27258
656cfac246be moved ProofContext.pretty_proof to ProofSyntax.pretty_proof;
wenzelm
parents: 27200
diff changeset
   500
        (map (ProofSyntax.pretty_proof_of (Proof.context_of state) full)
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   501
          (Proof.get_thmss state args)));
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11017
diff changeset
   502
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   503
fun string_of_prop state s =
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   504
  let
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   505
    val ctxt = Proof.context_of state;
24508
c8b82fec6447 replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
wenzelm
parents: 24314
diff changeset
   506
    val prop = Syntax.read_prop ctxt s;
26704
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26694
diff changeset
   507
    val ctxt' = Variable.auto_fixes prop ctxt;
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26694
diff changeset
   508
  in Pretty.string_of (Pretty.quote (Syntax.pretty_term ctxt' prop)) end;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   509
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   510
fun string_of_term state s =
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   511
  let
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   512
    val ctxt = Proof.context_of state;
24508
c8b82fec6447 replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
wenzelm
parents: 24314
diff changeset
   513
    val t = Syntax.read_term ctxt s;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   514
    val T = Term.type_of t;
26704
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26694
diff changeset
   515
    val ctxt' = Variable.auto_fixes t ctxt;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   516
  in
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   517
    Pretty.string_of
26704
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26694
diff changeset
   518
      (Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t), Pretty.fbrk,
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26694
diff changeset
   519
        Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' T)])
9128
35abf6308ab0 rearranged print commands;
wenzelm
parents: 9009
diff changeset
   520
  end;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   521
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   522
fun string_of_type state s =
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   523
  let
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   524
    val ctxt = Proof.context_of state;
25331
73072178e0ce Syntax.read_typ;
wenzelm
parents: 24920
diff changeset
   525
    val T = Syntax.read_typ ctxt s;
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24830
diff changeset
   526
  in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt T)) end;
9128
35abf6308ab0 rearranged print commands;
wenzelm
parents: 9009
diff changeset
   527
23935
2a4e42ec9a54 PrintMode.with_modes;
wenzelm
parents: 23897
diff changeset
   528
fun print_item string_of (modes, arg) = Toplevel.keep (fn state =>
2a4e42ec9a54 PrintMode.with_modes;
wenzelm
parents: 23897
diff changeset
   529
  PrintMode.with_modes modes (fn () =>
2a4e42ec9a54 PrintMode.with_modes;
wenzelm
parents: 23897
diff changeset
   530
    writeln (string_of (Toplevel.enter_proof_body state) arg)) ());
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   531
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   532
in
9128
35abf6308ab0 rearranged print commands;
wenzelm
parents: 9009
diff changeset
   533
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   534
val print_stmts = print_item string_of_stmts;
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
   535
val print_thms = print_item string_of_thms;
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   536
val print_prfs = print_item o string_of_prfs;
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
   537
val print_prop = print_item string_of_prop;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
   538
val print_term = print_item string_of_term;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
   539
val print_type = print_item string_of_type;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   540
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   541
end;
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   542
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   543
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   544
(* markup commands *)
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   545
27356
cb052da62549 moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents: 27258
diff changeset
   546
fun check_text s state =
cb052da62549 moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents: 27258
diff changeset
   547
  (ThyOutput.eval_antiquote (#1 (OuterKeyword.get_lexicons ())) state s; ());
cb052da62549 moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents: 27258
diff changeset
   548
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   549
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: 21725
diff changeset
   550
  (if Toplevel.is_toplevel state then () else raise Toplevel.UNDEF;
27356
cb052da62549 moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents: 27258
diff changeset
   551
   if int then check_text s NONE else ()));
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   552
12953
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   553
local
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   554
27356
cb052da62549 moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents: 27258
diff changeset
   555
fun present _ txt true node = check_text txt (SOME node)
26415
1b624d6e9163 adapted to Context.thread_data interface;
wenzelm
parents: 26403
diff changeset
   556
  | present f (s, _) false node = Context.setmp_thread_data
1b624d6e9163 adapted to Context.thread_data interface;
wenzelm
parents: 26403
diff changeset
   557
      (try (Toplevel.cases_node I (Context.Proof o Proof.context_of)) node) f s;
12953
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   558
19057
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   559
fun present_local_theory f (loc, txt) = Toplevel.present_local_theory loc (present f txt);
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   560
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: 12876
diff changeset
   561
12953
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   562
in
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   563
19057
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   564
val add_chapter       = present_local_theory Present.section;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   565
val add_section       = present_local_theory Present.section;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   566
val add_subsection    = present_local_theory Present.subsection;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   567
val add_subsubsection = present_local_theory Present.subsubsection;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   568
val add_text          = present_local_theory (K ());
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   569
fun add_text_raw txt  = present_local_theory (K ()) (NONE, txt);
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   570
val add_txt           = present_proof (K ());
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   571
val add_txt_raw       = add_txt;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   572
val add_sect          = add_txt;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   573
val add_subsect       = add_txt;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   574
val add_subsubsect    = add_txt;
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   575
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   576
end;
12953
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   577
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   578
end;