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