src/Pure/Isar/isar_thy.ML
author wenzelm
Tue, 15 Jan 2002 00:11:52 +0100
changeset 12759 5f4fb54bfaf9
parent 12713 c9e3e34dbc45
child 12848 ac191fb20ff1
permissions -rw-r--r--
tuned;
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
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    62
  val theorems: string ->
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    63
    (((bstring * Args.src list) * (xstring * Args.src list) list) * Comment.text) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    64
    -> theory -> theory * (string * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    65
  val theorems_i: string ->
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    66
    (((bstring * theory attribute list)
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    67
      * (thm list * theory attribute list) list) * Comment.text) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    68
    -> theory -> theory * (string * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    69
  val locale_theorems: string -> xstring ->
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    70
    (((bstring * Args.src list) * (xstring * Args.src list) list) * Comment.text) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    71
    -> theory -> theory * (bstring * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    72
  val locale_theorems_i: string -> string ->
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    73
    (((bstring * Proof.context attribute list)
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    74
      * (thm list * Proof.context attribute list) list) * Comment.text) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    75
    -> theory -> theory * (string * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    76
  val smart_theorems: string -> xstring option ->
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    77
    (((bstring * Args.src list) * (xstring * Args.src list) list) * Comment.text) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    78
    -> theory -> theory * (string * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    79
  val declare_theorems: xstring option -> (xstring * Args.src list) list * Comment.text
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    80
    -> theory -> theory
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
    81
  val apply_theorems: (xstring * Args.src list) list -> theory -> theory * thm list
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    82
  val apply_theorems_i: (thm list * theory attribute list) list -> theory -> theory * thm list
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
    83
  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
    84
    -> ProofHistory.T -> ProofHistory.T
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
    85
  val have_facts_i: (((string * Proof.context attribute list) *
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    86
    (thm * Proof.context attribute list) list) * Comment.text) list
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    87
    -> ProofHistory.T -> ProofHistory.T
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    88
  val from_facts: ((string * Args.src list) list * Comment.text) list
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    89
    -> ProofHistory.T -> ProofHistory.T
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
    90
  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
    91
    -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    92
  val with_facts: ((string * Args.src list) list * Comment.text) list
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    93
    -> ProofHistory.T -> ProofHistory.T
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
    94
  val with_facts_i: ((thm * Proof.context attribute list) list * Comment.text) list
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
    95
    -> ProofHistory.T -> ProofHistory.T
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    96
  val chain: Comment.text -> ProofHistory.T -> ProofHistory.T
7417
70c1d3eac214 fix: common constraints;
wenzelm
parents: 7353
diff changeset
    97
  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
    98
  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
    99
  val let_bind: ((string list * string) * Comment.text) list -> ProofHistory.T -> ProofHistory.T
419166fa66d0 let_bind(_i): polymorphic version;
wenzelm
parents: 8588
diff changeset
   100
  val let_bind_i: ((term list * term) * Comment.text) list -> ProofHistory.T -> ProofHistory.T
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
   101
  val invoke_case: (string * string option list * Args.src list) * Comment.text
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
   102
    -> ProofHistory.T -> ProofHistory.T
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
   103
  val invoke_case_i: (string * string option list * Proof.context attribute list) * Comment.text
8450
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
   104
    -> ProofHistory.T -> ProofHistory.T
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   105
  val theorem: string
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   106
    -> ((bstring * Args.src list) * (string * (string list * string list))) * Comment.text
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   107
    -> bool -> theory -> ProofHistory.T
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   108
  val theorem_i: string -> ((bstring * theory attribute list) *
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   109
    (term * (term list * term list))) * Comment.text -> bool -> theory -> ProofHistory.T
12701
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   110
  val multi_theorem: string -> bstring * Args.src list ->
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   111
    Args.src Locale.element list ->
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   112
    (((bstring * Args.src list) * (string * (string list * string list)) list)
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   113
      * Comment.text) list -> bool -> theory -> ProofHistory.T
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   114
  val multi_theorem_i: string -> bstring * theory attribute list ->
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   115
    Proof.context attribute Locale.element_i list ->
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   116
    (((bstring * theory attribute list) * (term * (term list * term list)) list)
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   117
      * Comment.text) list -> bool -> theory -> ProofHistory.T
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   118
  val locale_multi_theorem: string -> bstring * Args.src list ->
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   119
    xstring -> Args.src Locale.element list ->
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   120
    (((bstring * Args.src list) * (string * (string list * string list)) list)
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   121
      * Comment.text) list -> bool -> theory -> ProofHistory.T
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   122
  val locale_multi_theorem_i: string -> bstring * theory attribute list ->
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   123
    string -> Proof.context attribute Locale.element_i list ->
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   124
    (((bstring * Proof.context attribute list) * (term * (term list * term list)) list)
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   125
      * Comment.text) list -> bool -> theory -> ProofHistory.T
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   126
  val smart_multi_theorem: string -> bstring * Args.src list ->
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   127
    xstring Library.option * Args.src Locale.element list ->
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   128
    (((bstring * Args.src list) * (string * (string list * string list)) list)
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   129
      * Comment.text) list -> bool -> theory -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   130
  val assume: (((string * Args.src list) * (string * (string list * string list)) list)
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   131
    * Comment.text) list -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   132
  val assume_i: (((string * Proof.context attribute list) * (term * (term list * term list)) list)
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   133
    * Comment.text) list -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   134
  val presume: (((string * Args.src list) * (string * (string list * string list)) list)
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   135
    * Comment.text) list -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   136
  val presume_i: (((string * Proof.context attribute list) * (term * (term list * term list)) list)
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   137
    * Comment.text) list -> ProofHistory.T -> ProofHistory.T
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   138
  val have: (((string * Args.src list) *
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   139
    (string * (string list * string list)) list) * Comment.text) list
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   140
    -> ProofHistory.T -> ProofHistory.T
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   141
  val have_i: (((string * Proof.context attribute list) *
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   142
    (term * (term list * term list)) list) * Comment.text) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   143
    -> ProofHistory.T -> ProofHistory.T
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   144
  val hence: (((string * Args.src list) *
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   145
    (string * (string list * string list)) list) * Comment.text) list
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   146
    -> ProofHistory.T -> ProofHistory.T
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   147
  val hence_i: (((string * Proof.context attribute list) *
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   148
    (term * (term list * term list)) list) * Comment.text) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   149
    -> ProofHistory.T -> ProofHistory.T
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   150
  val show: (((string * Args.src list) *
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   151
    (string * (string list * string list)) list) * Comment.text) list
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   152
    -> bool -> ProofHistory.T -> ProofHistory.T
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   153
  val show_i: (((string * Proof.context attribute list) *
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   154
    (term * (term list * term list)) list) * Comment.text) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   155
    -> bool -> ProofHistory.T -> ProofHistory.T
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   156
  val thus: (((string * Args.src list) *
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   157
    (string * (string list * string list)) list) * Comment.text) list
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   158
    -> bool -> ProofHistory.T -> ProofHistory.T
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   159
  val thus_i: (((string * Proof.context attribute list) *
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   160
    (term * (term list * term list)) list) * Comment.text) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   161
    -> bool -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   162
  val local_def: ((string * Args.src list) * (string * (string * string list)))
6952
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   163
    * Comment.text -> ProofHistory.T -> ProofHistory.T
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
   164
  val local_def_i: ((string * Args.src list) * (string * (term * term list)))
6952
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   165
    * Comment.text -> ProofHistory.T -> ProofHistory.T
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   166
  val obtain: ((string list * string option) * Comment.text) list
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   167
    * (((string * Args.src list) * (string * (string list * string list)) list)
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   168
      * Comment.text) list -> ProofHistory.T -> ProofHistory.T
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   169
  val obtain_i: ((string list * typ option) * Comment.text) list
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   170
    * (((string * Proof.context attribute list) * (term * (term list * term list)) list)
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   171
      * Comment.text) list -> ProofHistory.T -> ProofHistory.T
9032
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   172
  val begin_block: Comment.text -> ProofHistory.T -> ProofHistory.T
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   173
  val next_block: Comment.text -> ProofHistory.T -> ProofHistory.T
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   174
  val end_block: Comment.text -> ProofHistory.T -> ProofHistory.T
8681
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   175
  val defer: int option * Comment.text -> ProofHistory.T -> ProofHistory.T
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   176
  val prefer: int * Comment.text -> ProofHistory.T -> ProofHistory.T
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   177
  val apply: Method.text * Comment.text -> ProofHistory.T -> ProofHistory.T
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   178
  val apply_end: Method.text * Comment.text -> ProofHistory.T -> ProofHistory.T
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   179
  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
   180
    -> ProofHistory.T -> ProofHistory.T
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   181
  val qed: (Method.text * Comment.interest) option * Comment.text
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   182
    -> Toplevel.transition -> Toplevel.transition
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   183
  val terminal_proof: ((Method.text * Comment.interest) * (Method.text * Comment.interest) option)
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   184
    * Comment.text -> Toplevel.transition -> Toplevel.transition
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   185
  val default_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   186
  val immediate_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   187
  val done_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   188
  val skip_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
8210
ca3997312f47 added forget_proof;
wenzelm
parents: 8204
diff changeset
   189
  val forget_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   190
  val get_thmss: (string * Args.src list) list -> Proof.state -> thm list
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   191
  val also: ((string * Args.src list) list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   192
    -> Toplevel.transition -> Toplevel.transition
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   193
  val also_i: (thm list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   194
    -> Toplevel.transition -> Toplevel.transition
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   195
  val finally: ((string * Args.src list) list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   196
    -> Toplevel.transition -> Toplevel.transition
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   197
  val finally_i: (thm list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   198
    -> Toplevel.transition -> Toplevel.transition
8562
ce0e2b8e8844 added 'moreover' command;
wenzelm
parents: 8466
diff changeset
   199
  val moreover: Comment.text -> Toplevel.transition -> Toplevel.transition
8588
b7c3f264f8ac added 'ultimately';
wenzelm
parents: 8562
diff changeset
   200
  val ultimately: Comment.text -> Toplevel.transition -> Toplevel.transition
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   201
  val parse_ast_translation: string * Comment.text -> theory -> theory
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   202
  val parse_translation: string * Comment.text -> theory -> theory
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   203
  val print_translation: string * Comment.text -> theory -> theory
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   204
  val typed_print_translation: string * Comment.text -> theory -> theory
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   205
  val print_ast_translation: string * Comment.text -> theory -> theory
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   206
  val token_translation: string * Comment.text -> theory -> theory
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   207
  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
   208
  val add_oracle: (bstring * string) * Comment.text -> theory -> theory
12271
37b9c807b461 locale expression import;
wenzelm
parents: 12244
diff changeset
   209
  val add_locale: bstring * Locale.expr * (Args.src Locale.element * Comment.text) list
12062
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   210
    -> theory -> theory
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   211
  val begin_theory: string -> string list -> (string * bool) list -> theory
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   212
  val end_theory: theory -> theory
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   213
  val kill_theory: string -> unit
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   214
  val theory: string * string list * (string * bool) list
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   215
    -> Toplevel.transition -> Toplevel.transition
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   216
  val init_context: ('a -> unit) -> 'a -> Toplevel.transition -> Toplevel.transition
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   217
  val context: string -> Toplevel.transition -> Toplevel.transition
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   218
end;
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   219
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   220
structure IsarThy: ISAR_THY =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   221
struct
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   222
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   223
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   224
(** derived theory and proof operations **)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   225
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   226
(* markup commands *)
5959
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   227
7734
9c098c777926 replace add_title by add_header;
wenzelm
parents: 7678
diff changeset
   228
fun add_header comment =
9c098c777926 replace add_title by add_header;
wenzelm
parents: 7678
diff changeset
   229
  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
   230
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   231
fun add_text _ x = x;
8079
ccfc64f29333 raw_t(e)xt: any proof mode;
wenzelm
parents: 7960
diff changeset
   232
fun add_text_raw _ x = x;
7633
838077e40a46 present sections;
wenzelm
parents: 7614
diff changeset
   233
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   234
fun add_heading add present txt thy =
7633
838077e40a46 present sections;
wenzelm
parents: 7614
diff changeset
   235
  (Context.setmp (Some thy) present (Comment.string_of txt); add txt thy);
838077e40a46 present sections;
wenzelm
parents: 7614
diff changeset
   236
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   237
val add_chapter = add_heading add_text Present.section;
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   238
val add_section = add_heading add_text Present.section;
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   239
val add_subsection = add_heading add_text Present.subsection;
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   240
val add_subsubsection = add_heading add_text Present.subsubsection;
5959
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   241
8090
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   242
fun add_txt (_: Comment.text) = ProofHistory.apply I;
5a241706d9b3 present chapter;
wenzelm
parents: 8079
diff changeset
   243
val add_txt_raw = add_txt;
7332
60534b9018ae fixed add_sect etc.;
wenzelm
parents: 7271
diff changeset
   244
val add_sect = add_txt;
60534b9018ae fixed add_sect etc.;
wenzelm
parents: 7271
diff changeset
   245
val add_subsect = add_txt;
60534b9018ae fixed add_sect etc.;
wenzelm
parents: 7271
diff changeset
   246
val add_subsubsect = add_txt;
7172
wenzelm
parents: 7103
diff changeset
   247
5959
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   248
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   249
(* name spaces *)
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   250
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   251
fun global_path comment_ignore = PureThy.global_path;
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   252
fun local_path comment_ignore = PureThy.local_path;
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   253
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   254
local
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   255
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   256
val kinds =
10449
088aa7bd3154 hide_space(_i): use Sign.certify_tycon, Sign.certify_tyabbr, Sign.certify_const;
wenzelm
parents: 9903
diff changeset
   257
 [(Sign.classK, can o Sign.certify_class),
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   258
  (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
   259
    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
   260
  (Sign.constK, can o Sign.certify_const)];
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   261
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   262
fun gen_hide intern ((kind, xnames), comment_ignore) thy =
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   263
  (case assoc (kinds, kind) of
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   264
    Some check =>
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   265
      let
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   266
        val sg = Theory.sign_of thy;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   267
        val names = map (intern sg kind) xnames;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   268
        val bads = filter_out (check sg) names;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   269
      in
12589
afc6ffffeb11 Theory.hide_space_i true;
wenzelm
parents: 12318
diff changeset
   270
        if null bads then Theory.hide_space_i true (kind, names) thy
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   271
        else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads)
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   272
      end
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   273
  | None => error ("Bad name space specification: " ^ quote kind));
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   274
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   275
in
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   276
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   277
fun hide_space x = gen_hide Sign.intern x;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   278
fun hide_space_i x = gen_hide (K (K I)) x;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   279
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   280
end;
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   281
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   282
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   283
(* signature and syntax *)
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   284
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   285
val add_classes = Theory.add_classes o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   286
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
   287
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
   288
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
   289
val add_defsort = Theory.add_defsort o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   290
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
   291
val add_nonterminals = Theory.add_nonterminals o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   292
val add_tyabbrs = Theory.add_tyabbrs o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   293
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
   294
val add_arities = Theory.add_arities o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   295
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
   296
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
   297
val add_consts = Theory.add_consts o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   298
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
   299
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
   300
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
   301
val add_trrules = Theory.add_trrules o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   302
val add_trrules_i = Theory.add_trrules_i o map Comment.ignore;
11764
fd780dd6e0b4 use ObjectLogic;
wenzelm
parents: 11742
diff changeset
   303
val add_judgment = ObjectLogic.add_judgment o Comment.ignore;
fd780dd6e0b4 use ObjectLogic;
wenzelm
parents: 11742
diff changeset
   304
val add_judgment_i = ObjectLogic.add_judgment_i o Comment.ignore;
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   305
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   306
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   307
(* axioms and defs *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   308
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   309
fun add_axms f args thy =
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   310
  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
   311
8428
be4c8a57cf7e adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8371
diff changeset
   312
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
   313
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
   314
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
   315
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
   316
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   317
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   318
(* constdefs *)
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   319
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   320
fun gen_add_constdefs consts defs args thy =
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   321
  thy
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   322
  |> consts (map (Comment.ignore o fst) args)
9318
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9273
diff changeset
   323
  |> defs (false, map (fn (((c, _, mx), _), (s, _)) =>
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   324
    (((Thm.def_name (Syntax.const_name c mx), s), []), Comment.none)) args);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   325
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   326
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
   327
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
   328
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   329
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   330
(* attributes *)
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   331
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   332
local
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   333
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   334
fun prep_attribs f = map (fn ((name, more_srcs), th_srcs) =>
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   335
  ((name, map f more_srcs), map (apsnd (map f)) th_srcs));
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   336
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   337
in
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   338
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   339
fun global_attribs thy = prep_attribs (Attrib.global_attribute thy);
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   340
fun local_attribs thy = prep_attribs (Attrib.local_attribute thy);
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   341
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   342
end;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   343
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   344
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   345
(* theorems *)
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   346
12705
wenzelm
parents: 12701
diff changeset
   347
local
wenzelm
parents: 12701
diff changeset
   348
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   349
fun present_thmss kind (thy, named_thmss) =
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   350
  let fun present (name, thms) = Present.results (kind ^ "s") name thms in
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   351
    if kind = "" orelse kind = Drule.internalK then ()
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   352
    else Context.setmp (Some thy) (fn () => seq present named_thmss) ();
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   353
    (thy, named_thmss)
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   354
  end;
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   355
12705
wenzelm
parents: 12701
diff changeset
   356
in
wenzelm
parents: 12701
diff changeset
   357
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   358
fun theorems_i k = (present_thmss k oo PureThy.have_thmss_i (Drule.kind k)) o map Comment.ignore;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   359
fun locale_theorems_i k loc = (present_thmss k oo Locale.have_thmss_i k loc) o map Comment.ignore;
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   360
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   361
fun theorems k args thy = thy
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   362
  |> PureThy.have_thmss (Drule.kind k) (global_attribs thy (map Comment.ignore args))
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   363
  |> present_thmss k;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   364
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   365
fun locale_theorems k loc args thy = thy
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   366
  |> Locale.have_thmss k loc (local_attribs thy (map Comment.ignore args))
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   367
  |> present_thmss k;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   368
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   369
fun smart_theorems k opt_loc args thy = thy
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   370
  |> (case opt_loc of
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   371
    None => PureThy.have_thmss (Drule.kind k) (global_attribs thy (map Comment.ignore args))
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   372
  | Some loc => Locale.have_thmss k loc (local_attribs thy (map Comment.ignore args)))
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   373
  |> present_thmss k;
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   374
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   375
fun declare_theorems opt_loc (args, comment) =
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   376
  #1 o smart_theorems "" opt_loc [((("", []), args), comment)];
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   377
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   378
fun apply_theorems args =
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   379
  apsnd (flat o map snd) o theorems "" [((("", []), args), Comment.none)];
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   380
fun apply_theorems_i args =
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   381
  apsnd (flat o map snd) o theorems_i "" [((("", []), args), Comment.none)];
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   382
12705
wenzelm
parents: 12701
diff changeset
   383
end;
wenzelm
parents: 12701
diff changeset
   384
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   385
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   386
(* facts and forward chaining *)
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   387
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   388
fun local_thmss f args state = f (local_attribs (Proof.theory_of state) args) state;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   389
fun local_thmss_i f args = f (map (fn ((name, more_atts), th_atts) =>
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   390
  ((name, more_atts), map (apfst single) th_atts)) args);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   391
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   392
fun chain_thmss f args = ProofHistory.apply (Proof.chain o f (map (pair ("", [])) args));
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   393
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   394
val have_facts = ProofHistory.apply o local_thmss Proof.have_thmss o map Comment.ignore;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   395
val have_facts_i = ProofHistory.apply o local_thmss_i Proof.have_thmss_i o map Comment.ignore;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   396
val from_facts = chain_thmss (local_thmss Proof.have_thmss) o map Comment.ignore;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   397
val from_facts_i = chain_thmss (local_thmss_i Proof.have_thmss_i) o map Comment.ignore;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   398
val with_facts = chain_thmss (local_thmss Proof.with_thmss) o map Comment.ignore;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   399
val with_facts_i = chain_thmss (local_thmss_i Proof.with_thmss_i) o map Comment.ignore;
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   400
fun chain comment_ignore = ProofHistory.apply Proof.chain;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   401
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   402
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   403
(* context *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   404
7417
70c1d3eac214 fix: common constraints;
wenzelm
parents: 7353
diff changeset
   405
val fix = ProofHistory.apply o Proof.fix o map Comment.ignore;
70c1d3eac214 fix: common constraints;
wenzelm
parents: 7353
diff changeset
   406
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
   407
val let_bind = ProofHistory.apply o Proof.let_bind o map Comment.ignore;
419166fa66d0 let_bind(_i): polymorphic version;
wenzelm
parents: 8588
diff changeset
   408
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
   409
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
   410
fun invoke_case ((name, xs, src), comment_ignore) = ProofHistory.apply (fn state =>
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
   411
  Proof.invoke_case (name, xs, map (Attrib.local_attribute (Proof.theory_of state)) src) state);
8450
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
   412
val invoke_case_i = ProofHistory.apply o Proof.invoke_case o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   413
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   414
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   415
(* local results *)
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   416
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   417
local
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   418
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   419
fun prt_fact ctxt ("", ths) = ProofContext.pretty_thms ctxt ths
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   420
  | prt_fact ctxt (name, ths) =
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   421
      Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, ProofContext.pretty_thms ctxt ths];
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   422
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   423
fun prt_facts ctxt =
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   424
  flat o (separate [Pretty.fbrk, Pretty.str "and "]) o map (single o prt_fact ctxt);
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   425
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   426
fun pretty_results ctxt ((kind, ""), facts) =
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   427
      Pretty.block (Pretty.str kind :: Pretty.brk 1 :: prt_facts ctxt facts)
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   428
  | pretty_results ctxt ((kind, name), facts) = Pretty.blk (1,
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   429
      [Pretty.str (kind ^ " " ^ name ^ ":"), Pretty.fbrk,
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   430
        Pretty.blk (1, Pretty.str "(" :: prt_facts ctxt facts @ [Pretty.str ")"])]);
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   431
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   432
fun pretty_rule s ctxt thm =
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   433
  Pretty.block [Pretty.str (s ^ " to solve goal by exported rule:"),
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   434
    Pretty.fbrk, ProofContext.pretty_thm ctxt thm];
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   435
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   436
in
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   437
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   438
val print_result = Pretty.writeln oo pretty_results;
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   439
fun print_result' ctxt (k, res) = print_result ctxt ((k, ""), res);
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   440
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   441
fun cond_print_result_rule int =
12601
f0cf30cd7e4c solve rule: tracing instead of priority;
wenzelm
parents: 12589
diff changeset
   442
  if int then (print_result', tracing oo (Pretty.string_of oo pretty_rule "Attempt"))
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   443
  else (K (K ()), K (K ()));
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   444
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   445
fun proof'' f = Toplevel.proof' (f o cond_print_result_rule);
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   446
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   447
fun check_goal false state = state
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   448
  | check_goal true state =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   449
      let
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   450
        val rule = ref (None: thm option);
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   451
        fun warn exn =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   452
          (["Problem! Local statement will fail to solve any pending goal"] @
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   453
          (case exn of None => [] | Some e => [Toplevel.exn_message e]) @
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   454
          (case ! rule of None => [] | Some thm =>
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   455
            [Pretty.string_of (pretty_rule "Failed attempt" (Proof.context_of state) thm)]))
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   456
          |> cat_lines |> warning;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   457
        val check =
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   458
          (fn () => Seq.pull (SkipProof.local_skip_proof (K (K ()),
12318
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   459
            fn _ => fn thm => rule := Some thm) true state))
11932
c1c4890a1ecb check_goal: setmp proofs 0;
wenzelm
parents: 11890
diff changeset
   460
          |> Library.setmp proofs 0
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   461
          |> Library.transform_error;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   462
        val result = (check (), None) handle Interrupt => raise Interrupt | e => (None, Some e);
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   463
      in (case result of (Some _, None) => () | (_, exn) => warn exn); state end;
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   464
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   465
end;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   466
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   467
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   468
(* statements *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   469
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   470
local
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   471
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   472
fun global_attributes thy ((name, src), s) = ((name, map (Attrib.global_attribute thy) src), s);
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   473
fun local_attributes thy ((name, src), s) = ((name, map (Attrib.local_attribute thy) src), s);
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   474
fun local_attributes' state = local_attributes (Proof.theory_of state);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   475
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   476
fun global_statement f args int thy =
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   477
  ProofHistory.init (Toplevel.undo_limit int) (f (map (global_attributes thy) args) thy);
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   478
fun global_statement_i f args int thy = ProofHistory.init (Toplevel.undo_limit int) (f args thy);
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   479
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   480
fun local_statement' f g args int = ProofHistory.apply (fn state =>
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   481
  f (map (local_attributes' state) args) int (g state));
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   482
fun local_statement_i' f g args int = ProofHistory.apply (f args int o g);
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   483
fun local_statement f g args = local_statement' (K o f) g args ();
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   484
fun local_statement_i f g args = local_statement_i' (K o f) g args ();
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   485
12701
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   486
in
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   487
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   488
fun multi_theorem k a elems args int thy =
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   489
  global_statement (Proof.multi_theorem k (apsnd (map (Attrib.global_attribute thy)) a) None
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   490
    (map (Locale.attribute (Attrib.local_attribute thy)) elems)) (map Comment.ignore args) int thy;
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   491
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   492
fun multi_theorem_i k a elems =
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   493
  global_statement_i (Proof.multi_theorem_i k a None elems) o map Comment.ignore;
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   494
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   495
fun locale_multi_theorem k a locale elems args int thy =
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   496
  global_statement (Proof.multi_theorem k (apsnd (map (Attrib.global_attribute thy)) a)
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   497
      (Some (locale, map (map (Attrib.local_attribute thy) o snd o fst o Comment.ignore) args))
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   498
      (map (Locale.attribute (Attrib.local_attribute thy)) elems))
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   499
    (map (apfst (apsnd (K [])) o Comment.ignore) args) int thy;
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   500
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   501
fun locale_multi_theorem_i k a locale elems args =
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   502
  global_statement_i (Proof.multi_theorem_i k a
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   503
      (Some (locale, map (snd o fst o Comment.ignore) args)) elems)
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   504
    (map (apfst (apsnd (K [])) o Comment.ignore) args);
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   505
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   506
fun theorem k ((a, t), cmt) = multi_theorem k a [] [((("", []), [t]), cmt)];
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   507
fun theorem_i k ((a, t), cmt) = multi_theorem_i k a [] [((("", []), [t]), cmt)];
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   508
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   509
fun smart_multi_theorem k a (None, elems) = multi_theorem k a elems
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   510
  | smart_multi_theorem k a (Some locale, elems) = locale_multi_theorem k a locale elems;
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   511
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   512
val assume      = local_statement Proof.assume I o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   513
val assume_i    = local_statement_i Proof.assume_i I o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   514
val presume     = local_statement Proof.presume I o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   515
val presume_i   = local_statement_i Proof.presume_i I o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   516
val have        = local_statement (Proof.have Seq.single) I o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   517
val have_i      = local_statement_i (Proof.have_i Seq.single) I o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   518
val hence       = local_statement (Proof.have Seq.single) Proof.chain o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   519
val hence_i     = local_statement_i (Proof.have_i Seq.single) Proof.chain o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   520
val show        = local_statement' (Proof.show check_goal Seq.single) I o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   521
val show_i      = local_statement_i' (Proof.show_i check_goal Seq.single) I o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   522
val thus = local_statement' (Proof.show check_goal Seq.single) Proof.chain o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   523
val thus_i = local_statement_i' (Proof.show_i check_goal Seq.single) Proof.chain o map Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   524
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   525
fun gen_def f ((name, srcs), def) = ProofHistory.apply (fn state =>
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   526
  f name (map (Attrib.local_attribute (Proof.theory_of state)) srcs) def state);
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   527
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   528
val local_def = gen_def Proof.def o Comment.ignore;
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   529
val local_def_i = gen_def Proof.def_i o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   530
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   531
fun obtain (xs, asms) = ProofHistory.applys (fn state =>
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   532
  Obtain.obtain (map Comment.ignore xs)
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   533
    (map (local_attributes' state) (map Comment.ignore asms)) state);
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   534
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   535
fun obtain_i (xs, asms) = ProofHistory.applys (fn state =>
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   536
  Obtain.obtain_i (map Comment.ignore xs) (map Comment.ignore asms) state);
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   537
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   538
end;
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   539
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   540
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   541
(* blocks *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   542
9032
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   543
fun begin_block comment_ignore = ProofHistory.apply Proof.begin_block;
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   544
fun next_block comment_ignore = ProofHistory.apply Proof.next_block;
ad0b9f048bbf block commands: marginal comment;
wenzelm
parents: 8966
diff changeset
   545
fun end_block comment_ignore = ProofHistory.applys Proof.end_block;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   546
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   547
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   548
(* shuffle state *)
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   549
8236
df3f983f5858 apply: observe facts;
wenzelm
parents: 8227
diff changeset
   550
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
   551
8681
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   552
fun defer (i, comment_ignore) = ProofHistory.applys (shuffle Method.defer i);
957a5fe9b212 apply etc.: comments;
wenzelm
parents: 8615
diff changeset
   553
fun prefer (i, comment_ignore) = ProofHistory.applys (shuffle Method.prefer i);
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   554
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   555
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   556
(* backward steps *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   557
8881
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   558
fun apply (m, comment_ignore) = ProofHistory.applys
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   559
  (Seq.map (Proof.goal_facts (K [])) o Method.refine m o Proof.assert_backward);
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   560
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   561
fun apply_end (m, comment_ignore) = ProofHistory.applys
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   562
  (Method.refine_end m o Proof.assert_forward);
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   563
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   564
val proof = ProofHistory.applys o Method.proof o
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   565
  apsome Comment.ignore_interest o Comment.ignore_interest' o Comment.ignore;
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   566
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   567
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   568
(* local endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   569
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   570
val local_qed =
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   571
  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
   572
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   573
fun ignore_interests (x, y) = (Comment.ignore_interest x, apsome Comment.ignore_interest y);
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   574
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   575
val local_terminal_proof =
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   576
  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
   577
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   578
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
   579
val local_immediate_proof = proof'' (ProofHistory.applys o Method.local_immediate_proof);
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   580
val local_done_proof = proof'' (ProofHistory.applys o Method.local_done_proof);
12318
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   581
val local_skip_proof = Toplevel.proof' (fn int =>
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   582
  ProofHistory.applys (SkipProof.local_skip_proof (cond_print_result_rule int) int));
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   583
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   584
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   585
(* global endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   586
12318
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   587
fun global_result finish = Toplevel.proof_to_theory' (fn int => fn prf =>
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   588
  let
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   589
    val state = ProofHistory.current prf;
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   590
    val _ = if Proof.at_bottom state then () else raise Toplevel.UNDEF;
12318
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   591
    val (thy, ((kind, name), res)) = finish int state;
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   592
  in
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   593
    if kind = "" orelse kind = Drule.internalK then ()
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   594
    else (print_result (Proof.context_of state) ((kind, name), res);
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   595
      Context.setmp (Some thy) Present.multi_result (kind, res));
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   596
    thy
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   597
  end);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   598
12318
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   599
fun global_qed m = global_result (K (Method.global_qed true (apsome Comment.ignore_interest m)));
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   600
fun global_terminal_proof m =
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   601
  global_result (K (Method.global_terminal_proof (ignore_interests m)));
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   602
val global_default_proof = global_result (K Method.global_default_proof);
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   603
val global_immediate_proof = global_result (K Method.global_immediate_proof);
6888
d0c68ebdabc5 skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents: 6885
diff changeset
   604
val global_skip_proof = global_result SkipProof.global_skip_proof;
12318
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   605
val global_done_proof = global_result (K Method.global_done_proof);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   606
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   607
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   608
(* common endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   609
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   610
fun qed (meth, comment) = local_qed meth o global_qed meth;
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   611
fun terminal_proof (meths, comment) = local_terminal_proof meths o global_terminal_proof meths;
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   612
fun default_proof comment = local_default_proof o global_default_proof;
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   613
fun immediate_proof comment = local_immediate_proof o global_immediate_proof;
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   614
fun done_proof comment = local_done_proof o global_done_proof;
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   615
fun skip_proof comment = local_skip_proof o global_skip_proof;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   616
8210
ca3997312f47 added forget_proof;
wenzelm
parents: 8204
diff changeset
   617
fun forget_proof comment = Toplevel.proof_to_theory (Proof.theory_of o ProofHistory.current);
ca3997312f47 added forget_proof;
wenzelm
parents: 8204
diff changeset
   618
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   619
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   620
(* calculational proof commands *)
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   621
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   622
local
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   623
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   624
fun cond_print_calc int ctxt thms =
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   625
  if int then
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   626
    Pretty.writeln (Pretty.big_list "calculation:" (map (ProofContext.pretty_thm ctxt) thms))
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   627
  else ();
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   628
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   629
fun proof''' f = Toplevel.proof' (f o cond_print_calc);
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   630
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   631
fun gen_calc get f (args, _) prt state =
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   632
  f (apsome (fn (srcs, _) => get srcs state) args) prt state;
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   633
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   634
in
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   635
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   636
fun get_thmss srcs = Proof.the_facts o local_thmss Proof.have_thmss [(("", []), srcs)];
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   637
fun get_thmss_i thms _ = thms;
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   638
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   639
fun also x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.also x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   640
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
   641
fun finally x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.finally x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   642
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
   643
fun moreover comment = proof''' (ProofHistory.apply o Calculation.moreover);
8588
b7c3f264f8ac added 'ultimately';
wenzelm
parents: 8562
diff changeset
   644
fun ultimately comment = proof''' (ProofHistory.apply o Calculation.ultimately);
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   645
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   646
end;
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   647
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   648
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   649
(* translation functions *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   650
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   651
val parse_ast_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   652
  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
   653
    "Theory.add_trfuns (parse_ast_translation, [], [], [])" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   654
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   655
val parse_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   656
  Context.use_let "val parse_translation: (string * (term list -> term)) list"
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   657
    "Theory.add_trfuns ([], parse_translation, [], [])" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   658
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   659
val print_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   660
  Context.use_let "val print_translation: (string * (term list -> term)) list"
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   661
    "Theory.add_trfuns ([], [], print_translation, [])" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   662
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   663
val print_ast_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   664
  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
   665
    "Theory.add_trfuns ([], [], [], print_ast_translation)" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   666
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   667
val typed_print_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   668
  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
   669
    "Theory.add_trfunsT typed_print_translation" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   670
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   671
val token_translation =
11717
d808005e6e08 Fixed erroneous type constraint in token_translation function.
berghofe
parents: 11048
diff changeset
   672
  Context.use_let "val token_translation: (string * string * (string -> string * real)) list"
9273
798673f65f02 allow comment in more commands;
wenzelm
parents: 9193
diff changeset
   673
    "Theory.add_tokentrfuns token_translation" o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   674
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   675
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   676
(* add method *)
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   677
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   678
fun method_setup ((name, txt, cmt), comment_ignore) =
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   679
  Context.use_let
9810
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   680
    "val thm = PureThy.get_thm_closure (Context.the_context ());\n\
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   681
    \val thms = PureThy.get_thms_closure (Context.the_context ());\n\
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   682
    \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
   683
    "PureIsar.Method.add_method method"
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   684
    ("(" ^ quote name ^ ", " ^ txt ^ ", " ^ quote cmt ^ ")");
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   685
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   686
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   687
(* add_oracle *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   688
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   689
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
   690
  Context.use_let
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   691
    "val oracle: bstring * (Sign.sg * Object.T -> term)"
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   692
    "Theory.add_oracle oracle"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   693
    ("(" ^ quote name ^ ", " ^ txt ^ ")");
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   694
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   695
12062
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   696
(* add_locale *)
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   697
12759
wenzelm
parents: 12713
diff changeset
   698
fun add_locale (name, import, body) thy =
wenzelm
parents: 12713
diff changeset
   699
  Locale.add_locale name import
wenzelm
parents: 12713
diff changeset
   700
    (map (Locale.attribute (Attrib.local_attribute thy) o Comment.ignore) body) thy;
12062
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   701
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   702
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   703
(* theory init and exit *)
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   704
8804
wenzelm
parents: 8731
diff changeset
   705
fun gen_begin_theory upd name parents files =
wenzelm
parents: 8731
diff changeset
   706
  ThyInfo.begin_theory Present.begin_theory upd name parents (map (apfst Path.unpack) files);
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   707
8804
wenzelm
parents: 8731
diff changeset
   708
val begin_theory = gen_begin_theory false;
7909
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   709
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   710
fun end_theory thy =
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   711
  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
   712
  else thy;
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   713
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   714
val kill_theory = ThyInfo.if_known_thy ThyInfo.remove_thy;
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   715
7103
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   716
8804
wenzelm
parents: 8731
diff changeset
   717
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
   718
fun en_theory thy = (end_theory thy; ());
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   719
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   720
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
   721
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   722
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   723
(* context switch *)
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   724
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   725
fun fetch_context f x =
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   726
  (case Context.pass None f x of
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   727
    ((), None) => raise Toplevel.UNDEF
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   728
  | ((), Some thy) => thy);
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   729
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   730
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
   731
955fde69fa7b added init_context;
wenzelm
parents: 7932
diff changeset
   732
val context = init_context (ThyInfo.quiet_update_thy true);
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   733
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   734
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   735
end;