src/Pure/Isar/isar_thy.ML
author wenzelm
Sat, 13 Oct 2001 20:32:38 +0200
changeset 11742 44034a6474e5
parent 11717 d808005e6e08
child 11764 fd780dd6e0b4
permissions -rw-r--r--
generic theorem kinds;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/isar_thy.ML
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
8804
wenzelm
parents: 8731
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     5
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
     6
Pure/Isar derived theory operations.
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     7
*)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     8
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     9
signature ISAR_THY =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
    10
sig
7734
9c098c777926 replace add_title by add_header;
wenzelm
parents: 7678
diff changeset
    11
  val add_header: Comment.text -> Toplevel.transition -> Toplevel.transition
6552
28553eba1913 Comment.text;
wenzelm
parents: 6531
diff changeset
    12
  val add_chapter: Comment.text -> theory -> theory
28553eba1913 Comment.text;
wenzelm
parents: 6531
diff changeset
    13
  val add_section: Comment.text -> theory -> theory
28553eba1913 Comment.text;
wenzelm
parents: 6531
diff changeset
    14
  val add_subsection: Comment.text -> theory -> theory
28553eba1913 Comment.text;
wenzelm
parents: 6531
diff changeset
    15
  val add_subsubsection: Comment.text -> theory -> theory
7172
wenzelm
parents: 7103
diff changeset
    16
  val add_text: Comment.text -> theory -> theory
7862
3e75fbd4a46b renamed verbatim/verb to text_raw/txt_raw;
wenzelm
parents: 7851
diff changeset
    17
  val add_text_raw: Comment.text -> theory -> theory
7172
wenzelm
parents: 7103
diff changeset
    18
  val add_sect: Comment.text -> ProofHistory.T -> ProofHistory.T
wenzelm
parents: 7103
diff changeset
    19
  val add_subsect: Comment.text -> ProofHistory.T -> ProofHistory.T
wenzelm
parents: 7103
diff changeset
    20
  val add_subsubsect: Comment.text -> ProofHistory.T -> ProofHistory.T
wenzelm
parents: 7103
diff changeset
    21
  val add_txt: Comment.text -> ProofHistory.T -> ProofHistory.T
7862
3e75fbd4a46b renamed verbatim/verb to text_raw/txt_raw;
wenzelm
parents: 7851
diff changeset
    22
  val add_txt_raw: Comment.text -> ProofHistory.T -> ProofHistory.T
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
    23
  val global_path: Comment.text -> theory -> theory
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
    24
  val local_path: Comment.text -> theory -> theory
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
    25
  val hide_space: (string * xstring list) * Comment.text -> theory -> theory
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
    26
  val hide_space_i: (string * string list) * Comment.text -> theory -> theory
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    27
  val add_classes: (bclass * xclass list) list * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    28
  val add_classes_i: (bclass * class list) list * Comment.text  -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    29
  val add_classrel: (xclass * xclass) * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    30
  val add_classrel_i: (class * class) * Comment.text -> theory -> theory
8897
fb1436ca3b2e adapted to inner syntax of sorts;
wenzelm
parents: 8885
diff changeset
    31
  val add_defsort: string * Comment.text -> theory -> theory
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    32
  val add_defsort_i: sort * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    33
  val add_nonterminals: (bstring * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    34
  val add_tyabbrs: ((bstring * string list * string * mixfix) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    35
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    36
  val add_tyabbrs_i: ((bstring * string list * typ * mixfix) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    37
    -> theory -> theory
8897
fb1436ca3b2e adapted to inner syntax of sorts;
wenzelm
parents: 8885
diff changeset
    38
  val add_arities: ((xstring * string list * string) * Comment.text) list -> theory -> theory
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    39
  val add_arities_i: ((string * sort list * sort) * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    40
  val add_typedecl: (bstring * string list * mixfix) * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    41
  val add_consts: ((bstring * string * mixfix) * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    42
  val add_consts_i: ((bstring * typ * mixfix) * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    43
  val add_modesyntax: string * bool -> ((bstring * string * mixfix) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    44
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    45
  val add_modesyntax_i: string * bool -> ((bstring * typ * mixfix) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    46
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    47
  val add_trrules: ((xstring * string) Syntax.trrule * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    48
  val add_trrules_i: (Syntax.ast Syntax.trrule * Comment.text) list -> theory -> theory
8227
d67db92897df add_judgment;
wenzelm
parents: 8213
diff changeset
    49
  val add_judgment: (bstring * string * mixfix) * Comment.text -> theory -> theory
d67db92897df add_judgment;
wenzelm
parents: 8213
diff changeset
    50
  val add_judgment_i: (bstring * typ * mixfix) * Comment.text -> theory -> theory
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    51
  val add_axioms: (((bstring * string) * Args.src list) * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    52
  val add_axioms_i: (((bstring * term) * theory attribute list) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    53
    -> theory -> theory
9318
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9273
diff changeset
    54
  val add_defs: bool * (((bstring * string) * Args.src list) * Comment.text) list
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9273
diff changeset
    55
    -> theory -> theory
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9273
diff changeset
    56
  val add_defs_i: bool * (((bstring * term) * theory attribute list) * Comment.text) list
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    57
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    58
  val add_constdefs: (((bstring * string * mixfix) * Comment.text) * (string * Comment.text)) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    59
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    60
  val add_constdefs_i: (((bstring * typ * mixfix) * Comment.text) * (term * Comment.text)) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    61
    -> theory -> theory
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
    62
  val apply_theorems: (xstring * Args.src list) list -> theory -> theory * thm list
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
    63
  val apply_theorems_i: (thm * theory attribute list) list -> theory -> theory * thm list
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
    64
  val declare_theorems: (xstring * Args.src list) list * Comment.text -> theory -> theory
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
    65
  val declare_theorems_i: (thm * theory attribute list) list * Comment.text -> theory -> theory
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
    66
  val have_theorems: string ->
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    67
    (((bstring * Args.src list) * (xstring * Args.src list) list) * Comment.text) list
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
    68
    -> theory -> theory
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
    69
  val have_theorems_i:  string ->
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
    70
    (((bstring * theory attribute list) * (thm * theory attribute list) list)
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
    71
    * Comment.text) list -> theory -> theory
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
    72
  val have_facts: (((string * Args.src list) * (string * Args.src list) list) * Comment.text) list
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
    73
    -> ProofHistory.T -> ProofHistory.T
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
    74
  val have_facts_i: (((string * Proof.context attribute list) *
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    75
    (thm * Proof.context attribute list) list) * Comment.text) list
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    76
    -> ProofHistory.T -> ProofHistory.T
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    77
  val from_facts: ((string * Args.src list) list * Comment.text) list
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    78
    -> ProofHistory.T -> ProofHistory.T
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
    79
  val from_facts_i: ((thm * Proof.context attribute list) list * Comment.text) list
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    80
    -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    81
  val with_facts: ((string * Args.src list) list * Comment.text) list
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    82
    -> ProofHistory.T -> ProofHistory.T
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
    83
  val with_facts_i: ((thm * Proof.context attribute list) list * Comment.text) list
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
    84
    -> ProofHistory.T -> ProofHistory.T
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    85
  val chain: Comment.text -> ProofHistory.T -> ProofHistory.T
7417
70c1d3eac214 fix: common constraints;
wenzelm
parents: 7353
diff changeset
    86
  val fix: ((string list * string option) * Comment.text) list -> ProofHistory.T -> ProofHistory.T
7666
226ea33c7cd6 fix_i, local_def_i: typ option;
wenzelm
parents: 7633
diff changeset
    87
  val fix_i: ((string list * typ option) * Comment.text) list -> ProofHistory.T -> ProofHistory.T
8615
419166fa66d0 let_bind(_i): polymorphic version;
wenzelm
parents: 8588
diff changeset
    88
  val let_bind: ((string list * string) * Comment.text) list -> ProofHistory.T -> ProofHistory.T
419166fa66d0 let_bind(_i): polymorphic version;
wenzelm
parents: 8588
diff changeset
    89
  val let_bind_i: ((term list * term) * Comment.text) list -> ProofHistory.T -> ProofHistory.T
8450
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
    90
  val invoke_case: (string * Args.src list) * Comment.text -> ProofHistory.T -> ProofHistory.T
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
    91
  val invoke_case_i: (string * Proof.context attribute list) * Comment.text
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
    92
    -> ProofHistory.T -> ProofHistory.T
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
    93
  val theorem: string -> ((bstring * Args.src list) * (string * (string list * string list)))
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    94
    * Comment.text -> bool -> theory -> ProofHistory.T
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
    95
  val theorem_i: string -> ((bstring * theory attribute list) * (term * (term list * term list)))
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    96
    * Comment.text -> bool -> theory -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    97
  val assume: (((string * Args.src list) * (string * (string list * string list)) list)
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
    98
    * Comment.text) list -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    99
  val assume_i: (((string * Proof.context attribute list) * (term * (term list * term list)) list)
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   100
    * Comment.text) list -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   101
  val presume: (((string * Args.src list) * (string * (string list * string list)) list)
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   102
    * Comment.text) list -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   103
  val presume_i: (((string * Proof.context attribute list) * (term * (term list * term list)) list)
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   104
    * Comment.text) list -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   105
  val local_def: ((string * Args.src list) * (string * (string * string list)))
6952
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   106
    * Comment.text -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   107
  val local_def_i: ((string * Args.src list) * (string * (term * term list)))
6952
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   108
    * Comment.text -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   109
  val show: ((string * Args.src list) * (string * (string list * string list)))
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   110
    * Comment.text -> bool -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   111
  val show_i: ((string * Proof.context attribute list) * (term * (term list * term list)))
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   112
    * Comment.text -> bool -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   113
  val have: ((string * Args.src list) * (string * (string list * string list)))
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   114
    * Comment.text -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   115
  val have_i: ((string * Proof.context attribute list) * (term * (term list * term list)))
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   116
    * Comment.text -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   117
  val thus: ((string * Args.src list) * (string * (string list * string list)))
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   118
    * Comment.text -> bool -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   119
  val thus_i: ((string * Proof.context attribute list) * (term * (term list * term list)))
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   120
    * Comment.text -> bool -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   121
  val hence: ((string * Args.src list) * (string * (string list * string list)))
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   122
    * Comment.text -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   123
  val hence_i: ((string * Proof.context attribute list) * (term * (term list * term list)))
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   124
    * Comment.text -> ProofHistory.T -> ProofHistory.T
9032
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   125
  val begin_block: Comment.text -> ProofHistory.T -> ProofHistory.T
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   126
  val next_block: Comment.text -> ProofHistory.T -> ProofHistory.T
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   127
  val end_block: Comment.text -> ProofHistory.T -> ProofHistory.T
8681
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   128
  val defer: int option * Comment.text -> ProofHistory.T -> ProofHistory.T
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   129
  val prefer: int * Comment.text -> ProofHistory.T -> ProofHistory.T
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   130
  val apply: Method.text * Comment.text -> ProofHistory.T -> ProofHistory.T
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   131
  val apply_end: Method.text * Comment.text -> ProofHistory.T -> ProofHistory.T
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   132
  val proof: (Comment.interest * (Method.text * Comment.interest) option) * Comment.text
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   133
    -> ProofHistory.T -> ProofHistory.T
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   134
  val qed: (Method.text * Comment.interest) option * Comment.text
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   135
    -> Toplevel.transition -> Toplevel.transition
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   136
  val terminal_proof: ((Method.text * Comment.interest) * (Method.text * Comment.interest) option)
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   137
    * Comment.text -> Toplevel.transition -> Toplevel.transition
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   138
  val default_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   139
  val immediate_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   140
  val done_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   141
  val skip_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
8210
ca3997312f47 added forget_proof;
wenzelm
parents: 8204
diff changeset
   142
  val forget_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   143
  val get_thmss: (string * Args.src list) list -> Proof.state -> thm list
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   144
  val also: ((string * Args.src list) list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   145
    -> Toplevel.transition -> Toplevel.transition
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   146
  val also_i: (thm list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   147
    -> Toplevel.transition -> Toplevel.transition
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   148
  val finally: ((string * Args.src list) list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   149
    -> Toplevel.transition -> Toplevel.transition
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   150
  val finally_i: (thm list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   151
    -> Toplevel.transition -> Toplevel.transition
8562
ce0e2b8e8844 added 'moreover' command;
wenzelm
parents: 8466
diff changeset
   152
  val moreover: Comment.text -> Toplevel.transition -> Toplevel.transition
8588
b7c3f264f8ac added 'ultimately';
wenzelm
parents: 8562
diff changeset
   153
  val ultimately: Comment.text -> Toplevel.transition -> Toplevel.transition
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   154
  val parse_ast_translation: string * Comment.text -> theory -> theory
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   155
  val parse_translation: string * Comment.text -> theory -> theory
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   156
  val print_translation: string * Comment.text -> theory -> theory
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   157
  val typed_print_translation: string * Comment.text -> theory -> theory
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   158
  val print_ast_translation: string * Comment.text -> theory -> theory
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   159
  val token_translation: string * Comment.text -> theory -> theory
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   160
  val method_setup: (bstring * string * string) * Comment.text -> theory -> theory
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   161
  val add_oracle: (bstring * string) * Comment.text -> theory -> theory
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   162
  val begin_theory: string -> string list -> (string * bool) list -> theory
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   163
  val end_theory: theory -> theory
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   164
  val kill_theory: string -> unit
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   165
  val theory: string * string list * (string * bool) list
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   166
    -> Toplevel.transition -> Toplevel.transition
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   167
  val init_context: ('a -> unit) -> 'a -> Toplevel.transition -> Toplevel.transition
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   168
  val context: string -> Toplevel.transition -> Toplevel.transition
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   169
end;
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   170
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   171
structure IsarThy: ISAR_THY =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   172
struct
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   173
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   174
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   175
(** derived theory and proof operations **)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   176
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   177
(* markup commands *)
5959
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   178
7734
9c098c777926 replace add_title by add_header;
wenzelm
parents: 7678
diff changeset
   179
fun add_header comment =
9c098c777926 replace add_title by add_header;
wenzelm
parents: 7678
diff changeset
   180
  Toplevel.keep (fn state => if Toplevel.is_toplevel state then () else raise Toplevel.UNDEF);
9c098c777926 replace add_title by add_header;
wenzelm
parents: 7678
diff changeset
   181
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   182
fun add_text _ x = x;
8079
ccfc64f29333 raw_t(e)xt: any proof mode;
wenzelm
parents: 7960
diff changeset
   183
fun add_text_raw _ x = x;
7633
838077e40a46 present sections;
wenzelm
parents: 7614
diff changeset
   184
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   185
fun add_heading add present txt thy =
7633
838077e40a46 present sections;
wenzelm
parents: 7614
diff changeset
   186
  (Context.setmp (Some thy) present (Comment.string_of txt); add txt thy);
838077e40a46 present sections;
wenzelm
parents: 7614
diff changeset
   187
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   188
val add_chapter = add_heading add_text Present.section;
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   189
val add_section = add_heading add_text Present.section;
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   190
val add_subsection = add_heading add_text Present.subsection;
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   191
val add_subsubsection = add_heading add_text Present.subsubsection;
5959
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   192
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   193
fun add_txt (_: Comment.text) = ProofHistory.apply I;
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   194
val add_txt_raw = add_txt;
7332
60534b9018ae fixed add_sect etc.;
wenzelm
parents: 7271
diff changeset
   195
val add_sect = add_txt;
60534b9018ae fixed add_sect etc.;
wenzelm
parents: 7271
diff changeset
   196
val add_subsect = add_txt;
60534b9018ae fixed add_sect etc.;
wenzelm
parents: 7271
diff changeset
   197
val add_subsubsect = add_txt;
7172
wenzelm
parents: 7103
diff changeset
   198
5959
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   199
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   200
(* name spaces *)
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   201
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   202
fun global_path comment_ignore = PureThy.global_path;
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   203
fun local_path comment_ignore = PureThy.local_path;
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   204
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   205
local
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   206
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   207
val kinds =
10449
088aa7bd3154 hide_space(_i): use Sign.certify_tycon, Sign.certify_tyabbr, Sign.certify_const;
wenzelm
parents: 9903
diff changeset
   208
 [(Sign.classK, can o Sign.certify_class),
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   209
  (Sign.typeK, fn sg => fn c =>
10449
088aa7bd3154 hide_space(_i): use Sign.certify_tycon, Sign.certify_tyabbr, Sign.certify_const;
wenzelm
parents: 9903
diff changeset
   210
    can (Sign.certify_tycon sg) c orelse can (Sign.certify_tyabbr sg) c),
088aa7bd3154 hide_space(_i): use Sign.certify_tycon, Sign.certify_tyabbr, Sign.certify_const;
wenzelm
parents: 9903
diff changeset
   211
  (Sign.constK, can o Sign.certify_const)];
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   212
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   213
fun gen_hide intern ((kind, xnames), comment_ignore) thy =
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   214
  (case assoc (kinds, kind) of
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   215
    Some check =>
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   216
      let
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   217
        val sg = Theory.sign_of thy;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   218
        val names = map (intern sg kind) xnames;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   219
        val bads = filter_out (check sg) names;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   220
      in
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   221
        if null bads then Theory.hide_space_i (kind, names) thy
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   222
        else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads)
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   223
      end
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   224
  | None => error ("Bad name space specification: " ^ quote kind));
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   225
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   226
in
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   227
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   228
fun hide_space x = gen_hide Sign.intern x;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   229
fun hide_space_i x = gen_hide (K (K I)) x;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   230
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   231
end;
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   232
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   233
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   234
(* signature and syntax *)
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   235
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   236
val add_classes = Theory.add_classes o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   237
val add_classes_i = Theory.add_classes_i o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   238
val add_classrel = Theory.add_classrel o single o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   239
val add_classrel_i = Theory.add_classrel_i o single o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   240
val add_defsort = Theory.add_defsort o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   241
val add_defsort_i = Theory.add_defsort_i o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   242
val add_nonterminals = Theory.add_nonterminals o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   243
val add_tyabbrs = Theory.add_tyabbrs o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   244
val add_tyabbrs_i = Theory.add_tyabbrs_i o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   245
val add_arities = Theory.add_arities o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   246
val add_arities_i = Theory.add_arities_i o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   247
val add_typedecl = PureThy.add_typedecls o single o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   248
val add_consts = Theory.add_consts o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   249
val add_consts_i = Theory.add_consts_i o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   250
fun add_modesyntax mode = Theory.add_modesyntax mode o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   251
fun add_modesyntax_i mode = Theory.add_modesyntax_i mode o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   252
val add_trrules = Theory.add_trrules o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   253
val add_trrules_i = Theory.add_trrules_i o map Comment.ignore;
8227
d67db92897df add_judgment;
wenzelm
parents: 8213
diff changeset
   254
val add_judgment = AutoBind.add_judgment o Comment.ignore;
d67db92897df add_judgment;
wenzelm
parents: 8213
diff changeset
   255
val add_judgment_i = AutoBind.add_judgment_i o Comment.ignore;
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   256
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   257
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   258
(* axioms and defs *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   259
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   260
fun add_axms f args thy =
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   261
  f (map (fn (x, srcs) => (x, map (Attrib.global_attribute thy) srcs)) args) thy;
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   262
8428
be4c8a57cf7e adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8371
diff changeset
   263
val add_axioms = add_axms (#1 oo PureThy.add_axioms) o map Comment.ignore;
be4c8a57cf7e adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8371
diff changeset
   264
val add_axioms_i = (#1 oo PureThy.add_axioms_i) o map Comment.ignore;
9318
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9273
diff changeset
   265
fun add_defs (x, args) = add_axms (#1 oo PureThy.add_defs x) (map Comment.ignore args);
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9273
diff changeset
   266
fun add_defs_i (x, args) = (#1 oo PureThy.add_defs_i x) (map Comment.ignore args);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   267
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   268
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   269
(* constdefs *)
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   270
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   271
fun gen_add_constdefs consts defs args thy =
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   272
  thy
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   273
  |> consts (map (Comment.ignore o fst) args)
9318
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9273
diff changeset
   274
  |> defs (false, map (fn (((c, _, mx), _), (s, _)) =>
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   275
    (((Thm.def_name (Syntax.const_name c mx), s), []), Comment.none)) args);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   276
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   277
fun add_constdefs args = gen_add_constdefs Theory.add_consts add_defs args;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   278
fun add_constdefs_i args = gen_add_constdefs Theory.add_consts_i add_defs_i args;
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   279
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   280
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   281
(* theorems *)
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   282
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   283
fun prep_thmss get attrib = map (fn ((name, more_srcs), th_srcs) =>
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   284
  ((name, map attrib more_srcs), map (fn (s, srcs) => (get s, map attrib srcs)) th_srcs));
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   285
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   286
fun flat_unnamed (x, ys) = (x, flat (map snd ys));
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   287
fun cond_kind k = if k = "" then [] else [Drule.kind k];
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   288
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   289
fun global_have_thmss kind f args thy =
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   290
  let
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   291
    val args' = prep_thmss (PureThy.get_thms thy) (Attrib.global_attribute thy) args
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   292
    val (thy', named_thmss) = f (cond_kind kind) args' thy;
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   293
    fun present (name, thms) = Present.results (kind ^ "s") name thms;
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   294
  in
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   295
    if kind = "" orelse kind = Drule.internalK then ()
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   296
    else Context.setmp (Some thy') (fn () => seq present named_thmss) ();
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   297
    (thy', named_thmss)
7572
6e6dafacbc28 present results;
wenzelm
parents: 7506
diff changeset
   298
  end;
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   299
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   300
fun local_have_thmss f args state =
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   301
  let
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   302
    val args' = prep_thmss (ProofContext.get_thms (Proof.context_of state))
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   303
      (Attrib.local_attribute (Proof.theory_of state)) args;
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   304
  in f args' state end;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   305
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   306
fun gen_have_thmss_i f args = f (map (fn ((name, more_atts), th_atts) =>
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   307
  ((name, more_atts), map (apfst single) th_atts)) args);
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   308
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   309
fun apply_theorems th_srcs =
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   310
  flat_unnamed o global_have_thmss "" PureThy.have_thmss [(("", []), th_srcs)];
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   311
fun apply_theorems_i th_srcs =
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   312
  flat_unnamed o gen_have_thmss_i (PureThy.have_thmss []) [(("", []), th_srcs)];
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   313
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   314
val declare_theorems = #1 oo (apply_theorems o Comment.ignore);
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   315
val declare_theorems_i = #1 oo (apply_theorems_i o Comment.ignore);
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   316
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   317
fun have_theorems kind =
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   318
  #1 oo (global_have_thmss kind PureThy.have_thmss o map Comment.ignore);
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   319
fun have_theorems_i kind =
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   320
  #1 oo (gen_have_thmss_i (PureThy.have_thmss (cond_kind kind)) o map Comment.ignore);
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   321
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   322
val have_facts = ProofHistory.apply o local_have_thmss Proof.have_thmss o map Comment.ignore;
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   323
val have_facts_i = ProofHistory.apply o gen_have_thmss_i Proof.have_thmss o map Comment.ignore;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   324
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   325
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   326
(* forward chaining *)
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   327
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   328
fun gen_from_facts f args = ProofHistory.apply (Proof.chain o f (map (pair ("", [])) args));
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   329
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   330
val from_facts = gen_from_facts (local_have_thmss Proof.have_thmss) o map Comment.ignore;
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   331
val from_facts_i = gen_from_facts (gen_have_thmss_i Proof.have_thmss) o map Comment.ignore;
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   332
val with_facts = gen_from_facts (local_have_thmss Proof.with_thmss) o map Comment.ignore;
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   333
val with_facts_i = gen_from_facts (gen_have_thmss_i Proof.with_thmss) o map Comment.ignore;
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   334
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   335
fun chain comment_ignore = ProofHistory.apply Proof.chain;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   336
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   337
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   338
(* context *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   339
7417
70c1d3eac214 fix: common constraints;
wenzelm
parents: 7353
diff changeset
   340
val fix = ProofHistory.apply o Proof.fix o map Comment.ignore;
70c1d3eac214 fix: common constraints;
wenzelm
parents: 7353
diff changeset
   341
val fix_i = ProofHistory.apply o Proof.fix_i o map Comment.ignore;
8615
419166fa66d0 let_bind(_i): polymorphic version;
wenzelm
parents: 8588
diff changeset
   342
val let_bind = ProofHistory.apply o Proof.let_bind o map Comment.ignore;
419166fa66d0 let_bind(_i): polymorphic version;
wenzelm
parents: 8588
diff changeset
   343
val let_bind_i = ProofHistory.apply o Proof.let_bind_i o map Comment.ignore;
8450
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
   344
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
   345
fun invoke_case ((name, src), comment_ignore) = ProofHistory.apply (fn state =>
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
   346
  Proof.invoke_case (name, map (Attrib.local_attribute (Proof.theory_of state)) src) state);
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
   347
val invoke_case_i = ProofHistory.apply o Proof.invoke_case o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   348
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   349
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   350
(* local results *)
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   351
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   352
local
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   353
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   354
fun pretty_result {kind, name, thm} =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   355
  Pretty.block [Pretty.str (kind ^ (if name = "" then "" else " " ^ name) ^ ":"),
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   356
    Pretty.fbrk, Proof.pretty_thm thm];
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   357
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   358
fun pretty_rule s thm =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   359
  Pretty.block [Pretty.str (s ^ " to solve goal by exported rule:"),
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   360
    Pretty.fbrk, Proof.pretty_thm thm];
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   361
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   362
in
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   363
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   364
val print_result = Pretty.writeln o pretty_result;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   365
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   366
fun cond_print_result_rule int =
11048
2f4976370b7a tuned msg;
wenzelm
parents: 10935
diff changeset
   367
  if int then (print_result, priority o Pretty.string_of o pretty_rule "Attempt")
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   368
  else (K (), K ());
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   369
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   370
fun proof'' f = Toplevel.proof' (f o cond_print_result_rule);
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   371
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   372
fun check_goal false state = state
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   373
  | check_goal true state =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   374
      let
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   375
        val rule = ref (None: thm option);
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   376
        fun warn exn =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   377
          (["Problem! Local statement will fail to solve any pending goal"] @
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   378
          (case exn of None => [] | Some e => [Toplevel.exn_message e]) @
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   379
          (case ! rule of None => [] | Some thm =>
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   380
            [Pretty.string_of (pretty_rule "Failed attempt" thm)]))
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   381
          |> cat_lines |> warning;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   382
        val check =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   383
          (fn () => Seq.pull (SkipProof.local_skip_proof (K (), fn thm => rule := Some thm) state))
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   384
          |> Library.setmp quick_and_dirty true
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   385
          |> Library.transform_error;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   386
        val result = (check (), None) handle Interrupt => raise Interrupt | e => (None, Some e);
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   387
      in (case result of (Some _, None) => () | (_, exn) => warn exn); state end;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   388
      
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   389
end;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   390
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   391
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   392
(* statements *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   393
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   394
local
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   395
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   396
fun local_statement' f g ((name, src), s) int = ProofHistory.apply (fn state =>
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   397
  f name (map (Attrib.local_attribute (Proof.theory_of state)) src) s int (g state));
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   398
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   399
fun local_statement_i' f g ((name, atts), t) int =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   400
  ProofHistory.apply (f name atts t int o g);
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   401
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   402
fun local_statement f g args = local_statement' (K ooo f) g args ();
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   403
fun local_statement_i f g args = local_statement_i' (K ooo f) g args ();
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   404
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   405
fun multi_local_attribute state ((name, src), s) =
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   406
  ((name, map (Attrib.local_attribute (Proof.theory_of state)) src), s);
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   407
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   408
fun multi_statement f args = ProofHistory.apply (fn state =>
7678
027b6ec2f084 added 'obtain' command;
wenzelm
parents: 7666
diff changeset
   409
  f (map (multi_local_attribute state) args) state);
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   410
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   411
fun multi_statement_i f args = ProofHistory.apply (f args);
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   412
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   413
in
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   414
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   415
fun theorem k (((name, src), s), comment_ignore) int thy =
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   416
  ProofHistory.init (Toplevel.undo_limit int)
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   417
    (Proof.theorem k name (map (Attrib.global_attribute thy) src) s thy);
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   418
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   419
fun theorem_i k (((name, atts), t), comment_ignore) int thy =
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   420
  ProofHistory.init (Toplevel.undo_limit int) (Proof.theorem_i k name atts t thy);
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   421
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   422
val assume      = multi_statement Proof.assume o map Comment.ignore;
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   423
val assume_i    = multi_statement_i Proof.assume_i o map Comment.ignore;
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   424
val presume     = multi_statement Proof.presume o map Comment.ignore;
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   425
val presume_i   = multi_statement_i Proof.presume_i o map Comment.ignore;
6952
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   426
val local_def   = local_statement LocalDefs.def I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   427
val local_def_i = local_statement LocalDefs.def_i I o Comment.ignore;
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   428
val show        = local_statement' (Proof.show check_goal Seq.single) I o Comment.ignore;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   429
val show_i      = local_statement_i' (Proof.show_i check_goal Seq.single) I o Comment.ignore;
7176
a329a37ed91a local goals: after_qed;
wenzelm
parents: 7172
diff changeset
   430
val have        = local_statement (Proof.have Seq.single) I o Comment.ignore;
a329a37ed91a local goals: after_qed;
wenzelm
parents: 7172
diff changeset
   431
val have_i      = local_statement_i (Proof.have_i Seq.single) I o Comment.ignore;
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   432
val thus        = local_statement' (Proof.show check_goal Seq.single) Proof.chain o Comment.ignore;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   433
val thus_i      = local_statement_i' (Proof.show_i check_goal Seq.single) Proof.chain o Comment.ignore;
7176
a329a37ed91a local goals: after_qed;
wenzelm
parents: 7172
diff changeset
   434
val hence       = local_statement (Proof.have Seq.single) Proof.chain o Comment.ignore;
a329a37ed91a local goals: after_qed;
wenzelm
parents: 7172
diff changeset
   435
val hence_i     = local_statement_i (Proof.have_i Seq.single) Proof.chain o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   436
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   437
end;
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   438
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   439
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   440
(* blocks *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   441
9032
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   442
fun begin_block comment_ignore = ProofHistory.apply Proof.begin_block;
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   443
fun next_block comment_ignore = ProofHistory.apply Proof.next_block;
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   444
fun end_block comment_ignore = ProofHistory.applys Proof.end_block;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   445
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   446
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   447
(* shuffle state *)
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   448
8236
df3f983f5858 apply: observe facts;
wenzelm
parents: 8227
diff changeset
   449
fun shuffle meth i = Method.refine (Method.Basic (K (meth i))) o Proof.assert_no_chain;
8204
b2a4a3d86b73 tuned prefer/defer;
wenzelm
parents: 8165
diff changeset
   450
8681
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   451
fun defer (i, comment_ignore) = ProofHistory.applys (shuffle Method.defer i);
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   452
fun prefer (i, comment_ignore) = ProofHistory.applys (shuffle Method.prefer i);
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   453
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   454
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   455
(* backward steps *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   456
8881
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   457
fun apply (m, comment_ignore) = ProofHistory.applys
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   458
  (Seq.map (Proof.goal_facts (K [])) o Method.refine m o Proof.assert_backward);
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   459
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   460
fun apply_end (m, comment_ignore) = ProofHistory.applys
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   461
  (Method.refine_end m o Proof.assert_forward);
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   462
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   463
val proof = ProofHistory.applys o Method.proof o
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   464
  apsome Comment.ignore_interest o Comment.ignore_interest' o Comment.ignore;
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   465
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   466
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   467
(* local endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   468
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   469
val local_qed =
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   470
  proof'' o (ProofHistory.applys oo Method.local_qed true) o apsome Comment.ignore_interest;
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   471
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   472
fun ignore_interests (x, y) = (Comment.ignore_interest x, apsome Comment.ignore_interest y);
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   473
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   474
val local_terminal_proof =
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   475
  proof'' o (ProofHistory.applys oo Method.local_terminal_proof) o ignore_interests;
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   476
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   477
val local_default_proof = proof'' (ProofHistory.applys o Method.local_default_proof);
6904
4125d6b6d8f9 removed proof history nesting commands (not useful);
wenzelm
parents: 6890
diff changeset
   478
val local_immediate_proof = proof'' (ProofHistory.applys o Method.local_immediate_proof);
4125d6b6d8f9 removed proof history nesting commands (not useful);
wenzelm
parents: 6890
diff changeset
   479
val local_skip_proof = proof'' (ProofHistory.applys o SkipProof.local_skip_proof);
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   480
val local_done_proof = proof'' (ProofHistory.applys o Method.local_done_proof);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   481
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   482
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   483
(* global endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   484
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   485
fun global_result finish = Toplevel.proof_to_theory (fn prf =>
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   486
  let
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   487
    val state = ProofHistory.current prf;
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   488
    val _ = if Proof.at_bottom state then () else raise Toplevel.UNDEF;
7572
6e6dafacbc28 present results;
wenzelm
parents: 7506
diff changeset
   489
    val (thy, res as {kind, name, thm}) = finish state;
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   490
  in
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   491
    if kind = "" orelse kind = Drule.internalK then ()
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   492
    else (print_result res; Context.setmp (Some thy) (Present.result kind name) thm);
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   493
    thy
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   494
  end);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   495
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   496
val global_qed = global_result o Method.global_qed true o apsome Comment.ignore_interest;
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   497
val global_terminal_proof = global_result o Method.global_terminal_proof o ignore_interests;
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   498
val global_default_proof = global_result Method.global_default_proof;
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   499
val global_immediate_proof = global_result Method.global_immediate_proof;
6888
d0c68ebdabc5 skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents: 6885
diff changeset
   500
val global_skip_proof = global_result SkipProof.global_skip_proof;
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   501
val global_done_proof = global_result Method.global_done_proof;
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   502
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   503
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   504
(* common endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   505
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   506
fun qed (meth, comment) = local_qed meth o global_qed meth;
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   507
fun terminal_proof (meths, comment) = local_terminal_proof meths o global_terminal_proof meths;
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   508
fun default_proof comment = local_default_proof o global_default_proof;
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   509
fun immediate_proof comment = local_immediate_proof o global_immediate_proof;
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   510
fun done_proof comment = local_done_proof o global_done_proof;
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   511
fun skip_proof comment = local_skip_proof o global_skip_proof;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   512
8210
ca3997312f47 added forget_proof;
wenzelm
parents: 8204
diff changeset
   513
fun forget_proof comment = Toplevel.proof_to_theory (Proof.theory_of o ProofHistory.current);
ca3997312f47 added forget_proof;
wenzelm
parents: 8204
diff changeset
   514
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   515
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   516
(* calculational proof commands *)
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   517
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   518
local
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   519
7417
70c1d3eac214 fix: common constraints;
wenzelm
parents: 7353
diff changeset
   520
fun cond_print_calc int thms =
70c1d3eac214 fix: common constraints;
wenzelm
parents: 7353
diff changeset
   521
  if int then Pretty.writeln (Pretty.big_list "calculation:" (map Proof.pretty_thm thms))
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   522
  else ();
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   523
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   524
fun proof''' f = Toplevel.proof' (f o cond_print_calc);
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   525
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   526
fun gen_calc get f (args, _) prt state =
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   527
  f (apsome (fn (srcs, _) => get srcs state) args) prt state;
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   528
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   529
in
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   530
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   531
fun get_thmss srcs = Proof.the_facts o local_have_thmss Proof.have_thmss [(("", []), srcs)];
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   532
fun get_thmss_i thms _ = thms;
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   533
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   534
fun also x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.also x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   535
fun also_i x = proof''' (ProofHistory.applys o gen_calc get_thmss_i Calculation.also x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   536
fun finally x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.finally x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   537
fun finally_i x = proof''' (ProofHistory.applys o gen_calc get_thmss_i Calculation.finally x);
8562
ce0e2b8e8844 added 'moreover' command;
wenzelm
parents: 8466
diff changeset
   538
fun moreover comment = proof''' (ProofHistory.apply o Calculation.moreover);
8588
b7c3f264f8ac added 'ultimately';
wenzelm
parents: 8562
diff changeset
   539
fun ultimately comment = proof''' (ProofHistory.apply o Calculation.ultimately);
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   540
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   541
end;
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   542
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   543
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   544
(* translation functions *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   545
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   546
val parse_ast_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   547
  Context.use_let "val parse_ast_translation: (string * (Syntax.ast list -> Syntax.ast)) list"
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   548
    "Theory.add_trfuns (parse_ast_translation, [], [], [])" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   549
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   550
val parse_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   551
  Context.use_let "val parse_translation: (string * (term list -> term)) list"
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   552
    "Theory.add_trfuns ([], parse_translation, [], [])" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   553
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   554
val print_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   555
  Context.use_let "val print_translation: (string * (term list -> term)) list"
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   556
    "Theory.add_trfuns ([], [], print_translation, [])" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   557
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   558
val print_ast_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   559
  Context.use_let "val print_ast_translation: (string * (Syntax.ast list -> Syntax.ast)) list"
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   560
    "Theory.add_trfuns ([], [], [], print_ast_translation)" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   561
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   562
val typed_print_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   563
  Context.use_let "val typed_print_translation: (string * (bool -> typ -> term list -> term)) list"
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   564
    "Theory.add_trfunsT typed_print_translation" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   565
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   566
val token_translation =
11717
d808005e6e08 Fixed erroneous type constraint in token_translation function.
berghofe
parents: 11048
diff changeset
   567
  Context.use_let "val token_translation: (string * string * (string -> string * real)) list"
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   568
    "Theory.add_tokentrfuns token_translation" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   569
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   570
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   571
(* add method *)
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   572
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   573
fun method_setup ((name, txt, cmt), comment_ignore) =
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   574
  Context.use_let
9810
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   575
    "val thm = PureThy.get_thm_closure (Context.the_context ());\n\
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   576
    \val thms = PureThy.get_thms_closure (Context.the_context ());\n\
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   577
    \val method: bstring * (Args.src -> Proof.context -> Proof.method) * string"
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   578
    "PureIsar.Method.add_method method"
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   579
    ("(" ^ quote name ^ ", " ^ txt ^ ", " ^ quote cmt ^ ")");
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   580
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   581
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   582
(* add_oracle *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   583
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   584
fun add_oracle ((name, txt), comment_ignore) =
8349
611342539639 moved use_mltext, use_mltext_theory, use_let, use_setup to context.ML;
wenzelm
parents: 8236
diff changeset
   585
  Context.use_let
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   586
    "val oracle: bstring * (Sign.sg * Object.T -> term)"
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   587
    "Theory.add_oracle oracle"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   588
    ("(" ^ quote name ^ ", " ^ txt ^ ")");
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   589
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   590
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   591
(* theory init and exit *)
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   592
8804
wenzelm
parents: 8731
diff changeset
   593
fun gen_begin_theory upd name parents files =
wenzelm
parents: 8731
diff changeset
   594
  ThyInfo.begin_theory Present.begin_theory upd name parents (map (apfst Path.unpack) files);
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   595
8804
wenzelm
parents: 8731
diff changeset
   596
val begin_theory = gen_begin_theory false;
7909
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   597
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   598
fun end_theory thy =
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   599
  if ThyInfo.check_known_thy (PureThy.get_name thy) then ThyInfo.end_theory thy
7909
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   600
  else thy;
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   601
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   602
val kill_theory = ThyInfo.if_known_thy ThyInfo.remove_thy;
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   603
7103
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   604
8804
wenzelm
parents: 8731
diff changeset
   605
fun bg_theory (name, parents, files) int = gen_begin_theory int name parents files;
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   606
fun en_theory thy = (end_theory thy; ());
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   607
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   608
fun theory spec = Toplevel.init_theory (bg_theory spec) en_theory (kill_theory o PureThy.get_name);
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   609
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   610
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   611
(* context switch *)
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   612
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   613
fun fetch_context f x =
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   614
  (case Context.pass None f x of
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   615
    ((), None) => raise Toplevel.UNDEF
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   616
  | ((), Some thy) => thy);
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   617
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   618
fun init_context f x = Toplevel.init_theory (fn _ => fetch_context f x) (K ()) (K ());
7953
955fde69fa7b added init_context;
wenzelm
parents: 7932
diff changeset
   619
955fde69fa7b added init_context;
wenzelm
parents: 7932
diff changeset
   620
val context = init_context (ThyInfo.quiet_update_thy true);
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   621
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   622
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   623
end;