src/Pure/Isar/isar_cmd.ML
author wenzelm
Tue, 27 Jul 2010 22:00:26 +0200
changeset 37977 3ceccd415145
parent 37953 ddc3b72f9a42
child 38109 06fd1914b902
permissions -rw-r--r--
simplified/clarified theory loader: more explicit task management, kill old versions at start, commit results only in the very end, non-optional master dependency, do not store text in deps; explicit Thy_Info.toplevel_begin_theory, which does not maintain theory loader database; Outer_Syntax.load_thy: modify Toplevel.init for theory loading, and avoid slightly odd implicit batch mode of 'theory' command; added Thy_Load.begin_theory for clarity; structure ProofGeneral.ThyLoad.add_path appears to be old ThyLoad.add_path to Proof General, but actually operates on new Thy_Load.master_path instead -- for more precise imitation of theory loader; moved some basic commands from isar_cmd.ML to isar_syn.ML; misc tuning and simplification;
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
    Author:     Markus Wenzel, TU Muenchen
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     3
30805
wenzelm
parents: 30801
diff changeset
     4
Miscellaneous Isar commands.
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     5
*)
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     6
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     7
signature ISAR_CMD =
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
     8
sig
30575
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30573
diff changeset
     9
  val global_setup: Symbol_Pos.text * Position.T -> theory -> theory
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30573
diff changeset
    10
  val local_setup: Symbol_Pos.text * Position.T -> Proof.context -> Proof.context
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30573
diff changeset
    11
  val parse_ast_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30573
diff changeset
    12
  val parse_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30573
diff changeset
    13
  val print_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30573
diff changeset
    14
  val typed_print_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30573
diff changeset
    15
  val print_ast_translation: bool * (Symbol_Pos.text * Position.T) -> theory -> theory
30573
49899f26fbd1 de-camelized Symbol_Pos;
wenzelm
parents: 30524
diff changeset
    16
  val oracle: bstring * Position.T -> Symbol_Pos.text * Position.T -> theory -> theory
35852
4e3fe0b8687b minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
wenzelm
parents: 35141
diff changeset
    17
  val add_axioms: (Attrib.binding * string) list -> theory -> theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29383
diff changeset
    18
  val add_defs: (bool * bool) * ((binding * string) * Attrib.src list) list -> theory -> theory
33456
fbd47f9b9b12 allow "pervasive" local theory declarations, which are applied the background theory;
wenzelm
parents: 33391
diff changeset
    19
  val declaration: bool -> Symbol_Pos.text * Position.T -> local_theory -> local_theory
30575
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30573
diff changeset
    20
  val simproc_setup: string -> string list -> Symbol_Pos.text * Position.T -> string list ->
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
    21
    local_theory -> local_theory
36176
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
    22
  val hide_class: bool -> xstring list -> theory -> theory
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
    23
  val hide_type: bool -> xstring list -> theory -> theory
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
    24
  val hide_const: bool -> xstring list -> theory -> theory
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
    25
  val hide_fact: bool -> xstring list -> theory -> theory
28084
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    26
  val have: (Attrib.binding * (string * string list) list) list -> bool -> Proof.state -> Proof.state
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    27
  val hence: (Attrib.binding * (string * string list) list) list -> bool -> Proof.state -> Proof.state
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    28
  val show: (Attrib.binding * (string * string list) list) list -> bool -> Proof.state -> Proof.state
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    29
  val thus: (Attrib.binding * (string * string list) list) list -> bool -> Proof.state -> Proof.state
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    30
  val qed: Method.text option -> Toplevel.transition -> Toplevel.transition
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    31
  val terminal_proof: Method.text * Method.text option ->
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    32
    Toplevel.transition -> Toplevel.transition
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    33
  val default_proof: Toplevel.transition -> Toplevel.transition
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    34
  val immediate_proof: Toplevel.transition -> Toplevel.transition
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    35
  val done_proof: Toplevel.transition -> Toplevel.transition
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
    36
  val skip_proof: Toplevel.transition -> Toplevel.transition
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9513
diff changeset
    37
  val pr: string list * (int option * int option) -> Toplevel.transition -> Toplevel.transition
8453
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
    38
  val disable_pr: Toplevel.transition -> Toplevel.transition
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
    39
  val enable_pr: Toplevel.transition -> Toplevel.transition
30575
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30573
diff changeset
    40
  val ml_diag: bool -> Symbol_Pos.text * Position.T -> Toplevel.transition -> Toplevel.transition
37305
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
    41
  val diag_state: unit -> Toplevel.state
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
    42
  val diag_goal: unit -> {context: Proof.context, facts: thm list, goal: thm}
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
    43
  val cd: Path.T -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    44
  val pwd: Toplevel.transition -> Toplevel.transition
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
    45
  val display_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
    46
  val print_drafts: Path.T list -> Toplevel.transition -> Toplevel.transition
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
    47
  val pretty_setmargin: int -> Toplevel.transition -> Toplevel.transition
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7124
diff changeset
    48
  val print_context: Toplevel.transition -> Toplevel.transition
20621
29d57880ba00 'print_theory': bang option for full verbosity;
wenzelm
parents: 20574
diff changeset
    49
  val print_theory: bool -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    50
  val print_syntax: Toplevel.transition -> Toplevel.transition
21725
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
    51
  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
    52
  val print_facts: Toplevel.transition -> Toplevel.transition
24115
39b407fd6e82 renamed 'print_options' to 'print_configs';
wenzelm
parents: 24071
diff changeset
    53
  val print_configs: Toplevel.transition -> Toplevel.transition
33515
d066e8369a33 print_theorems: suppress concealed (global) facts, unless "!" option is given;
wenzelm
parents: 33456
diff changeset
    54
  val print_theorems: bool -> Toplevel.transition -> Toplevel.transition
12060
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
    55
  val print_locales: Toplevel.transition -> Toplevel.transition
29223
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 29006
diff changeset
    56
  val print_locale: bool * xstring -> Toplevel.transition -> Toplevel.transition
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32149
diff changeset
    57
  val print_registrations: string -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    58
  val print_attributes: Toplevel.transition -> Toplevel.transition
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
    59
  val print_simpset: Toplevel.transition -> Toplevel.transition
12382
8896d7f49422 added print_rules;
wenzelm
parents: 12288
diff changeset
    60
  val print_rules: Toplevel.transition -> Toplevel.transition
9219
84af672218b9 added print_trans_rules, print_antiquotations;
wenzelm
parents: 9128
diff changeset
    61
  val print_trans_rules: Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    62
  val print_methods: Toplevel.transition -> Toplevel.transition
9219
84af672218b9 added print_trans_rules, print_antiquotations;
wenzelm
parents: 9128
diff changeset
    63
  val print_antiquotations: Toplevel.transition -> Toplevel.transition
20574
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
    64
  val class_deps: Toplevel.transition -> Toplevel.transition
22485
3a7d623485fa added theory dependency graph
haftmann
parents: 22340
diff changeset
    65
  val thy_deps: Toplevel.transition -> Toplevel.transition
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26186
diff changeset
    66
  val thm_deps: (Facts.ref * Attrib.src list) list -> Toplevel.transition -> Toplevel.transition
26184
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
    67
  val unused_thms: (string list * string list option) option ->
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
    68
    Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    69
  val print_binds: Toplevel.transition -> Toplevel.transition
8369
1c833efb2802 added print_cases;
wenzelm
parents: 8349
diff changeset
    70
  val print_cases: Toplevel.transition -> Toplevel.transition
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26186
diff changeset
    71
  val print_stmts: string list * (Facts.ref * Attrib.src list) list
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
    72
    -> Toplevel.transition -> Toplevel.transition
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26186
diff changeset
    73
  val print_thms: string list * (Facts.ref * Attrib.src list) list
10581
74e542a299f0 dignostic commands: comment;
wenzelm
parents: 9731
diff changeset
    74
    -> Toplevel.transition -> Toplevel.transition
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26186
diff changeset
    75
  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
    76
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12758
diff changeset
    77
  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
    78
  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
    79
  val print_type: (string list * string) -> Toplevel.transition -> Toplevel.transition
30573
49899f26fbd1 de-camelized Symbol_Pos;
wenzelm
parents: 30524
diff changeset
    80
  val header_markup: Symbol_Pos.text * Position.T -> Toplevel.transition -> Toplevel.transition
49899f26fbd1 de-camelized Symbol_Pos;
wenzelm
parents: 30524
diff changeset
    81
  val local_theory_markup: xstring option * (Symbol_Pos.text * Position.T) ->
17262
63cf42df2723 add_chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    82
    Toplevel.transition -> Toplevel.transition
30573
49899f26fbd1 de-camelized Symbol_Pos;
wenzelm
parents: 30524
diff changeset
    83
  val proof_markup: Symbol_Pos.text * Position.T -> Toplevel.transition -> Toplevel.transition
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    84
end;
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    85
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37198
diff changeset
    86
structure Isar_Cmd: ISAR_CMD =
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    87
struct
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    88
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
    89
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    90
(** theory declarations **)
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    91
30461
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30367
diff changeset
    92
(* generic setup *)
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    93
30461
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30367
diff changeset
    94
fun global_setup (txt, pos) =
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
    95
  ML_Lex.read pos txt
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
    96
  |> ML_Context.expression pos "val setup: theory -> theory" "Context.map_theory setup"
26435
bdce320cd426 eliminated delayed theory setup
wenzelm
parents: 26425
diff changeset
    97
  |> Context.theory_map;
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
    98
30461
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30367
diff changeset
    99
fun local_setup (txt, pos) =
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   100
  ML_Lex.read pos txt
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   101
  |> ML_Context.expression pos "val setup: local_theory -> local_theory" "Context.map_proof setup"
30461
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30367
diff changeset
   102
  |> Context.proof_map;
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30367
diff changeset
   103
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   104
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   105
(* translation functions *)
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
local
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
fun advancedT false = ""
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   110
  | advancedT true = "Proof.context -> ";
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   111
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   112
fun advancedN false = ""
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   113
  | advancedN true = "advanced_";
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   114
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   115
in
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   116
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   117
fun parse_ast_translation (a, (txt, pos)) =
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   118
  ML_Lex.read pos txt
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   119
  |> ML_Context.expression pos
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   120
    ("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
   121
      "Syntax.ast list -> Syntax.ast)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   122
    ("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
   123
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   124
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   125
fun parse_translation (a, (txt, pos)) =
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   126
  ML_Lex.read pos txt
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   127
  |> ML_Context.expression pos
26455
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)) =
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   134
  ML_Lex.read pos txt
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   135
  |> ML_Context.expression pos
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   136
    ("val print_translation: (string * (" ^ advancedT a ^
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   137
      "term list -> term)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   138
    ("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
   139
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   140
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   141
fun print_ast_translation (a, (txt, pos)) =
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   142
  ML_Lex.read pos txt
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   143
  |> ML_Context.expression pos
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   144
    ("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
   145
      "Syntax.ast list -> Syntax.ast)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   146
    ("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
   147
  |> Context.theory_map;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   148
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   149
fun typed_print_translation (a, (txt, pos)) =
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   150
  ML_Lex.read pos txt
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   151
  |> ML_Context.expression pos
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   152
    ("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
   153
      "bool -> typ -> term list -> term)) list")
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   154
    ("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
   155
  |> Context.theory_map;
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
end;
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   158
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
(* oracles *)
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   161
30334
a2f236a717fa oracle: proper name position, tuned;
wenzelm
parents: 30288
diff changeset
   162
fun oracle (name, pos) (body_txt, body_pos) =
27871
4ef76f8788ad oracle, header/local_theory/proof_markup: pass SymbolPos.text;
wenzelm
parents: 27853
diff changeset
   163
  let
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   164
    val body = ML_Lex.read body_pos body_txt;
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   165
    val ants =
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   166
      ML_Lex.read Position.none
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   167
       ("local\n\
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   168
        \  val binding = " ^ ML_Syntax.make_binding (name, pos) ^ ";\n\
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   169
        \  val body = ") @ body @ ML_Lex.read Position.none (";\n\
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   170
        \in\n\
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   171
        \  val " ^ name ^ " = snd (Context.>>> (Context.map_theory_result (Thm.add_oracle (binding, body))));\n\
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   172
        \end;\n");
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   173
  in Context.theory_map (ML_Context.exec (fn () => ML_Context.eval false body_pos ants)) end;
22116
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   174
6917be2e647d added various ML setup functions (from sign.ML, pure_thy.ML);
wenzelm
parents: 22087
diff changeset
   175
35852
4e3fe0b8687b minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
wenzelm
parents: 35141
diff changeset
   176
(* old-style axioms *)
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   177
35894
ab6dc4d86ea1 added Specification.axiom convenience;
wenzelm
parents: 35852
diff changeset
   178
val add_axioms = fold (snd oo Specification.axiom_cmd);
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   179
35852
4e3fe0b8687b minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
wenzelm
parents: 35141
diff changeset
   180
fun add_defs ((unchecked, overloaded), args) thy =
4e3fe0b8687b minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
wenzelm
parents: 35141
diff changeset
   181
  thy |> (if unchecked then PureThy.add_defs_unchecked_cmd else PureThy.add_defs_cmd) overloaded
4e3fe0b8687b minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
wenzelm
parents: 35141
diff changeset
   182
    (map (fn ((b, ax), srcs) => ((b, ax), map (Attrib.attribute thy) srcs)) args)
4e3fe0b8687b minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
wenzelm
parents: 35141
diff changeset
   183
  |> snd;
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   184
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   185
22087
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   186
(* declarations *)
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   187
33456
fbd47f9b9b12 allow "pervasive" local theory declarations, which are applied the background theory;
wenzelm
parents: 33391
diff changeset
   188
fun declaration pervasive (txt, pos) =
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   189
  ML_Lex.read pos txt
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   190
  |> ML_Context.expression pos
26455
1757a6e049f4 reorganized signature of ML_Context;
wenzelm
parents: 26435
diff changeset
   191
    "val declaration: Morphism.declaration"
33671
4b0f2599ed48 modernized structure Local_Theory;
wenzelm
parents: 33515
diff changeset
   192
    ("Context.map_proof (Local_Theory.declaration " ^ Bool.toString pervasive ^ " declaration)")
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26336
diff changeset
   193
  |> Context.proof_map;
22087
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   194
a13299166175 added 'declaration' command;
wenzelm
parents: 21955
diff changeset
   195
22202
0544af1a5117 added simproc_setup;
wenzelm
parents: 22116
diff changeset
   196
(* simprocs *)
0544af1a5117 added simproc_setup;
wenzelm
parents: 22116
diff changeset
   197
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   198
fun simproc_setup name lhss (txt, pos) identifier =
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   199
  ML_Lex.read pos txt
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   200
  |> ML_Context.expression pos
22239
9ddd3349d597 tuned oracle interface;
wenzelm
parents: 22202
diff changeset
   201
    "val proc: Morphism.morphism -> Simplifier.simpset -> cterm -> thm option"
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   202
    ("Context.map_proof (Simplifier.def_simproc {name = " ^ ML_Syntax.print_string name ^ ", \
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   203
      \lhss = " ^ ML_Syntax.print_strings lhss ^ ", proc = proc, \
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   204
      \identifier = Library.maps ML_Context.thms " ^ ML_Syntax.print_strings identifier ^ "})")
22202
0544af1a5117 added simproc_setup;
wenzelm
parents: 22116
diff changeset
   205
  |> Context.proof_map;
0544af1a5117 added simproc_setup;
wenzelm
parents: 22116
diff changeset
   206
0544af1a5117 added simproc_setup;
wenzelm
parents: 22116
diff changeset
   207
26671
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   208
(* hide names *)
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   209
36176
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   210
fun hide_names intern check hide fully xnames thy =
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   211
  let
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   212
    val names = map (intern thy) xnames;
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   213
    val bads = filter_out (check thy) names;
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   214
  in
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   215
    if null bads then fold (hide fully) names thy
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   216
    else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads)
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   217
  end;
26671
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   218
36176
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   219
val hide_class = hide_names Sign.intern_class (can o Sign.certify_class) Sign.hide_class;
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   220
val hide_type = hide_names Sign.intern_type Sign.declared_tyname Sign.hide_type;
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   221
val hide_const = hide_names Sign.intern_const Sign.declared_const Sign.hide_const;
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36174
diff changeset
   222
val hide_fact = hide_names 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
   223
c95590e01df5 added hide_names command (formerly Sign.hide_names), support fact name space;
wenzelm
parents: 26626
diff changeset
   224
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   225
(* goals *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   226
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   227
fun goal opt_chain goal stmt int =
29383
223f18cfbb32 qed/after_qed: singleton result;
wenzelm
parents: 29360
diff changeset
   228
  opt_chain #> goal NONE (K I) stmt int;
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   229
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36178
diff changeset
   230
val have = goal I Proof.have_cmd;
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36178
diff changeset
   231
val hence = goal Proof.chain Proof.have_cmd;
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36178
diff changeset
   232
val show = goal I Proof.show_cmd;
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36178
diff changeset
   233
val thus = goal Proof.chain Proof.show_cmd;
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   234
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   235
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   236
(* local endings *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   237
29383
223f18cfbb32 qed/after_qed: singleton result;
wenzelm
parents: 29360
diff changeset
   238
fun local_qed m = Toplevel.proof (Proof.local_qed (m, true));
32061
11f8ee55662d parallel_proofs: more fine-grained control with optional parallel checking of nested Isar proofs;
wenzelm
parents: 31819
diff changeset
   239
val local_terminal_proof = Toplevel.proof' o Proof.local_future_terminal_proof;
29383
223f18cfbb32 qed/after_qed: singleton result;
wenzelm
parents: 29360
diff changeset
   240
val local_default_proof = Toplevel.proof Proof.local_default_proof;
223f18cfbb32 qed/after_qed: singleton result;
wenzelm
parents: 29360
diff changeset
   241
val local_immediate_proof = Toplevel.proof Proof.local_immediate_proof;
223f18cfbb32 qed/after_qed: singleton result;
wenzelm
parents: 29360
diff changeset
   242
val local_done_proof = Toplevel.proof Proof.local_done_proof;
223f18cfbb32 qed/after_qed: singleton result;
wenzelm
parents: 29360
diff changeset
   243
val local_skip_proof = Toplevel.proof' Proof.local_skip_proof;
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   244
27562
bcb01eb565ee removed obsolete history commands;
wenzelm
parents: 27493
diff changeset
   245
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
   246
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   247
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   248
(* global endings *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   249
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   250
fun global_qed m = Toplevel.end_proof (K (Proof.global_qed (m, true)));
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   251
val global_terminal_proof = Toplevel.end_proof o K o Proof.global_terminal_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   252
val global_default_proof = Toplevel.end_proof (K Proof.global_default_proof);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   253
val global_immediate_proof = Toplevel.end_proof (K Proof.global_immediate_proof);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   254
val global_skip_proof = Toplevel.end_proof Proof.global_skip_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   255
val global_done_proof = Toplevel.end_proof (K Proof.global_done_proof);
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   256
28375
c879d88d038a eliminated polymorphic equality;
wenzelm
parents: 28290
diff changeset
   257
val skip_global_qed = Toplevel.skip_proof_to_theory (fn n => n = 1);
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   258
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   259
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   260
(* common endings *)
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   261
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   262
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
   263
fun terminal_proof m = local_terminal_proof m o global_terminal_proof m;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   264
val default_proof = local_default_proof o global_default_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   265
val immediate_proof = local_immediate_proof o global_immediate_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   266
val done_proof = local_done_proof o global_done_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   267
val skip_proof = local_skip_proof o global_skip_proof;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   268
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21003
diff changeset
   269
8453
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   270
(* print state *)
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   271
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   272
fun set_limit _ NONE = ()
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   273
  | set_limit r (SOME n) = r := n;
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9513
diff changeset
   274
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   275
fun pr (modes, (lim1, lim2)) = Toplevel.keep (fn state =>
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9513
diff changeset
   276
  (set_limit goals_limit lim1; set_limit ProofContext.prems_limit lim2; Toplevel.quiet := false;
37146
f652333bbf8e renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
wenzelm
parents: 36950
diff changeset
   277
    Print_Mode.with_modes modes (Toplevel.print_state true) state));
8453
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   278
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   279
val disable_pr = Toplevel.imperative (fn () => Toplevel.quiet := true);
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   280
val enable_pr = Toplevel.imperative (fn () => Toplevel.quiet := false);
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   281
0771ba650f73 pr, disable_pr, enable_pr;
wenzelm
parents: 8369
diff changeset
   282
26489
e83dc4bb9ab4 removed obsolete use_XXX;
wenzelm
parents: 26463
diff changeset
   283
(* diagnostic ML evaluation *)
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   284
37305
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   285
structure Diag_State = Proof_Data
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   286
(
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   287
  type T = Toplevel.state;
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   288
  fun init _ = Toplevel.toplevel;
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   289
);
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   290
26489
e83dc4bb9ab4 removed obsolete use_XXX;
wenzelm
parents: 26463
diff changeset
   291
fun ml_diag verbose (txt, pos) = Toplevel.keep (fn state =>
37305
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   292
  let val opt_ctxt =
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   293
    try Toplevel.generic_theory_of state
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   294
    |> Option.map (Context.proof_of #> Diag_State.put state)
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   295
  in ML_Context.eval_text_in opt_ctxt verbose pos txt end);
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   296
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   297
fun diag_state () = Diag_State.get (ML_Context.the_local_context ());
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   298
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   299
fun diag_goal () =
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   300
  Proof.goal (Toplevel.proof_of (diag_state ()))
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   301
    handle Toplevel.UNDEF => error "No goal present";
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   302
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   303
val _ = ML_Antiquote.value "Isar.state" (Scan.succeed "Isar_Cmd.diag_state ()");
9763792e4ac7 diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
wenzelm
parents: 37216
diff changeset
   304
val _ = ML_Antiquote.value "Isar.goal" (Scan.succeed "Isar_Cmd.diag_goal ()");
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   305
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   306
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   307
(* current working directory *)
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   308
30805
wenzelm
parents: 30801
diff changeset
   309
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
   310
val pwd = Toplevel.imperative (fn () => writeln (Path.implode (File.pwd ())));
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   311
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   312
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   313
(* present draft files *)
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   314
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   315
fun display_drafts files = Toplevel.imperative (fn () =>
16258
f3d913abf7e5 File.shell_path;
wenzelm
parents: 16193
diff changeset
   316
  let val outfile = File.shell_path (Present.drafts (getenv "ISABELLE_DOC_FORMAT") files)
31819
2c0ab4485f48 tune File.isabelle_tool signature;
wenzelm
parents: 30805
diff changeset
   317
  in File.isabelle_tool "display" ("-c " ^ outfile ^ " &"); () end);
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   318
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   319
fun print_drafts files = Toplevel.imperative (fn () =>
16258
f3d913abf7e5 File.shell_path;
wenzelm
parents: 16193
diff changeset
   320
  let val outfile = File.shell_path (Present.drafts "ps" files)
31819
2c0ab4485f48 tune File.isabelle_tool signature;
wenzelm
parents: 30805
diff changeset
   321
  in File.isabelle_tool "print" ("-c " ^ outfile); () end);
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   322
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 13801
diff changeset
   323
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   324
(* pretty_setmargin *)
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7101
diff changeset
   325
36745
403585a89772 unified/simplified Pretty.margin_default;
wenzelm
parents: 36328
diff changeset
   326
fun pretty_setmargin n = Toplevel.imperative (fn () => Pretty.margin_default := n);
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   327
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   328
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   329
(* print parts of theory and proof context *)
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   330
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7124
diff changeset
   331
val print_context = Toplevel.keep Toplevel.print_state_context;
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   332
20621
29d57880ba00 'print_theory': bang option for full verbosity;
wenzelm
parents: 20574
diff changeset
   333
fun print_theory verbose = Toplevel.unknown_theory o
33389
bb3a5fa94a91 modernized structure Proof_Display;
wenzelm
parents: 33388
diff changeset
   334
  Toplevel.keep (Pretty.writeln o Proof_Display.pretty_full_theory verbose o Toplevel.theory_of);
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   335
21663
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   336
val print_syntax = Toplevel.unknown_context o
734a9c3f562d print_syntax etc.: plain Toplevel.context_of;
wenzelm
parents: 21566
diff changeset
   337
  Toplevel.keep (ProofContext.print_syntax o Toplevel.context_of);
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   338
21725
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
   339
val print_abbrevs = Toplevel.unknown_context o
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
   340
  Toplevel.keep (ProofContext.print_abbrevs o Toplevel.context_of);
ec2014c93d7f added print_abbrevs;
wenzelm
parents: 21663
diff changeset
   341
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 33671
diff changeset
   342
val print_facts = Toplevel.unknown_context o
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 33671
diff changeset
   343
  Toplevel.keep (ProofContext.print_lthms o Toplevel.context_of);
21003
37492b0062c6 renamed print_lthms to print_facts, do not insist on proof state;
wenzelm
parents: 20978
diff changeset
   344
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 33671
diff changeset
   345
val print_configs = Toplevel.unknown_context o
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 33671
diff changeset
   346
  Toplevel.keep (Attrib.print_configs o Toplevel.context_of);
23989
d7df8545f9f6 added command 'print_options';
wenzelm
parents: 23935
diff changeset
   347
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 33671
diff changeset
   348
val print_theorems_proof =
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 33671
diff changeset
   349
  Toplevel.keep (ProofContext.print_lthms o Proof.context_of o Toplevel.proof_of);
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   350
33515
d066e8369a33 print_theorems: suppress concealed (global) facts, unless "!" option is given;
wenzelm
parents: 33456
diff changeset
   351
fun print_theorems_theory verbose = Toplevel.keep (fn state =>
18588
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   352
  Toplevel.theory_of state |>
30801
9bdf001bea58 added Toplevel.previous_node_of;
wenzelm
parents: 30575
diff changeset
   353
  (case Toplevel.previous_context_of state of
33515
d066e8369a33 print_theorems: suppress concealed (global) facts, unless "!" option is given;
wenzelm
parents: 33456
diff changeset
   354
    SOME prev => Proof_Display.print_theorems_diff verbose (ProofContext.theory_of prev)
d066e8369a33 print_theorems: suppress concealed (global) facts, unless "!" option is given;
wenzelm
parents: 33456
diff changeset
   355
  | NONE => Proof_Display.print_theorems verbose));
18588
ff9d9bbae8f3 tuned print_theorems_theory;
wenzelm
parents: 18135
diff changeset
   356
33515
d066e8369a33 print_theorems: suppress concealed (global) facts, unless "!" option is given;
wenzelm
parents: 33456
diff changeset
   357
fun print_theorems verbose =
d066e8369a33 print_theorems: suppress concealed (global) facts, unless "!" option is given;
wenzelm
parents: 33456
diff changeset
   358
  Toplevel.unknown_context o print_theorems_theory verbose o print_theorems_proof;
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   359
12060
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
   360
val print_locales = Toplevel.unknown_theory o
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29230
diff changeset
   361
  Toplevel.keep (Locale.print_locales o Toplevel.theory_of);
12060
f85eddf6a4fb added print_locales, print_locale;
wenzelm
parents: 12055
diff changeset
   362
33515
d066e8369a33 print_theorems: suppress concealed (global) facts, unless "!" option is given;
wenzelm
parents: 33456
diff changeset
   363
fun print_locale (verbose, name) = Toplevel.unknown_theory o
d066e8369a33 print_theorems: suppress concealed (global) facts, unless "!" option is given;
wenzelm
parents: 33456
diff changeset
   364
  Toplevel.keep (fn state => Locale.print_locale (Toplevel.theory_of state) verbose name);
15596
8665d08085df First version of global registration command.
ballarin
parents: 15531
diff changeset
   365
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32149
diff changeset
   366
fun print_registrations name = Toplevel.unknown_context o
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32149
diff changeset
   367
  Toplevel.keep (fn state =>
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32149
diff changeset
   368
    Locale.print_registrations (Toplevel.theory_of state) name);
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32149
diff changeset
   369
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   370
val print_attributes = Toplevel.unknown_theory o
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   371
  Toplevel.keep (Attrib.print_attributes o Toplevel.theory_of);
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   372
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   373
val print_simpset = Toplevel.unknown_context o
30357
77c3f2135a0f proper context for Simplifier.pretty_ss;
wenzelm
parents: 30337
diff changeset
   374
  Toplevel.keep (fn state =>
77c3f2135a0f proper context for Simplifier.pretty_ss;
wenzelm
parents: 30337
diff changeset
   375
    let val ctxt = Toplevel.context_of state
32149
ef59550a55d3 renamed simpset_of to global_simpset_of, and local_simpset_of to simpset_of -- same for claset and clasimpset;
wenzelm
parents: 32091
diff changeset
   376
    in Pretty.writeln (Simplifier.pretty_ss ctxt (simpset_of ctxt)) end);
16026
43967e1cba7e added print_simpset;
wenzelm
parents: 15979
diff changeset
   377
12382
8896d7f49422 added print_rules;
wenzelm
parents: 12288
diff changeset
   378
val print_rules = Toplevel.unknown_context o
33369
470a7b233ee5 modernized structure Context_Rules;
wenzelm
parents: 33290
diff changeset
   379
  Toplevel.keep (Context_Rules.print_rules o Toplevel.context_of);
12382
8896d7f49422 added print_rules;
wenzelm
parents: 12288
diff changeset
   380
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   381
val print_trans_rules = Toplevel.unknown_context o
18639
242fcc3292b6 print rules: generic context;
wenzelm
parents: 18588
diff changeset
   382
  Toplevel.keep (Calculation.print_rules o Toplevel.context_of);
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   383
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   384
val print_methods = Toplevel.unknown_theory o
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   385
  Toplevel.keep (Method.print_methods o Toplevel.theory_of);
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   386
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37198
diff changeset
   387
val print_antiquotations = Toplevel.imperative Thy_Output.print_antiquotations;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   388
22485
3a7d623485fa added theory dependency graph
haftmann
parents: 22340
diff changeset
   389
val thy_deps = Toplevel.unknown_theory o Toplevel.keep (fn state =>
3a7d623485fa added theory dependency graph
haftmann
parents: 22340
diff changeset
   390
  let
3a7d623485fa added theory dependency graph
haftmann
parents: 22340
diff changeset
   391
    val thy = Toplevel.theory_of state;
37866
cd1d1bc7684c thy_deps: more direct comparison of sessions, which is presumably what "unfold" is meant to indicate here -- also avoid referring to accidental theory loader state;
wenzelm
parents: 37305
diff changeset
   392
    val thy_session = Present.session_name thy;
cd1d1bc7684c thy_deps: more direct comparison of sessions, which is presumably what "unfold" is meant to indicate here -- also avoid referring to accidental theory loader state;
wenzelm
parents: 37305
diff changeset
   393
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37198
diff changeset
   394
    val all_thys = sort Thy_Info.thy_ord (thy :: Theory.ancestors_of thy);
22604
6419dcc822f1 thy_deps: sort Context.thy_ord;
wenzelm
parents: 22602
diff changeset
   395
    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
   396
      let
a165d9ed08b8 simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents: 22573
diff changeset
   397
        val name = Context.theory_name node;
a165d9ed08b8 simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents: 22573
diff changeset
   398
        val parents = map Context.theory_name (Theory.parents_of node);
37866
cd1d1bc7684c thy_deps: more direct comparison of sessions, which is presumably what "unfold" is meant to indicate here -- also avoid referring to accidental theory loader state;
wenzelm
parents: 37305
diff changeset
   399
        val session = Present.session_name node;
cd1d1bc7684c thy_deps: more direct comparison of sessions, which is presumably what "unfold" is meant to indicate here -- also avoid referring to accidental theory loader state;
wenzelm
parents: 37305
diff changeset
   400
        val unfold = (session = thy_session);
cd1d1bc7684c thy_deps: more direct comparison of sessions, which is presumably what "unfold" is meant to indicate here -- also avoid referring to accidental theory loader state;
wenzelm
parents: 37305
diff changeset
   401
      in {name = name, ID = name, parents = parents, dir = session, unfold = unfold, path = ""} end);
22602
a165d9ed08b8 simplified thy_deps using Theory.ancestors_of (in order of creation);
wenzelm
parents: 22573
diff changeset
   402
  in Present.display_graph gr end);
22485
3a7d623485fa added theory dependency graph
haftmann
parents: 22340
diff changeset
   403
20574
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   404
val class_deps = Toplevel.unknown_theory o Toplevel.keep (fn state =>
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   405
  let
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   406
    val thy = Toplevel.theory_of state;
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   407
    val {classes = (space, algebra), ...} = Type.rep_tsig (Sign.tsig_of thy);
36328
4d9deabf6474 replaced Sorts.rep_algebra by slightly more abstract selectors classes_of/arities_of;
wenzelm
parents: 36323
diff changeset
   408
    val classes = Sorts.classes_of algebra;
20574
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   409
    fun entry (c, (i, (_, cs))) =
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 32859
diff changeset
   410
      (i, {name = Name_Space.extern space c, ID = c, parents = cs,
20574
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   411
            dir = "", unfold = true, path = ""});
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   412
    val gr =
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   413
      Graph.fold (cons o entry) classes []
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   414
      |> sort (int_ord o pairself #1) |> map #2;
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   415
  in Present.display_graph gr end);
a10885a269cb added class_deps;
wenzelm
parents: 19430
diff changeset
   416
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   417
fun thm_deps args = Toplevel.unknown_theory o Toplevel.keep (fn state =>
37870
dd9cfc512b7f thm_deps/unused_thms: Context.get_theory based on proper theory ancestry, not accidental theory loader state;
wenzelm
parents: 37866
diff changeset
   418
  Thm_Deps.thm_deps (Toplevel.theory_of state)
dd9cfc512b7f thm_deps/unused_thms: Context.get_theory based on proper theory ancestry, not accidental theory loader state;
wenzelm
parents: 37866
diff changeset
   419
    (Proof.get_thmss_cmd (Toplevel.enter_proof_body state) args));
9454
ea80449107cc added thm_deps;
wenzelm
parents: 9273
diff changeset
   420
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   421
26184
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
   422
(* find unused theorems *)
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
   423
26186
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   424
fun unused_thms opt_range = Toplevel.keep (fn state =>
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   425
  let
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   426
    val thy = Toplevel.theory_of state;
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   427
    val ctxt = Toplevel.context_of state;
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   428
    fun pretty_thm (a, th) = ProofContext.pretty_fact ctxt (a, [th]);
37870
dd9cfc512b7f thm_deps/unused_thms: Context.get_theory based on proper theory ancestry, not accidental theory loader state;
wenzelm
parents: 37866
diff changeset
   429
    val get_theory = Context.get_theory thy;
26186
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   430
  in
33391
91b9da2a7b44 structure Thm_Deps;
wenzelm
parents: 33389
diff changeset
   431
    Thm_Deps.unused_thms
26186
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   432
      (case opt_range of
26694
29f5c1a296bc PureThy.defined_fact;
wenzelm
parents: 26671
diff changeset
   433
        NONE => (Theory.parents_of thy, [thy])
37870
dd9cfc512b7f thm_deps/unused_thms: Context.get_theory based on proper theory ancestry, not accidental theory loader state;
wenzelm
parents: 37866
diff changeset
   434
      | SOME (xs, NONE) => (map get_theory xs, [thy])
dd9cfc512b7f thm_deps/unused_thms: Context.get_theory based on proper theory ancestry, not accidental theory loader state;
wenzelm
parents: 37866
diff changeset
   435
      | SOME (xs, SOME ys) => (map get_theory xs, map get_theory ys))
26186
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   436
    |> map pretty_thm |> Pretty.chunks |> Pretty.writeln
9af968b694d9 unused_thms: print via official context (ProofContext.pretty_fact),
wenzelm
parents: 26184
diff changeset
   437
  end);
26184
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
   438
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26070
diff changeset
   439
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   440
(* print proof context contents *)
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   441
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 33671
diff changeset
   442
val print_binds = Toplevel.unknown_context o
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 33671
diff changeset
   443
  Toplevel.keep (ProofContext.print_binds o Toplevel.context_of);
9513
8531c18d9181 unknown_theory/proof/context;
wenzelm
parents: 9454
diff changeset
   444
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 33671
diff changeset
   445
val print_cases = Toplevel.unknown_context o
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 33671
diff changeset
   446
  Toplevel.keep (ProofContext.print_cases o Toplevel.context_of);
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   447
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   448
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   449
(* print theorems, terms, types etc. *)
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   450
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   451
local
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   452
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   453
fun string_of_stmts state args =
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36178
diff changeset
   454
  Proof.get_thmss_cmd state args
21437
a3c55b85cf0e moved theorem kinds from PureThy to Thm;
wenzelm
parents: 21350
diff changeset
   455
  |> 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
   456
  |> Pretty.chunks2 |> Pretty.string_of;
5880
feec44106a8e add print_theorems;
wenzelm
parents: 5831
diff changeset
   457
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   458
fun string_of_thms state args =
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36178
diff changeset
   459
  Pretty.string_of (Display.pretty_thms (Proof.context_of state) (Proof.get_thmss_cmd state args));
5895
457b42674b57 added print_thm;
wenzelm
parents: 5880
diff changeset
   460
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   461
fun string_of_prfs full state arg =
32859
204f749f35a9 replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
wenzelm
parents: 32804
diff changeset
   462
  Pretty.string_of
204f749f35a9 replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
wenzelm
parents: 32804
diff changeset
   463
    (case arg of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   464
      NONE =>
12125
316d11f760f7 Commands prf and full_prf can now also be used to display proof term
berghofe
parents: 12069
diff changeset
   465
        let
33290
6dcb0a970783 renamed Proof.flat_goal to Proof.simple_goal;
wenzelm
parents: 33224
diff changeset
   466
          val {context = ctxt, goal = thm} = Proof.simple_goal state;
26626
c6231d64d264 rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26599
diff changeset
   467
          val thy = ProofContext.theory_of ctxt;
28814
463c9e9111ae clarified Thm.proof_body_of vs. Thm.proof_of;
wenzelm
parents: 28799
diff changeset
   468
          val prf = Thm.proof_of thm;
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   469
          val prop = Thm.full_prop_of thm;
32859
204f749f35a9 replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
wenzelm
parents: 32804
diff changeset
   470
          val prf' = Proofterm.rewrite_proof_notypes ([], []) prf;
12125
316d11f760f7 Commands prf and full_prf can now also be used to display proof term
berghofe
parents: 12069
diff changeset
   471
        in
33388
d64545e6cba5 modernized structure Proof_Syntax;
wenzelm
parents: 33369
diff changeset
   472
          Proof_Syntax.pretty_proof ctxt
17066
b53f050bc37d back: removed ill-defined '!' option;
wenzelm
parents: 16812
diff changeset
   473
            (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
   474
        end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   475
    | SOME args => Pretty.chunks
33388
d64545e6cba5 modernized structure Proof_Syntax;
wenzelm
parents: 33369
diff changeset
   476
        (map (Proof_Syntax.pretty_proof_of (Proof.context_of state) full)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36178
diff changeset
   477
          (Proof.get_thmss_cmd state args)));
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11017
diff changeset
   478
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   479
fun string_of_prop state s =
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   480
  let
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   481
    val ctxt = Proof.context_of state;
24508
c8b82fec6447 replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
wenzelm
parents: 24314
diff changeset
   482
    val prop = Syntax.read_prop ctxt s;
26704
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26694
diff changeset
   483
    val ctxt' = Variable.auto_fixes prop ctxt;
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26694
diff changeset
   484
  in Pretty.string_of (Pretty.quote (Syntax.pretty_term ctxt' prop)) end;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   485
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   486
fun string_of_term state s =
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   487
  let
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   488
    val ctxt = Proof.context_of state;
24508
c8b82fec6447 replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
wenzelm
parents: 24314
diff changeset
   489
    val t = Syntax.read_term ctxt s;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   490
    val T = Term.type_of t;
26704
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26694
diff changeset
   491
    val ctxt' = Variable.auto_fixes t ctxt;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   492
  in
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   493
    Pretty.string_of
26704
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26694
diff changeset
   494
      (Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t), Pretty.fbrk,
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26694
diff changeset
   495
        Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' T)])
9128
35abf6308ab0 rearranged print commands;
wenzelm
parents: 9009
diff changeset
   496
  end;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   497
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   498
fun string_of_type state s =
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   499
  let
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 11666
diff changeset
   500
    val ctxt = Proof.context_of state;
25331
73072178e0ce Syntax.read_typ;
wenzelm
parents: 24920
diff changeset
   501
    val T = Syntax.read_typ ctxt s;
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24830
diff changeset
   502
  in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt T)) end;
9128
35abf6308ab0 rearranged print commands;
wenzelm
parents: 9009
diff changeset
   503
23935
2a4e42ec9a54 PrintMode.with_modes;
wenzelm
parents: 23897
diff changeset
   504
fun print_item string_of (modes, arg) = Toplevel.keep (fn state =>
37146
f652333bbf8e renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
wenzelm
parents: 36950
diff changeset
   505
  Print_Mode.with_modes modes (fn () =>
23935
2a4e42ec9a54 PrintMode.with_modes;
wenzelm
parents: 23897
diff changeset
   506
    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
   507
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   508
in
9128
35abf6308ab0 rearranged print commands;
wenzelm
parents: 9009
diff changeset
   509
19268
5a575522fd26 added print_stmts;
wenzelm
parents: 19057
diff changeset
   510
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
   511
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
   512
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
   513
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
   514
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
   515
val print_type = print_item string_of_type;
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   516
19385
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   517
end;
c0f2f8224ea8 print_term etc.: actually observe print mode in final output;
wenzelm
parents: 19268
diff changeset
   518
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   519
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   520
(* markup commands *)
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   521
30367
ee8841b1b981 simplified presentation: pass state directly;
wenzelm
parents: 30357
diff changeset
   522
fun check_text (txt, pos) state =
27876
4b79407825da report doc_source;
wenzelm
parents: 27871
diff changeset
   523
 (Position.report Markup.doc_source pos;
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37198
diff changeset
   524
  ignore (Thy_Output.eval_antiquote (#1 (Keyword.get_lexicons ())) state (txt, pos)));
12953
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   525
27853
916038f77be6 simplified markup commands -- removed obsolete Present.results, always check text;
wenzelm
parents: 27730
diff changeset
   526
fun header_markup txt = Toplevel.keep (fn state =>
30367
ee8841b1b981 simplified presentation: pass state directly;
wenzelm
parents: 30357
diff changeset
   527
  if Toplevel.is_toplevel state then check_text txt state
27853
916038f77be6 simplified markup commands -- removed obsolete Present.results, always check text;
wenzelm
parents: 27730
diff changeset
   528
  else raise Toplevel.UNDEF);
12953
7d5bd53555d8 markup commands: proper theory/proof transactions!
wenzelm
parents: 12938
diff changeset
   529
30367
ee8841b1b981 simplified presentation: pass state directly;
wenzelm
parents: 30357
diff changeset
   530
fun local_theory_markup (loc, txt) = Toplevel.present_local_theory loc (check_text txt);
ee8841b1b981 simplified presentation: pass state directly;
wenzelm
parents: 30357
diff changeset
   531
val proof_markup = Toplevel.present_proof o check_text;
12938
a646d0467d81 markup commands (from isar_thy.ML) with proper check of antiquotations;
wenzelm
parents: 12876
diff changeset
   532
5831
996361157cfb Non-logical toplevel commands.
wenzelm
parents:
diff changeset
   533
end;