src/Pure/Isar/isar_thy.ML
author skalberg
Wed, 31 Mar 2004 16:10:53 +0200
changeset 14503 255ad604e08e
parent 13686 bc63c3b2b3e7
child 14508 859b11514537
permissions -rw-r--r--
Added check that Theory.ML does not occur in the files section of the theory Theory.
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
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    11
  val hide_space: string * xstring list -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    12
  val hide_space_i: string * string list -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    13
  val add_axioms: ((bstring * string) * Args.src list) list -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    14
  val add_axioms_i: ((bstring * term) * theory attribute list) list -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    15
  val add_defs: bool * ((bstring * string) * Args.src list) list -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    16
  val add_defs_i: bool * ((bstring * term) * theory attribute list) list -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    17
  val add_constdefs: ((bstring * string * mixfix) * string) list -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    18
  val add_constdefs_i: ((bstring * typ * mixfix) * term) list -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    19
  val theorems: string -> ((bstring * Args.src list) * (xstring * Args.src list) list) list
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    20
    -> theory -> theory * (string * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    21
  val theorems_i: string ->
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    22
    ((bstring * theory attribute list) * (thm list * theory attribute list) list) list
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    23
    -> theory -> theory * (string * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    24
  val locale_theorems: string -> xstring ->
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    25
    ((bstring * Args.src list) * (xstring * Args.src list) list) list
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    26
    -> theory -> theory * (bstring * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    27
  val locale_theorems_i: string -> string ->
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    28
    ((bstring * Proof.context attribute list)
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    29
      * (thm list * Proof.context attribute list) list) list
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    30
    -> theory -> theory * (string * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    31
  val smart_theorems: string -> xstring option ->
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    32
    ((bstring * Args.src list) * (xstring * Args.src list) list) list
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    33
    -> theory -> theory * (string * thm list) list
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    34
  val declare_theorems: xstring option -> (xstring * Args.src list) list -> theory -> theory
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
    35
  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
    36
  val apply_theorems_i: (thm list * theory attribute list) list -> theory -> theory * thm list
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    37
  val have_facts: ((string * Args.src list) * (string * Args.src list) list) list
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    38
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    39
  val have_facts_i: ((string * Proof.context attribute list) *
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    40
    (thm * Proof.context attribute list) list) list -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    41
  val from_facts: (string * Args.src list) list list -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    42
  val from_facts_i: (thm * Proof.context attribute list) list list
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    43
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    44
  val with_facts: (string * Args.src list) list list -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    45
  val with_facts_i: (thm * Proof.context attribute list) list list
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
    46
    -> ProofHistory.T -> ProofHistory.T
12929
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
    47
  val using_facts: (string * Args.src list) list list -> ProofHistory.T -> ProofHistory.T
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
    48
  val using_facts_i: (thm * Proof.context attribute list) list list
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
    49
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    50
  val chain: ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    51
  val fix: (string list * string option) list -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    52
  val fix_i: (string list * typ option) list -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    53
  val let_bind: (string list * string) list -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    54
  val let_bind_i: (term list * term) list -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    55
  val invoke_case: string * string option list * Args.src list -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    56
  val invoke_case_i: string * string option list * Proof.context attribute list
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
    57
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    58
  val theorem: string -> (bstring * Args.src list) * (string * (string list * string list))
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
    59
    -> bool -> theory -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    60
  val theorem_i: string -> (bstring * theory attribute list) *
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    61
    (term * (term list * term list)) -> bool -> theory -> ProofHistory.T
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    62
  val multi_theorem: string -> bstring * Args.src list
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    63
    -> Args.src Locale.element list
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    64
    -> ((bstring * Args.src list) * (string * (string list * string list)) list) list
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    65
    -> bool -> theory -> ProofHistory.T
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    66
  val multi_theorem_i: string -> bstring * theory attribute list
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    67
    -> Proof.context attribute Locale.element_i list
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    68
    -> ((bstring * theory attribute list) * (term * (term list * term list)) list) list
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    69
    -> bool -> theory -> ProofHistory.T
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    70
  val locale_multi_theorem: string -> xstring
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    71
    -> bstring * Args.src list -> Args.src Locale.element list
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    72
    -> ((bstring * Args.src list) * (string * (string list * string list)) list) list
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    73
    -> bool -> theory -> ProofHistory.T
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    74
  val locale_multi_theorem_i: string -> string -> bstring * Proof.context attribute list
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    75
    -> Proof.context attribute Locale.element_i list
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    76
    -> ((bstring * Proof.context attribute list) * (term * (term list * term list)) list) list
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    77
    -> bool -> theory -> ProofHistory.T
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    78
  val smart_multi_theorem: string -> xstring Library.option
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    79
    -> bstring * Args.src list -> Args.src Locale.element list
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    80
    -> ((bstring * Args.src list) * (string * (string list * string list)) list) list
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    81
    -> bool -> theory -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    82
  val assume: ((string * Args.src list) * (string * (string list * string list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
    83
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    84
  val assume_i:
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    85
    ((string * Proof.context attribute list) * (term * (term list * term list)) list) list
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    86
    -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    87
  val presume: ((string * Args.src list) * (string * (string list * string list)) list) list
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    88
    -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    89
  val presume_i:
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    90
    ((string * Proof.context attribute list) * (term * (term list * term list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
    91
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    92
  val have: ((string * Args.src list) * (string * (string list * string list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
    93
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    94
  val have_i: ((string * Proof.context attribute list) *
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    95
    (term * (term list * term list)) list) list -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    96
  val hence: ((string * Args.src list) * (string * (string list * string list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
    97
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    98
  val hence_i: ((string * Proof.context attribute list) *
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    99
    (term * (term list * term list)) list) list -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   100
  val show: ((string * Args.src list) * (string * (string list * string list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   101
    -> bool -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   102
  val show_i: ((string * Proof.context attribute list) *
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   103
    (term * (term list * term list)) list) list -> bool -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   104
  val thus: ((string * Args.src list) * (string * (string list * string list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   105
    -> bool -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   106
  val thus_i: ((string * Proof.context attribute list)
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   107
    * (term * (term list * term list)) list) list -> bool -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   108
  val local_def: (string * Args.src list) * (string * (string * string list))
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   109
    -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   110
  val local_def_i: (string * Args.src list) * (string * (term * term list))
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   111
    -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   112
  val obtain: (string list * string option) list
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   113
    * ((string * Args.src list) * (string * (string list * string list)) list) list
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   114
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   115
  val obtain_i: (string list * typ option) list
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   116
    * ((string * Proof.context attribute list) * (term * (term list * term list)) list) list
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   117
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   118
  val begin_block: ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   119
  val next_block: ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   120
  val end_block: ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   121
  val defer: int option -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   122
  val prefer: int -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   123
  val apply: Method.text -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   124
  val apply_end: Method.text -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   125
  val proof: Method.text option -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   126
  val qed: Method.text option -> Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   127
  val terminal_proof: Method.text * Method.text option
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   128
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   129
  val default_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   130
  val immediate_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   131
  val done_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   132
  val skip_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   133
  val forget_proof: Toplevel.transition -> Toplevel.transition
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   134
  val get_thmss: (string * Args.src list) list -> Proof.state -> thm list
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   135
  val also: (string * Args.src list) list option -> Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   136
  val also_i: thm list option -> Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   137
  val finally: (string * Args.src list) list option -> Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   138
  val finally_i: thm list option -> Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   139
  val moreover: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   140
  val ultimately: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   141
  val parse_ast_translation: string -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   142
  val parse_translation: string -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   143
  val print_translation: string -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   144
  val typed_print_translation: string -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   145
  val print_ast_translation: string -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   146
  val token_translation: string -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   147
  val method_setup: bstring * string * string -> theory -> theory
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   148
  val add_oracle: bstring * string -> theory -> theory
13393
bd976af8bf18 adapted add_locale;
wenzelm
parents: 13374
diff changeset
   149
  val add_locale: bool * bstring * Locale.expr * Args.src Locale.element list -> theory -> theory
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   150
  val begin_theory: string -> string list -> (string * bool) list -> theory
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   151
  val end_theory: theory -> theory
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   152
  val kill_theory: string -> unit
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   153
  val theory: string * string list * (string * bool) list
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   154
    -> Toplevel.transition -> Toplevel.transition
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   155
  val init_context: ('a -> unit) -> 'a -> Toplevel.transition -> Toplevel.transition
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   156
  val context: string -> Toplevel.transition -> Toplevel.transition
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   157
end;
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   158
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   159
structure IsarThy: ISAR_THY =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   160
struct
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   161
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   162
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   163
(** derived theory and proof operations **)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   164
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   165
(* name spaces *)
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   166
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   167
local
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   168
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   169
val kinds =
10449
088aa7bd3154 hide_space(_i): use Sign.certify_tycon, Sign.certify_tyabbr, Sign.certify_const;
wenzelm
parents: 9903
diff changeset
   170
 [(Sign.classK, can o Sign.certify_class),
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   171
  (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
   172
    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
   173
  (Sign.constK, can o Sign.certify_const)];
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   174
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   175
fun gen_hide intern (kind, xnames) thy =
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   176
  (case assoc (kinds, kind) of
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   177
    Some check =>
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   178
      let
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   179
        val sg = Theory.sign_of thy;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   180
        val names = map (intern sg kind) xnames;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   181
        val bads = filter_out (check sg) names;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   182
      in
12589
afc6ffffeb11 Theory.hide_space_i true;
wenzelm
parents: 12318
diff changeset
   183
        if null bads then Theory.hide_space_i true (kind, names) thy
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   184
        else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads)
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   185
      end
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   186
  | None => error ("Bad name space specification: " ^ quote kind));
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   187
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   188
in
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   189
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   190
fun hide_space x = gen_hide Sign.intern x;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   191
fun hide_space_i x = gen_hide (K (K I)) x;
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   192
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   193
end;
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   194
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   195
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   196
(* axioms and defs *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   197
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   198
fun add_axms f args thy =
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   199
  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
   200
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   201
val add_axioms = add_axms (#1 oo PureThy.add_axioms);
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   202
val add_axioms_i = #1 oo PureThy.add_axioms_i;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   203
fun add_defs (x, args) = add_axms (#1 oo PureThy.add_defs x) args;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   204
fun add_defs_i (x, args) = (#1 oo PureThy.add_defs_i x) args;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   205
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   206
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   207
(* constdefs *)
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   208
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   209
fun gen_add_constdefs consts defs args thy =
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   210
  thy
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   211
  |> consts (map fst args)
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   212
  |> defs (false, map (fn ((c, _, mx), s) =>
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   213
    ((Thm.def_name (Syntax.const_name c mx), s), [])) args);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   214
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   215
val add_constdefs = gen_add_constdefs Theory.add_consts add_defs;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   216
val add_constdefs_i = gen_add_constdefs Theory.add_consts_i add_defs_i;
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   217
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   218
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   219
(* attributes *)
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   220
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   221
local
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   222
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   223
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
   224
  ((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
   225
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   226
in
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   227
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   228
fun global_attribs thy = prep_attribs (Attrib.global_attribute thy);
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   229
fun local_attribs thy = prep_attribs (Attrib.local_attribute thy);
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   230
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   231
end;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   232
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   233
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   234
(* theorems *)
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   235
12705
wenzelm
parents: 12701
diff changeset
   236
local
wenzelm
parents: 12701
diff changeset
   237
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   238
fun present_thmss kind (thy, named_thmss) =
13529
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   239
 (conditional (kind <> "" andalso kind <> Drule.internalK) (fn () =>
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   240
    Context.setmp (Some thy) (Present.results (kind ^ "s")) named_thmss);
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   241
  (thy, named_thmss));
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   242
12705
wenzelm
parents: 12701
diff changeset
   243
in
wenzelm
parents: 12701
diff changeset
   244
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   245
fun theorems_i k = present_thmss k oo PureThy.have_thmss_i (Drule.kind k);
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   246
fun locale_theorems_i k loc = present_thmss k oo Locale.have_thmss_i k loc;
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   247
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   248
fun theorems k args thy = thy
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   249
  |> PureThy.have_thmss (Drule.kind k) (global_attribs thy args)
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   250
  |> present_thmss k;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   251
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   252
fun locale_theorems k loc args thy = thy
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   253
  |> Locale.have_thmss k loc (local_attribs thy args)
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   254
  |> present_thmss k;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   255
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   256
fun smart_theorems k opt_loc args thy = thy
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   257
  |> (case opt_loc of
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   258
    None => PureThy.have_thmss (Drule.kind k) (global_attribs thy args)
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   259
  | Some loc => Locale.have_thmss k loc (local_attribs thy args))
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   260
  |> present_thmss k;
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   261
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   262
fun declare_theorems opt_loc args = #1 o smart_theorems "" opt_loc [(("", []), args)];
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   263
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   264
fun apply_theorems args = apsnd (flat o map snd) o theorems "" [(("", []), args)];
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   265
fun apply_theorems_i args = apsnd (flat o map snd) o theorems_i "" [(("", []), args)];
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   266
12705
wenzelm
parents: 12701
diff changeset
   267
end;
wenzelm
parents: 12701
diff changeset
   268
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   269
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   270
(* facts and forward chaining *)
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   271
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   272
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
   273
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
   274
  ((name, more_atts), map (apfst single) th_atts)) args);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   275
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   276
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
   277
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   278
val have_facts = ProofHistory.apply o local_thmss Proof.have_thmss;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   279
val have_facts_i = ProofHistory.apply o local_thmss_i Proof.have_thmss_i;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   280
val from_facts = chain_thmss (local_thmss Proof.have_thmss);
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   281
val from_facts_i = chain_thmss (local_thmss_i Proof.have_thmss_i);
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   282
val with_facts = chain_thmss (local_thmss Proof.with_thmss);
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   283
val with_facts_i = chain_thmss (local_thmss_i Proof.with_thmss_i);
12929
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   284
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   285
fun using_facts args = ProofHistory.apply (fn state =>
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   286
  Proof.using_thmss (map (map (apsnd (map
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   287
    (Attrib.local_attribute (Proof.theory_of state))))) args) state);
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   288
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   289
val using_facts_i = ProofHistory.apply o Proof.using_thmss_i o map (map (apfst single));
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   290
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   291
val chain = ProofHistory.apply Proof.chain;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   292
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   293
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   294
(* context *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   295
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   296
val fix = ProofHistory.apply o Proof.fix;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   297
val fix_i = ProofHistory.apply o Proof.fix_i;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   298
val let_bind = ProofHistory.apply o Proof.let_bind;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   299
val let_bind_i = ProofHistory.apply o Proof.let_bind_i;
8450
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
   300
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   301
fun invoke_case (name, xs, src) = ProofHistory.apply (fn state =>
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
   302
  Proof.invoke_case (name, xs, map (Attrib.local_attribute (Proof.theory_of state)) src) state);
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   303
val invoke_case_i = ProofHistory.apply o Proof.invoke_case;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   304
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   305
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   306
(* local results *)
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   307
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   308
local
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   309
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   310
fun prt_facts ctxt =
13276
a02ee4fec6b7 ProofContext.pretty_fact;
wenzelm
parents: 12969
diff changeset
   311
  flat o (separate [Pretty.fbrk, Pretty.str "and "]) o
a02ee4fec6b7 ProofContext.pretty_fact;
wenzelm
parents: 12969
diff changeset
   312
    map (single o ProofContext.pretty_fact ctxt);
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   313
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   314
fun pretty_results ctxt ((kind, ""), facts) =
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   315
      Pretty.block (Pretty.str kind :: Pretty.brk 1 :: prt_facts ctxt facts)
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   316
  | pretty_results ctxt ((kind, name), facts) = Pretty.blk (1,
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   317
      [Pretty.str (kind ^ " " ^ name ^ ":"), Pretty.fbrk,
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   318
        Pretty.blk (1, Pretty.str "(" :: prt_facts ctxt facts @ [Pretty.str ")"])]);
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   319
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   320
fun pretty_rule s ctxt thm =
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   321
  Pretty.block [Pretty.str (s ^ " to solve goal by exported rule:"),
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   322
    Pretty.fbrk, ProofContext.pretty_thm ctxt thm];
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   323
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   324
in
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   325
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   326
val print_result = Pretty.writeln oo pretty_results;
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   327
fun print_result' ctxt (k, res) = print_result ctxt ((k, ""), res);
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   328
13686
bc63c3b2b3e7 modified msg
nipkow
parents: 13529
diff changeset
   329
fun cond_print_result_rule int = if int
bc63c3b2b3e7 modified msg
nipkow
parents: 13529
diff changeset
   330
  then (print_result',
bc63c3b2b3e7 modified msg
nipkow
parents: 13529
diff changeset
   331
        priority oo (Pretty.string_of oo pretty_rule "Successful attempt"))
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   332
  else (K (K ()), K (K ()));
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   333
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   334
fun proof'' f = Toplevel.proof' (f o cond_print_result_rule);
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   335
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   336
fun check_goal false state = state
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   337
  | check_goal true state =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   338
      let
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   339
        val rule = ref (None: thm option);
13529
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   340
        fun fail exn =
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   341
          (["Problem! Local statement will fail to solve any pending goal"] @
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   342
          (case exn of None => [] | Some e => [Toplevel.exn_message e]) @
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   343
          (case ! rule of None => [] | Some thm =>
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   344
            [Pretty.string_of (pretty_rule "Failed attempt" (Proof.context_of state) thm)]))
13529
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   345
          |> cat_lines |> error;
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   346
        val check =
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   347
          (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
   348
            fn _ => fn thm => rule := Some thm) true state))
11932
c1c4890a1ecb check_goal: setmp proofs 0;
wenzelm
parents: 11890
diff changeset
   349
          |> Library.setmp proofs 0
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   350
          |> Library.transform_error;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   351
        val result = (check (), None) handle Interrupt => raise Interrupt | e => (None, Some e);
13529
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   352
      in (case result of (Some _, None) => () | (_, exn) => fail exn); state end;
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   353
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   354
end;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   355
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   356
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   357
(* statements *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   358
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   359
local
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   360
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   361
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
   362
fun local_attributes thy ((name, src), s) = ((name, map (Attrib.local_attribute thy) src), s);
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   363
fun local_attributes' state = local_attributes (Proof.theory_of state);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   364
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   365
fun global_statement f args int thy =
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   366
  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
   367
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
   368
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   369
fun local_statement' f g args int = ProofHistory.apply (fn state =>
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   370
  f (map (local_attributes' state) args) int (g state));
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   371
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
   372
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
   373
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
   374
12701
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   375
in
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   376
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   377
fun multi_theorem k a elems concl int thy =
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   378
  global_statement (Proof.multi_theorem k None (apsnd (map (Attrib.global_attribute thy)) a)
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   379
    (map (Locale.attribute (Attrib.local_attribute thy)) elems)) concl int thy;
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   380
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   381
fun multi_theorem_i k a = global_statement_i o Proof.multi_theorem_i k None a;
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   382
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   383
fun locale_multi_theorem k locale (name, atts) elems concl int thy =
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   384
  global_statement (Proof.multi_theorem k
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   385
      (Some (locale, (map (Attrib.local_attribute thy) atts,
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   386
          map (map (Attrib.local_attribute thy) o snd o fst) concl)))
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   387
      (name, []) (map (Locale.attribute (Attrib.local_attribute thy)) elems))
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   388
      (map (apfst (apsnd (K []))) concl) int thy;
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   389
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   390
fun locale_multi_theorem_i k locale (name, atts) elems concl =
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   391
  global_statement_i (Proof.multi_theorem_i k (Some (locale, (atts, map (snd o fst) concl)))
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   392
      (name, []) elems) (map (apfst (apsnd (K []))) concl);
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   393
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   394
fun theorem k (a, t) = multi_theorem k a [] [(("", []), [t])];
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   395
fun theorem_i k (a, t) = multi_theorem_i k a [] [(("", []), [t])];
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   396
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   397
fun smart_multi_theorem k None a elems = multi_theorem k a elems
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   398
  | smart_multi_theorem k (Some locale) a elems = locale_multi_theorem k locale a elems;
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   399
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   400
val assume      = local_statement Proof.assume I;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   401
val assume_i    = local_statement_i Proof.assume_i I;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   402
val presume     = local_statement Proof.presume I;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   403
val presume_i   = local_statement_i Proof.presume_i I;
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   404
val have        = local_statement (Proof.have Seq.single true) I;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   405
val have_i      = local_statement_i (Proof.have_i Seq.single true) I;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   406
val hence       = local_statement (Proof.have Seq.single true) Proof.chain;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   407
val hence_i     = local_statement_i (Proof.have_i Seq.single true) Proof.chain;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   408
val show        = local_statement' (Proof.show check_goal Seq.single true) I;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   409
val show_i      = local_statement_i' (Proof.show_i check_goal Seq.single true) I;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   410
val thus        = local_statement' (Proof.show check_goal Seq.single true) Proof.chain;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   411
val thus_i      = local_statement_i' (Proof.show_i check_goal Seq.single true) Proof.chain;
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   412
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   413
fun gen_def f ((name, srcs), def) = ProofHistory.apply (fn state =>
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   414
  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
   415
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   416
val local_def = gen_def Proof.def;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   417
val local_def_i = gen_def Proof.def_i;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   418
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   419
fun obtain (xs, asms) = proof'' (ProofHistory.applys o (fn print => fn state =>
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   420
  Obtain.obtain xs (map (local_attributes' state) asms) print state));
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   421
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   422
fun obtain_i (xs, asms) = proof'' (ProofHistory.applys o Obtain.obtain_i xs asms);
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   423
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   424
end;
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   425
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   426
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   427
(* blocks *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   428
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   429
val begin_block = ProofHistory.apply Proof.begin_block;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   430
val next_block = ProofHistory.apply Proof.next_block;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   431
val end_block = ProofHistory.applys Proof.end_block;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   432
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   433
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   434
(* shuffle state *)
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   435
8236
df3f983f5858 apply: observe facts;
wenzelm
parents: 8227
diff changeset
   436
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
   437
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   438
fun defer i = ProofHistory.applys (shuffle Method.defer i);
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   439
fun prefer i = ProofHistory.applys (shuffle Method.prefer i);
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   440
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   441
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   442
(* backward steps *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   443
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   444
fun apply m = ProofHistory.applys
8881
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   445
  (Seq.map (Proof.goal_facts (K [])) o Method.refine m o Proof.assert_backward);
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   446
fun apply_end m = ProofHistory.applys (Method.refine_end m o Proof.assert_forward);
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   447
val proof = ProofHistory.applys o Method.proof;
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   448
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   449
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   450
(* local endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   451
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   452
val local_qed = proof'' o (ProofHistory.applys oo Method.local_qed true);
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   453
val local_terminal_proof = proof'' o (ProofHistory.applys oo Method.local_terminal_proof);
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   454
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
   455
val local_immediate_proof = proof'' (ProofHistory.applys o Method.local_immediate_proof);
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   456
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
   457
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
   458
  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
   459
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   460
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   461
(* global endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   462
12318
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   463
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
   464
  let
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   465
    val state = ProofHistory.current prf;
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   466
    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
   467
    val (thy, ((kind, name), res)) = finish int state;
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   468
  in
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   469
    if kind = "" orelse kind = Drule.internalK then ()
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   470
    else (print_result (Proof.context_of state) ((kind, name), res);
13529
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   471
      Context.setmp (Some thy) (Present.results kind) res);
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   472
    thy
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   473
  end);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   474
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   475
fun global_qed m = global_result (K (Method.global_qed true m));
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   476
fun global_terminal_proof m = global_result (K (Method.global_terminal_proof m));
12318
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   477
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
   478
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
   479
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
   480
val global_done_proof = global_result (K Method.global_done_proof);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   481
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   482
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   483
(* common endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   484
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   485
fun qed meth = local_qed meth o global_qed meth;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   486
fun terminal_proof meths = local_terminal_proof meths o global_terminal_proof meths;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   487
val default_proof = local_default_proof o global_default_proof;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   488
val immediate_proof = local_immediate_proof o global_immediate_proof;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   489
val done_proof = local_done_proof o global_done_proof;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   490
val skip_proof = local_skip_proof o global_skip_proof;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   491
val forget_proof = Toplevel.proof_to_theory (Proof.theory_of o ProofHistory.current);
8210
ca3997312f47 added forget_proof;
wenzelm
parents: 8204
diff changeset
   492
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   493
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   494
(* calculational proof commands *)
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   495
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   496
local
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   497
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   498
fun cond_print_calc int ctxt thms =
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   499
  if int then
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   500
    Pretty.writeln (Pretty.big_list "calculation:" (map (ProofContext.pretty_thm ctxt) thms))
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   501
  else ();
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   502
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   503
fun proof''' f = Toplevel.proof' (f o cond_print_calc);
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   504
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   505
fun gen_calc get f args prt state =
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   506
  f (apsome (fn srcs => get srcs state) args) prt state;
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   507
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   508
in
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   509
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   510
fun get_thmss srcs = Proof.the_facts o local_thmss Proof.have_thmss [(("", []), srcs)];
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   511
fun get_thmss_i thms _ = thms;
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   512
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   513
fun also x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.also x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   514
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
   515
fun finally x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.finally x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   516
fun finally_i x = proof''' (ProofHistory.applys o gen_calc get_thmss_i Calculation.finally x);
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   517
val moreover = proof''' (ProofHistory.apply o Calculation.moreover);
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   518
val ultimately = proof''' (ProofHistory.apply o Calculation.ultimately);
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   519
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   520
end;
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   521
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   522
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   523
(* translation functions *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   524
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   525
val parse_ast_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   526
  Context.use_let "val parse_ast_translation: (string * (Syntax.ast list -> Syntax.ast)) list"
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   527
    "Theory.add_trfuns (parse_ast_translation, [], [], [])";
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   528
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   529
val parse_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   530
  Context.use_let "val parse_translation: (string * (term list -> term)) list"
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   531
    "Theory.add_trfuns ([], parse_translation, [], [])";
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   532
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   533
val print_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   534
  Context.use_let "val print_translation: (string * (term list -> term)) list"
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   535
    "Theory.add_trfuns ([], [], print_translation, [])";
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   536
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   537
val print_ast_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   538
  Context.use_let "val print_ast_translation: (string * (Syntax.ast list -> Syntax.ast)) list"
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   539
    "Theory.add_trfuns ([], [], [], print_ast_translation)";
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   540
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   541
val typed_print_translation =
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   542
  Context.use_let "val typed_print_translation: (string * (bool -> typ -> term list -> term)) list"
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   543
    "Theory.add_trfunsT typed_print_translation";
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   544
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   545
val token_translation =
11717
d808005e6e08 Fixed erroneous type constraint in token_translation function.
berghofe
parents: 11048
diff changeset
   546
  Context.use_let "val token_translation: (string * string * (string -> string * real)) list"
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   547
    "Theory.add_tokentrfuns token_translation";
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   548
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   549
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   550
(* add method *)
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   551
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   552
fun method_setup (name, txt, cmt) =
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   553
  Context.use_let
9810
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   554
    "val thm = PureThy.get_thm_closure (Context.the_context ());\n\
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   555
    \val thms = PureThy.get_thms_closure (Context.the_context ());\n\
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   556
    \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
   557
    "PureIsar.Method.add_method method"
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   558
    ("(" ^ quote name ^ ", " ^ txt ^ ", " ^ quote cmt ^ ")");
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   559
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   560
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   561
(* add_oracle *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   562
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   563
fun add_oracle (name, txt) =
8349
611342539639 moved use_mltext, use_mltext_theory, use_let, use_setup to context.ML;
wenzelm
parents: 8236
diff changeset
   564
  Context.use_let
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   565
    "val oracle: bstring * (Sign.sg * Object.T -> term)"
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   566
    "Theory.add_oracle oracle"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   567
    ("(" ^ quote name ^ ", " ^ txt ^ ")");
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   568
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   569
12062
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   570
(* add_locale *)
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   571
13393
bd976af8bf18 adapted add_locale;
wenzelm
parents: 13374
diff changeset
   572
fun add_locale (do_pred, name, import, body) thy =
bd976af8bf18 adapted add_locale;
wenzelm
parents: 13374
diff changeset
   573
  Locale.add_locale do_pred name import
13374
3e270e61133a add_locale: adapted args;
wenzelm
parents: 13276
diff changeset
   574
    (map (Locale.attribute (Attrib.local_attribute thy)) body) thy;
12062
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   575
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   576
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   577
(* theory init and exit *)
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   578
8804
wenzelm
parents: 8731
diff changeset
   579
fun gen_begin_theory upd name parents files =
14503
255ad604e08e Added check that Theory.ML does not occur in the files section of the theory
skalberg
parents: 13686
diff changeset
   580
  let val ml_filename = Path.pack (ThyLoad.ml_path name);
255ad604e08e Added check that Theory.ML does not occur in the files section of the theory
skalberg
parents: 13686
diff changeset
   581
      val () = if exists (equal ml_filename o #1) files
255ad604e08e Added check that Theory.ML does not occur in the files section of the theory
skalberg
parents: 13686
diff changeset
   582
               then error ((quote ml_filename) ^ " not allowed in files section for theory " ^ name)
255ad604e08e Added check that Theory.ML does not occur in the files section of the theory
skalberg
parents: 13686
diff changeset
   583
               else ()
255ad604e08e Added check that Theory.ML does not occur in the files section of the theory
skalberg
parents: 13686
diff changeset
   584
  in ThyInfo.begin_theory Present.begin_theory upd name parents (map (apfst Path.unpack) files) end;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   585
8804
wenzelm
parents: 8731
diff changeset
   586
val begin_theory = gen_begin_theory false;
7909
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   587
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   588
fun end_theory thy =
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   589
  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
   590
  else thy;
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   591
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   592
val kill_theory = ThyInfo.if_known_thy ThyInfo.remove_thy;
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   593
7103
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   594
8804
wenzelm
parents: 8731
diff changeset
   595
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
   596
fun en_theory thy = (end_theory thy; ());
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   597
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   598
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
   599
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   600
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   601
(* context switch *)
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   602
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   603
fun fetch_context f x =
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   604
  (case Context.pass None f x of
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   605
    ((), None) => raise Toplevel.UNDEF
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   606
  | ((), Some thy) => thy);
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   607
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   608
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
   609
955fde69fa7b added init_context;
wenzelm
parents: 7932
diff changeset
   610
val context = init_context (ThyInfo.quiet_update_thy true);
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   611
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   612
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   613
end;