src/Pure/Isar/isar_cmd.ML
author wenzelm
Fri, 19 Jan 2007 22:08:25 +0100
changeset 22116 6917be2e647d
parent 22087 a13299166175
child 22202 0544af1a5117
permissions -rw-r--r--
added various ML setup functions (from sign.ML, pure_thy.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
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    10
  val generic_setup: string option -> theory -> theory
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    11
  val parse_ast_translation: bool * string -> theory -> theory
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    12
  val parse_translation: bool * string -> theory -> theory
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    13
  val print_translation: bool * string -> theory -> theory
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    14
  val typed_print_translation: bool * string -> theory -> theory
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    15
  val print_ast_translation: bool * string -> theory -> theory
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    16
  val token_translation: string -> theory -> theory
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    17
  val oracle: bstring * string * string -> theory -> theory
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    18
  val add_axioms: ((bstring * string) * Attrib.src list) list -> theory -> theory
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    19
  val add_defs: (bool * bool) * ((bstring * string) * Attrib.src list) list -> theory -> theory
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    20
  val apply_theorems: (thmref * Attrib.src list) list -> theory -> thm list * theory
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    21
  val apply_theorems_i: (thm list * attribute list) list -> theory -> thm list * theory
22087
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
    22
  val declaration: string -> local_theory -> local_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
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    38
  val begin_theory: string -> string list -> (string * bool) list -> bool -> theory
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    39
  val end_theory: theory -> theory
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    40
  val kill_theory: string -> unit
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    41
  val theory: string * string list * (string * bool) list
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    42
    -> Toplevel.transition -> Toplevel.transition
7462
f738df1d82e1 added welcome;
wenzelm
parents: 7413
diff changeset
    43
  val welcome: Toplevel.transition -> Toplevel.transition
f738df1d82e1 added welcome;
wenzelm
parents: 7413
diff changeset
    44
  val init_toplevel: Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    45
  val exit: Toplevel.transition -> Toplevel.transition
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    46
  val quit: Toplevel.transition -> Toplevel.transition
7908
0b191b36ad97 added touch_child_thys;
wenzelm
parents: 7891
diff changeset
    47
  val touch_child_thys: string -> Toplevel.transition -> Toplevel.transition
7101
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
    48
  val touch_all_thys: Toplevel.transition -> Toplevel.transition
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
    49
  val touch_thy: string -> Toplevel.transition -> Toplevel.transition
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
    50
  val remove_thy: string -> Toplevel.transition -> Toplevel.transition
7931
fa6fec415492 added kill_thy;
wenzelm
parents: 7908
diff changeset
    51
  val kill_thy: string -> Toplevel.transition -> Toplevel.transition
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9513
diff changeset
    52
  val pr: string list * (int option * int option) -> Toplevel.transition -> Toplevel.transition
8453
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
    53
  val disable_pr: Toplevel.transition -> Toplevel.transition
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
    54
  val enable_pr: Toplevel.transition -> Toplevel.transition
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6734
diff changeset
    55
  val redo: Toplevel.transition -> Toplevel.transition
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6734
diff changeset
    56
  val undos_proof: int -> Toplevel.transition -> Toplevel.transition
7936
cbeaff0ef856 added kill_proof_notify;
wenzelm
parents: 7931
diff changeset
    57
  val kill_proof_notify: (unit -> unit) -> Toplevel.transition -> Toplevel.transition
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6734
diff changeset
    58
  val kill_proof: Toplevel.transition -> Toplevel.transition
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6734
diff changeset
    59
  val undo_theory: Toplevel.transition -> Toplevel.transition
6686
08b06cd19f8d history commands;
wenzelm
parents: 6662
diff changeset
    60
  val undo: Toplevel.transition -> Toplevel.transition
21955
c1a6fad248ca removed obsolete clear_undos_theory;
wenzelm
parents: 21947
diff changeset
    61
  val cannot_undo: string -> Toplevel.transition -> Toplevel.transition
8498
e16d6b54332e kill: include kill_proof;
wenzelm
parents: 8463
diff changeset
    62
  val kill: Toplevel.transition -> Toplevel.transition
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
    63
  val back: Toplevel.transition -> Toplevel.transition
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
    64
  val use: Path.T -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
    65
  val use_mltext_theory: string -> Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
    66
  val use_mltext: bool -> string -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    67
  val use_commit: Toplevel.transition -> Toplevel.transition
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
    68
  val cd: Path.T -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    69
  val pwd: Toplevel.transition -> Toplevel.transition
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    70
  val use_thy: string -> Toplevel.transition -> Toplevel.transition
6694
335833a8b10a added use_thy_only;
wenzelm
parents: 6686
diff changeset
    71
  val use_thy_only: string -> Toplevel.transition -> Toplevel.transition
6195
62dc7e9050eb removed load;
wenzelm
parents: 6091
diff changeset
    72
  val update_thy: string -> Toplevel.transition -> Toplevel.transition
7101
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
    73
  val update_thy_only: string -> Toplevel.transition -> Toplevel.transition
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
    74
  val display_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
    75
  val print_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
    76
  val pretty_setmargin: int -> Toplevel.transition -> Toplevel.transition
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7124
diff changeset
    77
  val print_context: Toplevel.transition -> Toplevel.transition
20621
29d57880ba00 'print_theory': bang option for full verbosity;
wenzelm
parents: 20574
diff changeset
    78
  val print_theory: bool -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    79
  val print_syntax: Toplevel.transition -> Toplevel.transition
21725
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
    80
  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
    81
  val print_facts: Toplevel.transition -> Toplevel.transition
5880
feec44106a8e add print_theorems;
wenzelm
parents: 5831
diff changeset
    82
  val print_theorems: Toplevel.transition -> Toplevel.transition
12060
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
    83
  val print_locales: Toplevel.transition -> Toplevel.transition
18135
41cec935e804 Element.context;
wenzelm
parents: 18063
diff changeset
    84
  val print_locale: bool * (Locale.expr * Element.context list)
12758
f6aceb9d4b8e print_locale: allow full body specification;
wenzelm
parents: 12382
diff changeset
    85
    -> Toplevel.transition -> Toplevel.transition
17139
165c97f9bb63 Printing of interpretations: option to show witness theorems;
ballarin
parents: 17066
diff changeset
    86
  val print_registrations: bool -> string -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    87
  val print_attributes: Toplevel.transition -> Toplevel.transition
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
    88
  val print_simpset: Toplevel.transition -> Toplevel.transition
12382
8896d7f49422 added print_rules;
wenzelm
parents: 12288
diff changeset
    89
  val print_rules: Toplevel.transition -> Toplevel.transition
11666
60d9f1069fa9 added print_induct_rules;
wenzelm
parents: 11524
diff changeset
    90
  val print_induct_rules: Toplevel.transition -> Toplevel.transition
9219
84af672218b9 added print_trans_rules, print_antiquotations;
wenzelm
parents: 9128
diff changeset
    91
  val print_trans_rules: Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    92
  val print_methods: Toplevel.transition -> Toplevel.transition
9219
84af672218b9 added print_trans_rules, print_antiquotations;
wenzelm
parents: 9128
diff changeset
    93
  val print_antiquotations: Toplevel.transition -> Toplevel.transition
20574
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
    94
  val class_deps: Toplevel.transition -> Toplevel.transition
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
    95
  val thm_deps: (thmref * Attrib.src list) list -> Toplevel.transition -> Toplevel.transition
16037
13f230daa195 string FindTheorems.criterion;
wenzelm
parents: 16026
diff changeset
    96
  val find_theorems: int option * (bool * string FindTheorems.criterion) list
13284
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13273
diff changeset
    97
    -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    98
  val print_binds: Toplevel.transition -> Toplevel.transition
8369
1c833efb2802 added print_cases;
wenzelm
parents: 8349
diff changeset
    99
  val print_cases: Toplevel.transition -> Toplevel.transition
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   100
  val print_stmts: string list * (thmref * Attrib.src list) list
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   101
    -> Toplevel.transition -> Toplevel.transition
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15624
diff changeset
   102
  val print_thms: string list * (thmref * Attrib.src list) list
10581
74e542a299f0 dignostic commands: comment;
wenzelm
parents: 9731
diff changeset
   103
    -> Toplevel.transition -> Toplevel.transition
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15624
diff changeset
   104
  val print_prfs: bool -> string list * (thmref * Attrib.src list) list option
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11017
diff changeset
   105
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
   106
  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
   107
  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
   108
  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
   109
  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
   110
  val add_chapter: xstring option * (string * Position.T) ->
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
   111
    Toplevel.transition -> Toplevel.transition
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
   112
  val add_section: xstring option * (string * Position.T) ->
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
   113
    Toplevel.transition -> Toplevel.transition
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
   114
  val add_subsection: xstring option * (string * Position.T) ->
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
   115
    Toplevel.transition -> Toplevel.transition
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
   116
  val add_subsubsection: xstring option * (string * Position.T) ->
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
   117
    Toplevel.transition -> Toplevel.transition
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
   118
  val add_text: xstring option * (string * Position.T) ->
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
   119
    Toplevel.transition -> Toplevel.transition
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   120
  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
   121
  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
   122
  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
   123
  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
   124
  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
   125
  val add_txt_raw: string * Position.T -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   126
end;
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   127
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   128
structure IsarCmd: ISAR_CMD =
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   129
struct
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   130
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   131
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   132
(** theory declarations **)
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   133
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   134
(* generic_setup *)
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   135
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   136
fun generic_setup NONE = (fn thy => thy |> Context.setup ())
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   137
  | generic_setup (SOME txt) =
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   138
      ML_Context.use_let "val setup: theory -> theory" "Context.map_theory setup" txt
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   139
      |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   140
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   141
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   142
(* translation functions *)
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   143
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   144
local
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   145
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   146
fun advancedT false = ""
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   147
  | advancedT true = "Proof.context -> ";
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   148
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   149
fun advancedN false = ""
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   150
  | advancedN true = "advanced_";
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   151
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   152
in
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   153
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   154
fun parse_ast_translation (a, txt) =
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   155
  txt |> ML_Context.use_let ("val parse_ast_translation: (string * (" ^ advancedT a ^
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   156
      "Syntax.ast list -> Syntax.ast)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   157
    ("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
   158
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   159
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   160
fun parse_translation (a, txt) =
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   161
  txt |> ML_Context.use_let ("val parse_translation: (string * (" ^ advancedT a ^
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   162
      "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 ^ "trfuns ([], parse_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
fun print_translation (a, txt) =
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   167
  txt |> ML_Context.use_let ("val print_translation: (string * (" ^ advancedT a ^
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   168
      "term list -> term)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   169
    ("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
   170
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   171
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   172
fun print_ast_translation (a, txt) =
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   173
  txt |> ML_Context.use_let ("val print_ast_translation: (string * (" ^ advancedT a ^
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   174
      "Syntax.ast list -> Syntax.ast)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   175
    ("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
   176
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   177
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   178
fun typed_print_translation (a, txt) =
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   179
  txt |> ML_Context.use_let ("val typed_print_translation: (string * (" ^ advancedT a ^
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   180
      "bool -> typ -> term list -> term)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   181
    ("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
   182
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   183
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   184
val token_translation =
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   185
  ML_Context.use_let "val token_translation: (string * string * (string -> string * real)) list"
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   186
    "Context.map_theory (Sign.add_tokentrfuns token_translation)"
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   187
  #> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   188
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   189
end;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   190
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   191
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   192
(* oracles *)
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   193
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   194
fun oracle (name, T, oracle) =
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   195
  let val txt =
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   196
    "local\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   197
    \  type T = " ^ T ^ ";\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   198
    \  val oracle: theory -> T -> term = " ^ oracle ^ ";\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   199
    \  val name = " ^ quote name ^ ";\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   200
    \  exception Arg of T;\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   201
    \  val _ = ML_Context.>> (Theory.add_oracle (name, fn (thy, Arg x) => oracle thy x));\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   202
    \  val thy = ML_Context.the_context ();\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   203
    \  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
   204
    \in\n\
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   205
    \  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
   206
    \end;\n";
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   207
  in ML_Context.use_mltext_update txt false end
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   208
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   209
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   210
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   211
(* axioms *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   212
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   213
fun add_axms f args thy =
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   214
  f (map (fn (x, srcs) => (x, map (Attrib.attribute thy) srcs)) args) thy;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   215
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   216
val add_axioms = add_axms (snd oo PureThy.add_axioms);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   217
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   218
fun add_defs ((unchecked, overloaded), args) =
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   219
  add_axms
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   220
    (snd oo (if unchecked then PureThy.add_defs_unchecked else PureThy.add_defs) overloaded) args;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   221
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   222
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   223
(* facts *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   224
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   225
fun apply_theorems args thy =
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   226
  let val facts = Attrib.map_facts (Attrib.attribute thy) [(("", []), args)]
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   227
  in apfst (maps snd) (PureThy.note_thmss "" facts thy) end;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   228
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   229
fun apply_theorems_i args = apfst (maps snd) o PureThy.note_thmss_i "" [(("", []), args)];
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   230
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   231
22087
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   232
(* declarations *)
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   233
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   234
val declaration =
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   235
  ML_Context.use_let
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   236
    "val declaration: Morphism.morphism -> Context.generic -> Context.generic"
22087
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   237
  "Context.map_proof (LocalTheory.declaration declaration)"
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   238
  #> Context.proof_map;
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   239
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
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
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   261
val skip_local_qed =
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   262
  Toplevel.skip_proof (History.apply (fn i => if i > 1 then i - 1 else raise Toplevel.UNDEF));
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   263
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   264
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   265
(* global endings *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   266
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   267
fun global_qed m = Toplevel.end_proof (K (Proof.global_qed (m, true)));
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   268
val global_terminal_proof = Toplevel.end_proof o K o Proof.global_terminal_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   269
val global_default_proof = Toplevel.end_proof (K Proof.global_default_proof);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   270
val global_immediate_proof = Toplevel.end_proof (K Proof.global_immediate_proof);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   271
val global_skip_proof = Toplevel.end_proof Proof.global_skip_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   272
val global_done_proof = Toplevel.end_proof (K Proof.global_done_proof);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   273
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   274
val skip_global_qed = Toplevel.skip_proof_to_theory (equal 1);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   275
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   276
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   277
(* common endings *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   278
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   279
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
   280
fun terminal_proof m = local_terminal_proof m o global_terminal_proof m;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   281
val default_proof = local_default_proof o global_default_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   282
val immediate_proof = local_immediate_proof o global_immediate_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   283
val done_proof = local_done_proof o global_done_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   284
val skip_proof = local_skip_proof o global_skip_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   285
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   286
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   287
(* init and exit *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   288
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   289
fun begin_theory name imports uses =
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 21725
diff changeset
   290
  ThyInfo.begin_theory Present.begin_theory name imports (map (apfst Path.explode) uses);
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   291
21566
af2932baf068 dest_term: strip_imp_concl;
wenzelm
parents: 21506
diff changeset
   292
fun end_theory thy =
af2932baf068 dest_term: strip_imp_concl;
wenzelm
parents: 21506
diff changeset
   293
  if ThyInfo.check_known_thy (Context.theory_name thy) then ThyInfo.end_theory thy else thy;
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   294
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   295
val kill_theory = ThyInfo.if_known_thy ThyInfo.remove_thy;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   296
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   297
fun theory (name, imports, uses) =
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   298
  Toplevel.init_theory (begin_theory name imports uses)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   299
    (fn thy => (end_theory thy; ()))
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   300
    (kill_theory o Context.theory_name);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   301
7462
f738df1d82e1 added welcome;
wenzelm
parents: 7413
diff changeset
   302
val init_toplevel = Toplevel.imperative (fn () => raise Toplevel.RESTART);
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   303
7462
f738df1d82e1 added welcome;
wenzelm
parents: 7413
diff changeset
   304
val welcome = Toplevel.imperative (writeln o Session.welcome);
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   305
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   306
val exit = Toplevel.keep (fn state =>
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   307
  (ML_Context.set_context (try Toplevel.generic_theory_of state); raise Toplevel.TERMINATE));
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   308
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   309
val quit = Toplevel.imperative quit;
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   310
7101
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
   311
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
   312
(* touch theories *)
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
   313
7908
0b191b36ad97 added touch_child_thys;
wenzelm
parents: 7891
diff changeset
   314
fun touch_child_thys name = Toplevel.imperative (fn () => ThyInfo.touch_child_thys name);
7101
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
   315
val touch_all_thys = Toplevel.imperative ThyInfo.touch_all_thys;
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
   316
fun touch_thy name = Toplevel.imperative (fn () => ThyInfo.touch_thy name);
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
   317
fun remove_thy name = Toplevel.imperative (fn () => ThyInfo.remove_thy name);
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   318
fun kill_thy name = Toplevel.imperative (fn () => kill_theory name);
7101
ee79bf6feee2 removed restart;
wenzelm
parents: 7023
diff changeset
   319
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   320
8453
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   321
(* print state *)
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   322
8463
56949c077bd5 pr: modes, optional limit;
wenzelm
parents: 8453
diff changeset
   323
fun with_modes modes e =
56949c077bd5 pr: modes, optional limit;
wenzelm
parents: 8453
diff changeset
   324
  Library.setmp print_mode (modes @ ! print_mode) e ();
56949c077bd5 pr: modes, optional limit;
wenzelm
parents: 8453
diff changeset
   325
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   326
fun set_limit _ NONE = ()
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   327
  | set_limit r (SOME n) = r := n;
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9513
diff changeset
   328
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   329
fun pr (modes, (lim1, lim2)) = Toplevel.keep (fn state =>
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9513
diff changeset
   330
  (set_limit goals_limit lim1; set_limit ProofContext.prems_limit lim2; Toplevel.quiet := false;
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   331
    with_modes modes (fn () => Toplevel.print_state true state)));
8453
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   332
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   333
val disable_pr = Toplevel.imperative (fn () => Toplevel.quiet := true);
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   334
val enable_pr = Toplevel.imperative (fn () => Toplevel.quiet := false);
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   335
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   336
6686
08b06cd19f8d history commands;
wenzelm
parents: 6662
diff changeset
   337
(* history commands *)
08b06cd19f8d history commands;
wenzelm
parents: 6662
diff changeset
   338
16812
c7d38e714768 Toplevel.actual_proof;
wenzelm
parents: 16499
diff changeset
   339
val redo =
c7d38e714768 Toplevel.actual_proof;
wenzelm
parents: 16499
diff changeset
   340
  Toplevel.history History.redo o
c7d38e714768 Toplevel.actual_proof;
wenzelm
parents: 16499
diff changeset
   341
  Toplevel.actual_proof ProofHistory.redo o
15237
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15222
diff changeset
   342
  Toplevel.skip_proof History.redo;
6686
08b06cd19f8d history commands;
wenzelm
parents: 6662
diff changeset
   343
16812
c7d38e714768 Toplevel.actual_proof;
wenzelm
parents: 16499
diff changeset
   344
fun undos_proof n =
c7d38e714768 Toplevel.actual_proof;
wenzelm
parents: 16499
diff changeset
   345
  Toplevel.actual_proof (fn prf =>
15237
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15222
diff changeset
   346
    if ProofHistory.is_initial prf then raise Toplevel.UNDEF else funpow n ProofHistory.undo prf) o
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15222
diff changeset
   347
  Toplevel.skip_proof (fn h =>
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15222
diff changeset
   348
    if History.is_initial h then raise Toplevel.UNDEF else funpow n History.undo h);
6686
08b06cd19f8d history commands;
wenzelm
parents: 6662
diff changeset
   349
7936
cbeaff0ef856 added kill_proof_notify;
wenzelm
parents: 7931
diff changeset
   350
fun kill_proof_notify (f: unit -> unit) = Toplevel.history (fn hist =>
18588
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   351
  if is_some (Toplevel.theory_node (History.current hist)) then raise Toplevel.UNDEF
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   352
  else (f (); History.undo hist));
7936
cbeaff0ef856 added kill_proof_notify;
wenzelm
parents: 7931
diff changeset
   353
cbeaff0ef856 added kill_proof_notify;
wenzelm
parents: 7931
diff changeset
   354
val kill_proof = kill_proof_notify (K ());
6686
08b06cd19f8d history commands;
wenzelm
parents: 6662
diff changeset
   355
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6734
diff changeset
   356
val undo_theory = Toplevel.history (fn hist =>
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6734
diff changeset
   357
  if History.is_initial hist then raise Toplevel.UNDEF else History.undo hist);
6686
08b06cd19f8d history commands;
wenzelm
parents: 6662
diff changeset
   358
21955
c1a6fad248ca removed obsolete clear_undos_theory;
wenzelm
parents: 21947
diff changeset
   359
val undo = Toplevel.kill o undos_proof 1 o undo_theory o Toplevel.undo_exit;
c1a6fad248ca removed obsolete clear_undos_theory;
wenzelm
parents: 21947
diff changeset
   360
c1a6fad248ca removed obsolete clear_undos_theory;
wenzelm
parents: 21947
diff changeset
   361
fun cannot_undo "end" = undo   (*ProofGeneral legacy*)
c1a6fad248ca removed obsolete clear_undos_theory;
wenzelm
parents: 21947
diff changeset
   362
  | cannot_undo txt = Toplevel.imperative (fn () => error ("Cannot undo " ^ quote txt));
c1a6fad248ca removed obsolete clear_undos_theory;
wenzelm
parents: 21947
diff changeset
   363
21003
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
   364
val kill = Toplevel.kill o kill_proof;
17899
0e0ac7700f57 back: Toplevel.actual/skip_proof;
wenzelm
parents: 17352
diff changeset
   365
0e0ac7700f57 back: Toplevel.actual/skip_proof;
wenzelm
parents: 17352
diff changeset
   366
val back =
0e0ac7700f57 back: Toplevel.actual/skip_proof;
wenzelm
parents: 17352
diff changeset
   367
  Toplevel.actual_proof ProofHistory.back o
0e0ac7700f57 back: Toplevel.actual/skip_proof;
wenzelm
parents: 17352
diff changeset
   368
  Toplevel.skip_proof (History.apply I);
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9219
diff changeset
   369
6686
08b06cd19f8d history commands;
wenzelm
parents: 6662
diff changeset
   370
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   371
(* use ML text *)
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   372
16045
6e2c020eed45 use: not a theory command!
wenzelm
parents: 16037
diff changeset
   373
fun use path = Toplevel.keep (fn state =>
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   374
  ML_Context.setmp (try Toplevel.generic_theory_of state) (ThyInfo.load_file false) path);
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   375
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   376
(*passes changes of theory context*)
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   377
val use_mltext_theory = Toplevel.theory' o (Context.theory_map oo ML_Context.use_mltext_update);
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   378
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   379
(*ignore result theory context*)
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
   380
fun use_mltext v txt = Toplevel.keep' (fn verb => fn state =>
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   381
  (ML_Context.use_mltext txt (v andalso verb) (try Toplevel.generic_theory_of state)));
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   382
20927
2a39f2125772 Secure.commit;
wenzelm
parents: 20803
diff changeset
   383
val use_commit = Toplevel.imperative Secure.commit;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   384
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   385
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   386
(* current working directory *)
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   387
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   388
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
   389
val pwd = Toplevel.imperative (fn () => writeln (Path.implode (File.pwd ())));
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   390
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   391
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   392
(* load theory files *)
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   393
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   394
fun use_thy name = Toplevel.imperative (fn () => ML_Context.save ThyInfo.use_thy name);
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   395
fun use_thy_only name = Toplevel.imperative (fn () => ML_Context.save ThyInfo.use_thy_only name);
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   396
fun update_thy name = Toplevel.imperative (fn () => ML_Context.save ThyInfo.update_thy name);
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   397
fun update_thy_only name =
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   398
  Toplevel.imperative (fn () => ML_Context.save ThyInfo.update_thy_only name);
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   399
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   400
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   401
(* present draft files *)
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   402
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   403
fun display_drafts files = Toplevel.imperative (fn () =>
16258
f3d913abf7e5 File.shell_path;
wenzelm
parents: 16193
diff changeset
   404
  let val outfile = File.shell_path (Present.drafts (getenv "ISABELLE_DOC_FORMAT") files)
f3d913abf7e5 File.shell_path;
wenzelm
parents: 16193
diff changeset
   405
  in File.isatool ("display -c " ^ outfile ^ " &"); () end);
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   406
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   407
fun print_drafts files = Toplevel.imperative (fn () =>
16258
f3d913abf7e5 File.shell_path;
wenzelm
parents: 16193
diff changeset
   408
  let val outfile = File.shell_path (Present.drafts "ps" files)
f3d913abf7e5 File.shell_path;
wenzelm
parents: 16193
diff changeset
   409
  in File.isatool ("print -c " ^ outfile); () end);
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   410
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   411
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   412
(* pretty_setmargin *)
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   413
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   414
fun pretty_setmargin n = Toplevel.imperative (fn () => Pretty.setmargin n);
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   415
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   416
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   417
(* print parts of theory and proof context *)
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   418
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7124
diff changeset
   419
val print_context = Toplevel.keep Toplevel.print_state_context;
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   420
20621
29d57880ba00 'print_theory': bang option for full verbosity;
wenzelm
parents: 20574
diff changeset
   421
fun print_theory verbose = Toplevel.unknown_theory o
29d57880ba00 'print_theory': bang option for full verbosity;
wenzelm
parents: 20574
diff changeset
   422
  Toplevel.keep (ProofDisplay.print_full_theory verbose o Toplevel.theory_of);
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   423
21663
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   424
val print_syntax = Toplevel.unknown_context o
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   425
  Toplevel.keep (ProofContext.print_syntax o Toplevel.context_of);
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   426
21725
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
   427
val print_abbrevs = Toplevel.unknown_context o
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
   428
  Toplevel.keep (ProofContext.print_abbrevs o Toplevel.context_of);
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
   429
21003
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
   430
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
   431
  ProofContext.setmp_verbose
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 21437
diff changeset
   432
    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
   433
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   434
val print_theorems_proof = Toplevel.keep (fn state =>
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   435
  ProofContext.setmp_verbose
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   436
    ProofContext.print_lthms (Proof.context_of (Toplevel.proof_of state)));
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   437
18588
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   438
val print_theorems_theory = Toplevel.keep (fn state =>
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   439
  Toplevel.theory_of state |>
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   440
  (case Option.map Toplevel.theory_node (History.previous (Toplevel.node_history_of state)) of
20957
f2a795db0500 undo_end/kill: handle local theory;
wenzelm
parents: 20927
diff changeset
   441
    SOME (SOME prev_thy) => ProofDisplay.print_theorems_diff (Context.theory_of prev_thy)
19430
177e35232d1b ProofDisplay.print_theorems/theory;
wenzelm
parents: 19385
diff changeset
   442
  | _ => ProofDisplay.print_theorems));
18588
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   443
21663
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   444
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
   445
12060
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
   446
val print_locales = Toplevel.unknown_theory o
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
   447
  Toplevel.keep (Locale.print_locales o Toplevel.theory_of);
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
   448
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   449
fun print_locale (show_facts, (import, body)) = Toplevel.unknown_theory o
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   450
  Toplevel.keep (fn state =>
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   451
    Locale.print_locale (Toplevel.theory_of state) show_facts import body);
15596
8665d08085df First version of global registration command.
ballarin
parents: 15531
diff changeset
   452
17139
165c97f9bb63 Printing of interpretations: option to show witness theorems;
ballarin
parents: 17066
diff changeset
   453
fun print_registrations show_wits name = Toplevel.unknown_context o
20957
f2a795db0500 undo_end/kill: handle local theory;
wenzelm
parents: 20927
diff changeset
   454
  Toplevel.keep (Toplevel.node_case
f2a795db0500 undo_end/kill: handle local theory;
wenzelm
parents: 20927
diff changeset
   455
      (Context.cases (Locale.print_global_registrations show_wits name)
f2a795db0500 undo_end/kill: handle local theory;
wenzelm
parents: 20927
diff changeset
   456
        (Locale.print_local_registrations show_wits name))
17139
165c97f9bb63 Printing of interpretations: option to show witness theorems;
ballarin
parents: 17066
diff changeset
   457
    (Locale.print_local_registrations show_wits name o Proof.context_of));
12060
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
   458
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   459
val print_attributes = Toplevel.unknown_theory o
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   460
  Toplevel.keep (Attrib.print_attributes o Toplevel.theory_of);
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   461
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   462
val print_simpset = Toplevel.unknown_context o
20957
f2a795db0500 undo_end/kill: handle local theory;
wenzelm
parents: 20927
diff changeset
   463
  Toplevel.keep (Toplevel.node_case
f2a795db0500 undo_end/kill: handle local theory;
wenzelm
parents: 20927
diff changeset
   464
    (Context.cases Simplifier.print_simpset Simplifier.print_local_simpset)
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   465
    (Simplifier.print_local_simpset o Proof.context_of));
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   466
12382
8896d7f49422 added print_rules;
wenzelm
parents: 12288
diff changeset
   467
val print_rules = Toplevel.unknown_context o
18639
242fcc3292b6 print rules: generic context;
wenzelm
parents: 18588
diff changeset
   468
  Toplevel.keep (ContextRules.print_rules o Toplevel.context_of);
12382
8896d7f49422 added print_rules;
wenzelm
parents: 12288
diff changeset
   469
11666
60d9f1069fa9 added print_induct_rules;
wenzelm
parents: 11524
diff changeset
   470
val print_induct_rules = Toplevel.unknown_context o
18639
242fcc3292b6 print rules: generic context;
wenzelm
parents: 18588
diff changeset
   471
  Toplevel.keep (InductAttrib.print_rules o Toplevel.context_of);
11666
60d9f1069fa9 added print_induct_rules;
wenzelm
parents: 11524
diff changeset
   472
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   473
val print_trans_rules = Toplevel.unknown_context o
18639
242fcc3292b6 print rules: generic context;
wenzelm
parents: 18588
diff changeset
   474
  Toplevel.keep (Calculation.print_rules o Toplevel.context_of);
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   475
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   476
val print_methods = Toplevel.unknown_theory o
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   477
  Toplevel.keep (Method.print_methods o Toplevel.theory_of);
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   478
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   479
val print_antiquotations = Toplevel.imperative ThyOutput.print_antiquotations;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   480
20574
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   481
val class_deps = Toplevel.unknown_theory o Toplevel.keep (fn state =>
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   482
  let
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   483
    val thy = Toplevel.theory_of state;
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   484
    val {classes = (space, algebra), ...} = Type.rep_tsig (Sign.tsig_of thy);
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   485
    val {classes, ...} = Sorts.rep_algebra algebra;
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   486
    fun entry (c, (i, (_, cs))) =
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   487
      (i, {name = NameSpace.extern space c, ID = c, parents = cs,
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   488
            dir = "", unfold = true, path = ""});
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   489
    val gr =
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   490
      Graph.fold (cons o entry) classes []
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   491
      |> sort (int_ord o pairself #1) |> map #2;
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   492
  in Present.display_graph gr end);
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   493
15964
f2074e12d1d4 searching for thms by combination of criteria (intro, elim, dest, name, term pattern)
kleing
parents: 15799
diff changeset
   494
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   495
(* retrieve theorems *)
7615
c650147f56f1 added print_thms_containing;
wenzelm
parents: 7503
diff changeset
   496
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   497
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
   498
  ThmDeps.thm_deps (Proof.get_thmss (Toplevel.enter_proof_body state) args));
9454
ea80449107cc added thm_deps;
wenzelm
parents: 9273
diff changeset
   499
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   500
fun find_theorems (opt_lim, spec) = Toplevel.unknown_theory o Toplevel.keep (fn state =>
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   501
  let
21003
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
   502
    val proof_state = Toplevel.enter_proof_body state;
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   503
    val ctxt = Proof.context_of proof_state;
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   504
    val opt_goal = try Proof.get_goal proof_state |> Option.map (Thm.prop_of o #2 o #2);
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   505
  in FindTheorems.print_theorems ctxt opt_goal opt_lim spec end);
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   506
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   507
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   508
(* print proof context contents *)
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   509
21663
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   510
val print_binds = Toplevel.unknown_context o Toplevel.keep (fn state =>
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   511
  ProofContext.setmp_verbose ProofContext.print_binds (Toplevel.context_of state));
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   512
21663
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   513
val print_cases = Toplevel.unknown_context o Toplevel.keep (fn state =>
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   514
  ProofContext.setmp_verbose ProofContext.print_cases (Toplevel.context_of state));
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   515
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   516
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   517
(* print theorems, terms, types etc. *)
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   518
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   519
local
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   520
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   521
fun string_of_stmts state args =
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   522
  Proof.get_thmss state args
21437
a3c55b85cf0e moved theorem kinds from PureThy to Thm;
wenzelm
parents: 21350
diff changeset
   523
  |> 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
   524
  |> Pretty.chunks2 |> Pretty.string_of;
5880
feec44106a8e add print_theorems;
wenzelm
parents: 5831
diff changeset
   525
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   526
fun string_of_thms state args =
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   527
  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
   528
    (Proof.get_thmss state args));
5895
457b42674b57 added print_thm;
wenzelm
parents: 5880
diff changeset
   529
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   530
fun string_of_prfs full state arg =
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   531
  Pretty.string_of (case arg of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   532
      NONE =>
12125
316d11f760f7 Commands prf and full_prf can now also be used to display proof term
berghofe
parents: 12069
diff changeset
   533
        let
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   534
          val (ctxt, (_, thm)) = Proof.get_goal state;
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   535
          val {thy, der = (_, prf), ...} = Thm.rep_thm thm;
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   536
          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
   537
          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
   538
        in
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   539
          ProofContext.pretty_proof ctxt
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   540
            (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
   541
        end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   542
    | SOME args => Pretty.chunks
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   543
        (map (ProofContext.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
   544
          (Proof.get_thmss state args)));
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11017
diff changeset
   545
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   546
fun string_of_prop state s =
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   547
  let
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   548
    val ctxt = Proof.context_of state;
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   549
    val prop = ProofContext.read_prop ctxt s;
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   550
  in Pretty.string_of (Pretty.quote (ProofContext.pretty_term ctxt prop)) end;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   551
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   552
fun string_of_term state s =
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   553
  let
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   554
    val ctxt = Proof.context_of state;
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   555
    val t = ProofContext.read_term ctxt s;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   556
    val T = Term.type_of t;
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   557
  in
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   558
    Pretty.string_of
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   559
      (Pretty.block [Pretty.quote (ProofContext.pretty_term ctxt t), Pretty.fbrk,
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   560
        Pretty.str "::", Pretty.brk 1, Pretty.quote (ProofContext.pretty_typ ctxt T)])
9128
35abf6308ab0 rearranged print commands;
wenzelm
parents: 9009
diff changeset
   561
  end;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   562
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   563
fun string_of_type state s =
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   564
  let
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   565
    val ctxt = Proof.context_of state;
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   566
    val T = ProofContext.read_typ ctxt s;
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   567
  in Pretty.string_of (Pretty.quote (ProofContext.pretty_typ ctxt T)) end;
9128
35abf6308ab0 rearranged print commands;
wenzelm
parents: 9009
diff changeset
   568
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   569
fun print_item string_of (modes, arg) = Toplevel.keep (fn state => with_modes modes (fn () =>
21003
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
   570
  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
   571
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   572
in
9128
35abf6308ab0 rearranged print commands;
wenzelm
parents: 9009
diff changeset
   573
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   574
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
   575
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
   576
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
   577
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
   578
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
   579
val print_type = print_item string_of_type;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   580
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   581
end;
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   582
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   583
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   584
(* markup commands *)
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   585
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   586
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
   587
  (if Toplevel.is_toplevel state then () else raise Toplevel.UNDEF;
19057
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   588
   if int then OuterSyntax.check_text s NONE else ()));
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   589
12953
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   590
local
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   591
19057
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   592
fun present _ txt true node = OuterSyntax.check_text txt (SOME node)
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   593
  | present f (s, _) false node =
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   594
      ML_Context.setmp (try (Toplevel.cases_node I (Context.Proof o Proof.context_of)) node) f s;
12953
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   595
19057
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   596
fun present_local_theory f (loc, txt) = Toplevel.present_local_theory loc (present f txt);
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   597
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
   598
12953
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   599
in
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   600
19057
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   601
val add_chapter       = present_local_theory Present.section;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   602
val add_section       = present_local_theory Present.section;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   603
val add_subsection    = present_local_theory Present.subsection;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   604
val add_subsubsection = present_local_theory Present.subsubsection;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   605
val add_text          = present_local_theory (K ());
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   606
fun add_text_raw txt  = present_local_theory (K ()) (NONE, txt);
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   607
val add_txt           = present_proof (K ());
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   608
val add_txt_raw       = add_txt;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   609
val add_sect          = add_txt;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   610
val add_subsect       = add_txt;
9201b2bb36c2 simplified presentation commands;
wenzelm
parents: 18803
diff changeset
   611
val add_subsubsect    = add_txt;
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   612
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   613
end;
12953
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   614
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   615
end;