src/Pure/Isar/isar_thy.ML
author wenzelm
Fri, 17 Jun 2005 18:33:08 +0200
changeset 16425 2427be27cc60
parent 16372 8618d334840b
child 16498 9d265401fee0
permissions -rw-r--r--
accomodate identification of type Sign.sg and 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
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     4
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
     5
Pure/Isar derived theory operations.
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     6
*)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     7
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     8
signature ISAR_THY =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
     9
sig
16372
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
    10
  val hide_names: string * xstring list -> theory -> theory
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
    11
  val hide_names_i: string * string list -> theory -> theory
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    12
  val add_axioms: ((bstring * string) * Attrib.src list) list -> theory -> theory
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    13
  val add_axioms_i: ((bstring * term) * theory attribute list) list -> theory -> theory
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    14
  val add_defs: bool * ((bstring * string) * Attrib.src list) list -> theory -> theory
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    15
  val add_defs_i: bool * ((bstring * term) * theory attribute list) list -> theory -> theory
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    16
  val theorems: string ->
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    17
    ((bstring * Attrib.src list) * (thmref * Attrib.src list) list) list
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    18
    -> theory -> theory * (string * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    19
  val theorems_i: string ->
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    20
    ((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
    21
    -> theory -> theory * (string * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    22
  val locale_theorems: string -> xstring ->
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    23
    ((bstring * Attrib.src list) * (thmref * Attrib.src list) list) list
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    24
    -> theory -> theory * (bstring * thm list) list
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    25
  val locale_theorems_i: string -> string ->
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    26
    ((bstring * Attrib.src list) * (thm list * Attrib.src list) list) list ->
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    27
    theory -> theory * (string * thm list) list
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    28
  val smart_theorems: string -> xstring option ->
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    29
    ((bstring * Attrib.src list) * (thmref * Attrib.src 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
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    31
  val declare_theorems: xstring option ->
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    32
    (thmref * Attrib.src list) list -> theory -> theory
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    33
  val apply_theorems: (thmref * Attrib.src list) list -> theory -> theory * thm list
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
    34
  val apply_theorems_i: (thm list * theory attribute list) list -> theory -> theory * thm list
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    35
  val have_facts: ((string * Attrib.src list) * (thmref * Attrib.src list) list) list
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10449
diff changeset
    36
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    37
  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
    38
    (thm * Proof.context attribute list) list) list -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    39
  val from_facts: (thmref * Attrib.src list) list list -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    40
  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
    41
    -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    42
  val with_facts: (thmref * Attrib.src list) list list -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    43
  val with_facts_i: (thm * Proof.context attribute list) list list
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
    44
    -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    45
  val using_facts: (thmref * Attrib.src list) list list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    46
    -> ProofHistory.T -> ProofHistory.T
12929
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
    47
  val using_facts_i: (thm * Proof.context attribute list) list list
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
    48
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    49
  val chain: ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    50
  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
    51
  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
    52
  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
    53
  val let_bind_i: (term list * term) list -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    54
  val invoke_case: string * string option list * Attrib.src list -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    55
  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
    56
    -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    57
  val theorem: string -> (bstring * Attrib.src list) * (string * (string list * string list))
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
    58
    -> bool -> theory -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    59
  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
    60
    (term * (term list * term list)) -> bool -> theory -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    61
  val multi_theorem: string -> (theory -> theory) ->
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
    62
    (cterm list -> Proof.context -> Proof.context -> thm -> thm) ->
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    63
    bstring * Attrib.src list -> Locale.element Locale.elem_expr list ->
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    64
    ((bstring * Attrib.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
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    66
  val multi_theorem_i: string -> (theory -> theory) ->
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
    67
    (cterm list -> Proof.context -> Proof.context -> thm -> thm) ->
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    68
    bstring * theory attribute list -> Locale.element_i Locale.elem_expr list
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    69
    -> ((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
    70
    -> bool -> theory -> ProofHistory.T
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
    71
  val locale_multi_theorem: string -> xstring
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    72
    -> bstring * Attrib.src list -> Locale.element Locale.elem_expr list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    73
    -> ((bstring * Attrib.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
    74
    -> bool -> theory -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    75
  val locale_multi_theorem_i: string -> string -> bstring * Attrib.src list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    76
    -> Locale.element_i Locale.elem_expr list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    77
    -> ((bstring * Attrib.src 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
    78
    -> bool -> theory -> ProofHistory.T
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
    79
  val smart_multi_theorem: string -> xstring option
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    80
    -> bstring * Attrib.src list -> Locale.element Locale.elem_expr list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    81
    -> ((bstring * Attrib.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
    82
    -> bool -> theory -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    83
  val assume: ((string * Attrib.src list) * (string * (string list * string list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
    84
    -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    85
  val assume_i:
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    86
    ((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
    87
    -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    88
  val presume: ((string * Attrib.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
    89
    -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    90
  val presume_i:
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    91
    ((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
    92
    -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    93
  val have: ((string * Attrib.src list) *
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    94
    (string * (string list * string list)) list) list -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    95
  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
    96
    (term * (term list * term list)) list) list -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    97
  val hence: ((string * Attrib.src list) *
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    98
    (string * (string list * string list)) list) list -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    99
  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
   100
    (term * (term list * term list)) list) list -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   101
  val show: ((string * Attrib.src list) *
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   102
    (string * (string list * string list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   103
    -> bool -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   104
  val show_i: ((string * Proof.context attribute list) *
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   105
    (term * (term list * term list)) list) list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   106
    -> bool -> ProofHistory.T -> ProofHistory.T
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   107
  val thus: ((string * Attrib.src list) *
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   108
    (string * (string list * string list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   109
    -> bool -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   110
  val thus_i: ((string * Proof.context attribute list)
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   111
    * (term * (term list * term list)) list) list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   112
    -> bool -> ProofHistory.T -> ProofHistory.T
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   113
  val local_def: (string * Attrib.src list) * (string * (string * string list))
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   114
    -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   115
  val local_def_i: (string * Attrib.src list) * (string * (term * term list))
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   116
    -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   117
  val obtain: (string list * string option) list
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   118
    * ((string * Attrib.src list) * (string * (string list * string list)) list) list
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   119
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   120
  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
   121
    * ((string * Proof.context attribute list) * (term * (term list * term list)) list) list
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   122
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   123
  val begin_block: ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   124
  val next_block: ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   125
  val end_block: ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   126
  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
   127
  val prefer: int -> ProofHistory.T -> ProofHistory.T
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   128
  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
   129
  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
   130
  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
   131
  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
   132
  val terminal_proof: Method.text * Method.text option
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   133
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   134
  val default_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   135
  val immediate_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   136
  val done_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   137
  val skip_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   138
  val forget_proof: Toplevel.transition -> Toplevel.transition
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   139
  val get_thmss: (thmref * Attrib.src list) list -> Proof.state -> thm list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   140
  val also: (thmref * Attrib.src list) list option -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   141
  val also_i: thm list option -> Toplevel.transition -> Toplevel.transition
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   142
  val finally: (thmref * Attrib.src list) list option -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   143
  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
   144
  val moreover: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   145
  val ultimately: Toplevel.transition -> Toplevel.transition
14649
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   146
  val parse_ast_translation: bool * string -> theory -> theory
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   147
  val parse_translation: bool * string -> theory -> theory
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   148
  val print_translation: bool * string -> theory -> theory
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   149
  val typed_print_translation: bool * string -> theory -> theory
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   150
  val print_ast_translation: bool * string -> theory -> theory
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   151
  val token_translation: string -> theory -> theory
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   152
  val generic_setup: string -> theory -> theory
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   153
  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
   154
  val add_oracle: bstring * string -> theory -> theory
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   155
  val add_locale: bool * bstring * Locale.expr * Locale.element list -> theory -> theory
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   156
  val register_globally:
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   157
    ((string * Attrib.src list) * Locale.expr) * string option list ->
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   158
    bool -> theory -> ProofHistory.T
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   159
  val register_locally:
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   160
    ((string * Attrib.src list) * Locale.expr) * string option list ->
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   161
    ProofHistory.T -> ProofHistory.T
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   162
  val begin_theory: string -> string list -> (string * bool) list -> theory
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   163
  val end_theory: theory -> theory
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   164
  val kill_theory: string -> unit
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   165
  val theory: string * string list * (string * bool) list
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   166
    -> Toplevel.transition -> Toplevel.transition
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   167
  val init_context: ('a -> unit) -> 'a -> Toplevel.transition -> Toplevel.transition
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   168
  val context: string -> Toplevel.transition -> Toplevel.transition
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   169
end;
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   170
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   171
structure IsarThy: ISAR_THY =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   172
struct
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   173
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   174
(** derived theory and proof operations **)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   175
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   176
(* name spaces *)
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   177
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   178
local
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   179
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   180
val kinds =
16372
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   181
 [("class", (Sign.intern_class, can o Sign.certify_class, Theory.hide_classes_i)),
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   182
  ("type", (Sign.intern_type, Sign.declared_tyname, Theory.hide_types_i)),
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   183
  ("const", (Sign.intern_const, Sign.declared_const, Theory.hide_consts_i))];
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   184
16372
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   185
fun gen_hide int (kind, xnames) thy =
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   186
  (case assoc_string (kinds, kind) of
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   187
    SOME (intern, check, hide) =>
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   188
      let
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   189
        val names = if int then map (intern thy) xnames else xnames;
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   190
        val bads = filter_out (check thy) names;
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   191
      in
16372
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   192
        if null bads then hide true names thy
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   193
        else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads)
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   194
      end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   195
  | NONE => error ("Bad name space specification: " ^ quote kind));
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   196
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   197
in
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   198
16372
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   199
val hide_names = gen_hide true;
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   200
val hide_names_i = gen_hide false;
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   201
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   202
end;
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   203
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   204
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   205
(* axioms and defs *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   206
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   207
fun add_axms f args thy =
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   208
  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
   209
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   210
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
   211
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
   212
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
   213
fun add_defs_i (x, args) = (#1 oo PureThy.add_defs_i x) args;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   214
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   215
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   216
(* attributes *)
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   217
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   218
local
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   219
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   220
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
   221
  ((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
   222
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   223
in
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   224
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   225
fun global_attribs thy = prep_attribs (Attrib.global_attribute thy);
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   226
fun local_attribs thy = prep_attribs (Attrib.local_attribute thy);
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
end;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   229
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   230
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   231
(* theorems *)
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   232
12705
wenzelm
parents: 12701
diff changeset
   233
local
wenzelm
parents: 12701
diff changeset
   234
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   235
fun present_thmss kind (thy, named_thmss) =
13529
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   236
 (conditional (kind <> "" andalso kind <> Drule.internalK) (fn () =>
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   237
    Context.setmp (SOME thy) (Present.results (kind ^ "s")) named_thmss);
13529
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   238
  (thy, named_thmss));
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   239
12705
wenzelm
parents: 12701
diff changeset
   240
in
wenzelm
parents: 12701
diff changeset
   241
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14528
diff changeset
   242
fun theorems_i k = present_thmss k oo PureThy.note_thmss_i (Drule.kind k);
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14528
diff changeset
   243
fun locale_theorems_i k loc = present_thmss k oo Locale.note_thmss_i k loc;
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   244
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   245
fun theorems k args thy = thy
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14528
diff changeset
   246
  |> PureThy.note_thmss (Drule.kind k) (global_attribs thy args)
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   247
  |> present_thmss k;
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   248
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   249
fun locale_theorems k loc args thy = thy
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   250
  |> Locale.note_thmss k loc args
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   251
  |> present_thmss k;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   252
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   253
fun smart_theorems k opt_loc args thy = thy
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   254
  |> (case opt_loc of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   255
    NONE => PureThy.note_thmss (Drule.kind k) (global_attribs thy args)
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   256
  | SOME loc => Locale.note_thmss k loc args)
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   257
  |> present_thmss k;
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   258
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   259
fun declare_theorems opt_loc args = #1 o smart_theorems "" opt_loc [(("", []), args)];
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   260
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   261
fun apply_theorems args = apsnd (List.concat o map snd) o theorems "" [(("", []), args)];
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   262
fun apply_theorems_i args = apsnd (List.concat o map snd) o theorems_i "" [(("", []), args)];
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   263
12705
wenzelm
parents: 12701
diff changeset
   264
end;
wenzelm
parents: 12701
diff changeset
   265
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   266
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   267
(* facts and forward chaining *)
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   268
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   269
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
   270
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
   271
  ((name, more_atts), map (apfst single) th_atts)) args);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   272
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   273
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
   274
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14528
diff changeset
   275
val have_facts = ProofHistory.apply o local_thmss Proof.note_thmss;
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14528
diff changeset
   276
val have_facts_i = ProofHistory.apply o local_thmss_i Proof.note_thmss_i;
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14528
diff changeset
   277
val from_facts = chain_thmss (local_thmss Proof.note_thmss);
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14528
diff changeset
   278
val from_facts_i = chain_thmss (local_thmss_i Proof.note_thmss_i);
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   279
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
   280
val with_facts_i = chain_thmss (local_thmss_i Proof.with_thmss_i);
12929
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   281
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   282
fun using_facts args = ProofHistory.apply (fn state =>
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   283
  Proof.using_thmss (map (map (apsnd (map
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   284
    (Attrib.local_attribute (Proof.theory_of state))))) args) state);
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   285
dbac8831d954 added using_facts;
wenzelm
parents: 12876
diff changeset
   286
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
   287
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   288
val chain = ProofHistory.apply Proof.chain;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   289
14649
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   290
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   291
(* context *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   292
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   293
val fix = ProofHistory.apply o Proof.fix;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   294
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
   295
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
   296
val let_bind_i = ProofHistory.apply o Proof.let_bind_i;
8450
dc44d6533f0f invoke_case: include attributes;
wenzelm
parents: 8428
diff changeset
   297
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   298
fun invoke_case (name, xs, src) = ProofHistory.apply (fn state =>
14649
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   299
  Proof.invoke_case (name, xs,
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   300
    map (Attrib.local_attribute (Proof.theory_of state)) src) state);
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   301
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   302
val invoke_case_i = ProofHistory.apply o Proof.invoke_case;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   303
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   304
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   305
(* local results *)
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   306
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   307
local
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   308
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   309
fun prt_facts ctxt =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   310
  List.concat o (separate [Pretty.fbrk, Pretty.str "and "]) o
13276
a02ee4fec6b7 ProofContext.pretty_fact;
wenzelm
parents: 12969
diff changeset
   311
    map (single o ProofContext.pretty_fact ctxt);
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   312
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   313
fun pretty_results ctxt ((kind, ""), facts) =
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   314
      Pretty.block (Pretty.str kind :: Pretty.brk 1 :: prt_facts ctxt facts)
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   315
  | pretty_results ctxt ((kind, name), [fact]) = Pretty.blk (1,
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   316
      [Pretty.str (kind ^ " " ^ name ^ ":"), Pretty.fbrk, ProofContext.pretty_fact ctxt fact])
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   317
  | pretty_results ctxt ((kind, name), facts) = Pretty.blk (1,
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   318
      [Pretty.str (kind ^ " " ^ name ^ ":"), Pretty.fbrk,
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   319
        Pretty.blk (1, Pretty.str "(" :: prt_facts ctxt facts @ [Pretty.str ")"])]);
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   320
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   321
fun pretty_rule s ctxt thm =
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   322
  Pretty.block [Pretty.str (s ^ " to solve goal by exported rule:"),
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   323
    Pretty.fbrk, ProofContext.pretty_thm ctxt thm];
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   324
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   325
in
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   326
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   327
val print_result = Pretty.writeln oo pretty_results;
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   328
fun print_result' ctxt (k, res) = print_result ctxt ((k, ""), res);
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   329
13686
bc63c3b2b3e7 modified msg
nipkow
parents: 13529
diff changeset
   330
fun cond_print_result_rule int = if int
bc63c3b2b3e7 modified msg
nipkow
parents: 13529
diff changeset
   331
  then (print_result',
bc63c3b2b3e7 modified msg
nipkow
parents: 13529
diff changeset
   332
        priority oo (Pretty.string_of oo pretty_rule "Successful attempt"))
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   333
  else (K (K ()), K (K ()));
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   334
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   335
fun proof'' f = Toplevel.proof' (f o cond_print_result_rule);
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   336
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   337
fun check_goal false state = state
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   338
  | check_goal true state =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   339
      let
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   340
        val rule = ref (NONE: thm option);
13529
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   341
        fun fail exn =
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   342
          (["Problem! Local statement will fail to solve any pending goal"] @
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   343
          (case exn of NONE => [] | SOME e => [Toplevel.exn_message e]) @
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   344
          (case ! rule of NONE => [] | SOME thm =>
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   345
            [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
   346
          |> cat_lines |> error;
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   347
        val check =
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   348
          (fn () => Seq.pull (SkipProof.local_skip_proof (K (K ()),
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   349
            fn _ => fn thm => rule := SOME thm) true state))
14836
ba0fc27a6c7e transform_error;
wenzelm
parents: 14778
diff changeset
   350
          |> setmp proofs 0
ba0fc27a6c7e transform_error;
wenzelm
parents: 14778
diff changeset
   351
          |> transform_error;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   352
        val result = (check (), NONE) handle Interrupt => raise Interrupt | e => (NONE, SOME e);
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   353
      in (case result of (SOME _, NONE) => () | (_, exn) => fail exn); state end;
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   354
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   355
end;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   356
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   357
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   358
(* statements *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   359
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   360
local
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   361
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   362
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
   363
fun local_attributes thy ((name, src), s) = ((name, map (Attrib.local_attribute thy) src), s);
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   364
fun local_attributes' state = local_attributes (Proof.theory_of state);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   365
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   366
fun global_statement f args int thy =
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   367
  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
   368
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
   369
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   370
fun local_statement' f g args int = ProofHistory.apply (fn state =>
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   371
  f (map (local_attributes' state) args) int (g state));
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   372
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
   373
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
   374
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
   375
12701
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   376
in
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   377
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   378
fun multi_theorem k after_qed export a elems concl int thy =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   379
  global_statement (Proof.multi_theorem k after_qed export NONE
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   380
    (apsnd (map (Attrib.global_attribute thy)) a)
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   381
    (map (Locale.intern_attrib_elem_expr thy) elems)) concl int thy;
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   382
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   383
fun multi_theorem_i k after_qed export a =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   384
  global_statement_i o Proof.multi_theorem_i k after_qed export NONE a;
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   385
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   386
fun locale_multi_theorem k locale (name, atts) elems concl int thy =
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   387
  global_statement (Proof.multi_theorem k I  ProofContext.export_standard
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   388
      (SOME (locale,
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   389
        (map (Attrib.intern_src thy) atts,
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   390
         map (map (Attrib.intern_src thy) o snd o fst) concl)))
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   391
      (name, [])
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   392
      (map (Locale.intern_attrib_elem_expr thy) elems))
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   393
    (map (apfst (apsnd (K []))) concl) int thy;
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   394
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   395
fun locale_multi_theorem_i k locale (name, atts) elems concl =
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
   396
  global_statement_i (Proof.multi_theorem_i k I ProofContext.export_standard
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
   397
      (SOME (locale, (atts, map (snd o fst) concl)))
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   398
      (name, []) elems) (map (apfst (apsnd (K []))) concl);
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   399
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   400
fun theorem k (a, t) =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   401
  multi_theorem k I ProofContext.export_standard a [] [(("", []), [t])];
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   402
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   403
fun theorem_i k (a, t) =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   404
  multi_theorem_i k I ProofContext.export_standard a [] [(("", []), [t])];
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   405
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
   406
fun smart_multi_theorem k NONE a elems =
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
   407
      multi_theorem k I ProofContext.export_standard a elems
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
   408
  | smart_multi_theorem k (SOME locale) a elems =
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
   409
      locale_multi_theorem k locale a elems;
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   410
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   411
val assume      = local_statement Proof.assume I;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   412
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
   413
val presume     = local_statement Proof.presume I;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   414
val presume_i   = local_statement_i Proof.presume_i I;
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   415
val have        = local_statement (Proof.have Seq.single true) I;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   416
val have_i      = local_statement_i (Proof.have_i Seq.single true) I;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   417
val hence       = local_statement (Proof.have Seq.single true) Proof.chain;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   418
val hence_i     = local_statement_i (Proof.have_i Seq.single true) Proof.chain;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   419
val show        = local_statement' (Proof.show check_goal Seq.single true) I;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   420
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
   421
val thus        = local_statement' (Proof.show check_goal Seq.single true) Proof.chain;
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   422
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
   423
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   424
fun gen_def f ((name, srcs), def) = ProofHistory.apply (fn state =>
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   425
  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
   426
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   427
val local_def = gen_def Proof.def;
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   428
val local_def_i = gen_def Proof.def_i;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   429
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   430
fun obtain (xs, asms) = proof'' (ProofHistory.applys o (fn print => fn state =>
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   431
  Obtain.obtain xs (map (local_attributes' state) asms) print state));
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   432
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   433
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
   434
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   435
end;
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   436
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   437
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   438
(* blocks *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   439
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   440
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
   441
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
   442
val end_block = ProofHistory.applys Proof.end_block;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   443
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   444
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   445
(* shuffle state *)
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   446
8236
df3f983f5858 apply: observe facts;
wenzelm
parents: 8227
diff changeset
   447
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
   448
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   449
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
   450
fun prefer i = ProofHistory.applys (shuffle Method.prefer i);
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   451
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8090
diff changeset
   452
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   453
(* backward steps *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   454
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   455
fun apply m = ProofHistory.applys
8881
0467dd0d66ff 'apply' consumes facts;
wenzelm
parents: 8804
diff changeset
   456
  (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
   457
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
   458
val proof = ProofHistory.applys o Method.proof;
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
(* local endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   462
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   463
val local_qed = proof'' o (ProofHistory.applys oo Method.local_qed true);
15237
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15206
diff changeset
   464
val skip_local_qed =
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15206
diff changeset
   465
  Toplevel.skip_proof (History.apply (fn i => if i > 1 then i - 1 else raise Toplevel.UNDEF));
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   466
val local_terminal_proof = proof'' o (ProofHistory.applys oo Method.local_terminal_proof);
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   467
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
   468
val local_immediate_proof = proof'' (ProofHistory.applys o Method.local_immediate_proof);
8966
916966f68907 added "done" proof;
wenzelm
parents: 8897
diff changeset
   469
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
   470
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
   471
  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
   472
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   473
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   474
(* global endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   475
16143
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   476
fun name_results "" res = res
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   477
  | name_results name res =
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   478
      let
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   479
        val n = length (List.concat (map #2 res));
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   480
        fun name_res (i, (a, ths)) =
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   481
          let
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   482
            val m = length ths;
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   483
            val j = i + m;
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   484
          in
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   485
            if a <> "" then (j, (a, ths))
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   486
            else if m = n then (j, (name, ths))
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   487
            else if m = 1 then
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   488
              (j, (PureThy.string_of_thmref (name, SOME [PureThy.Single i]), ths))
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   489
            else (j, (PureThy.string_of_thmref (name, SOME [PureThy.FromTo (i, j - 1)]), ths))
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   490
          end;
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   491
      in #2 (foldl_map name_res (1, res)) end;
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   492
12318
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   493
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
   494
  let
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   495
    val state = ProofHistory.current prf;
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   496
    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
   497
    val (thy, ((kind, name), res)) = finish int state;
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   498
  in
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   499
    if kind = "" orelse kind = Drule.internalK then ()
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   500
    else (print_result (Proof.context_of state) ((kind, name), res);
16143
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   501
      Context.setmp (SOME thy) (Present.results kind) (name_results name res));
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   502
    thy
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   503
  end);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   504
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   505
fun global_qed m = global_result (K (Method.global_qed true m));
15237
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15206
diff changeset
   506
val skip_global_qed = Toplevel.skip_proof_to_theory (equal 1 o History.current);
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   507
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
   508
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
   509
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
   510
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
   511
val global_done_proof = global_result (K Method.global_done_proof);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   512
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   513
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   514
(* common endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   515
15237
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15206
diff changeset
   516
fun qed meth = local_qed meth o global_qed meth o skip_local_qed o skip_global_qed;
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   517
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
   518
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
   519
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
   520
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
   521
val skip_proof = local_skip_proof o global_skip_proof;
15237
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15206
diff changeset
   522
val forget_proof = Toplevel.proof_to_theory (Proof.theory_of o ProofHistory.current) o
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15206
diff changeset
   523
  Toplevel.skip_proof_to_theory (K true);
8210
ca3997312f47 added forget_proof;
wenzelm
parents: 8204
diff changeset
   524
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   525
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   526
(* calculational proof commands *)
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   527
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   528
local
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   529
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   530
fun cond_print_calc int ctxt thms =
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   531
  if int then
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   532
    Pretty.writeln (Pretty.big_list "calculation:" (map (ProofContext.pretty_thm ctxt) thms))
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   533
  else ();
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   534
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   535
fun proof''' f = Toplevel.proof' (f o cond_print_calc);
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   536
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   537
fun gen_calc get f args prt state =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   538
  f (Option.map (fn srcs => get srcs state) args) prt state;
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   539
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   540
in
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   541
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14528
diff changeset
   542
fun get_thmss srcs = Proof.the_facts o local_thmss Proof.note_thmss [(("", []), srcs)];
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   543
fun get_thmss_i thms _ = thms;
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   544
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   545
fun also x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.also x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   546
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
   547
fun finally x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.finally x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   548
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
   549
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
   550
val ultimately = proof''' (ProofHistory.apply o Calculation.ultimately);
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   551
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   552
end;
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   553
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   554
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   555
(* translation functions *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   556
14649
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   557
fun advancedT false = ""
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   558
  | advancedT true = "theory -> ";
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   559
14649
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   560
fun advancedN false = ""
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   561
  | advancedN true = "advanced_";
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   562
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   563
fun parse_ast_translation (a, txt) =
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   564
  txt |> Context.use_let ("val parse_ast_translation: (string * (" ^ advancedT a ^
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   565
      "Syntax.ast list -> Syntax.ast)) list")
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   566
    ("Theory.add_" ^ advancedN a ^ "trfuns (parse_ast_translation, [], [], [])");
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   567
14649
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   568
fun parse_translation (a, txt) =
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   569
  txt |> Context.use_let ("val parse_translation: (string * (" ^ advancedT a ^
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   570
      "term list -> term)) list")
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   571
    ("Theory.add_" ^ advancedN a ^ "trfuns ([], parse_translation, [], [])");
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   572
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   573
fun print_translation (a, txt) =
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   574
  txt |> Context.use_let ("val print_translation: (string * (" ^ advancedT a ^
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   575
      "term list -> term)) list")
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   576
    ("Theory.add_" ^ advancedN a ^ "trfuns ([], [], print_translation, [])");
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   577
14649
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   578
fun print_ast_translation (a, txt) =
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   579
  txt |> Context.use_let ("val print_ast_translation: (string * (" ^ advancedT a ^
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   580
      "Syntax.ast list -> Syntax.ast)) list")
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   581
    ("Theory.add_" ^ advancedN a ^ "trfuns ([], [], [], print_ast_translation)");
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   582
14649
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   583
fun typed_print_translation (a, txt) =
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   584
  txt |> Context.use_let ("val typed_print_translation: (string * (" ^ advancedT a ^
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   585
      "bool -> typ -> term list -> term)) list")
8ad41d25c152 removed add_constdefs(_i), see constdefs.ML for improved version; advanced translation functions;
wenzelm
parents: 14598
diff changeset
   586
    ("Theory.add_" ^ advancedN a ^ "trfunsT typed_print_translation");
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   587
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   588
val token_translation =
11717
d808005e6e08 Fixed erroneous type constraint in token_translation function.
berghofe
parents: 11048
diff changeset
   589
  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
   590
    "Theory.add_tokentrfuns token_translation";
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   591
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   592
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   593
(* generic_setup *)
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   594
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   595
val generic_setup =
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   596
  Context.use_let "val setup: (theory -> theory) list" "Library.apply setup";
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   597
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   598
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   599
(* method_setup *)
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   600
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   601
fun method_setup (name, txt, cmt) =
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   602
  Context.use_let
9810
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   603
    "val thm = PureThy.get_thm_closure (Context.the_context ());\n\
7e785df2b76a method_setup: thms closure;
wenzelm
parents: 9590
diff changeset
   604
    \val thms = PureThy.get_thms_closure (Context.the_context ());\n\
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   605
    \val method: bstring * (Method.src -> Proof.context -> Proof.method) * string"
15829
652e53c4a1ed removed structure PureIsar;
wenzelm
parents: 15801
diff changeset
   606
    "Method.add_method method"
14598
7009f59711e3 Replaced quote by Library.quote, since quote now refers to Symbol.quote
berghofe
parents: 14564
diff changeset
   607
    ("(" ^ Library.quote name ^ ", " ^ txt ^ ", " ^ Library.quote cmt ^ ")");
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   608
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   609
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   610
(* add_oracle *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   611
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   612
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
   613
  Context.use_let
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   614
    "val oracle: bstring * (theory * Object.T -> term)"
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   615
    "Theory.add_oracle oracle"
14598
7009f59711e3 Replaced quote by Library.quote, since quote now refers to Symbol.quote
berghofe
parents: 14564
diff changeset
   616
    ("(" ^ Library.quote name ^ ", " ^ txt ^ ")");
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   617
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   618
12062
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   619
(* add_locale *)
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   620
13393
bd976af8bf18 adapted add_locale;
wenzelm
parents: 13374
diff changeset
   621
fun add_locale (do_pred, name, import, body) thy =
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   622
  Locale.add_locale do_pred name import body thy;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   623
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   624
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   625
(* registration of locale interpretations *)
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   626
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   627
fun register_globally (((prfx, atts), expr), insts) int thy =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   628
  let
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   629
    val (thy', propss, activate) =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   630
      Locale.prep_global_registration (prfx, atts) expr insts thy;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   631
    fun witness id (thy, thm) = let
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   632
        val thm' = Drule.freeze_all thm;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   633
      in
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   634
        (Locale.add_global_witness id thm' thy, thm')
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   635
      end;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   636
  in
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   637
    multi_theorem_i Drule.internalK activate ProofContext.export_plain
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   638
      ("", []) []
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   639
      (map (fn ((n, ps), props) =>
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   640
          ((NameSpace.base n, [witness (n, map Logic.varify ps)]),
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   641
        map (fn prop => (prop, ([], []))) props)) propss) int thy'
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   642
  end;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   643
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   644
fun register_locally (((prfx, atts), expr), insts) =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   645
  ProofHistory.apply (fn state =>
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   646
    let
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   647
      val ctxt = Proof.context_of state;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   648
      val (ctxt', propss, activate) =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   649
        Locale.prep_local_registration (prfx, atts) expr insts ctxt;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   650
      fun witness id (ctxt, thm) = (Locale.add_local_witness id thm ctxt, thm);
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   651
    in
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   652
      state
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   653
      |> Proof.map_context (fn _ => ctxt')
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   654
      |> Proof.have_i (Seq.single o Proof.map_context activate) true
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   655
        (map (fn (id as (n, _), props) => ((NameSpace.base n, [witness id]),
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   656
          map (fn prop => (prop, ([], []))) props)) propss)
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   657
    end);
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   658
12062
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   659
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   660
(* theory init and exit *)
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   661
8804
wenzelm
parents: 8731
diff changeset
   662
fun gen_begin_theory upd name parents files =
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   663
  let
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   664
    val ml_filename = Path.pack (ThyLoad.ml_path name);
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   665
    (* FIXME unreliable test -- better make ThyInfo manage dependencies properly *)
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   666
    val _ = conditional (exists (equal ml_filename o #1) files) (fn () =>
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   667
      error ((quote ml_filename) ^ " not allowed in files section for theory " ^ name));
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   668
  in
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   669
    ThyInfo.begin_theory Present.begin_theory upd name parents
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   670
      (map (apfst Path.unpack) files)
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   671
  end;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   672
8804
wenzelm
parents: 8731
diff changeset
   673
val begin_theory = gen_begin_theory false;
7909
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   674
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   675
fun end_theory thy =
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   676
  if ThyInfo.check_known_thy (Context.theory_name thy) then ThyInfo.end_theory thy
7909
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   677
  else thy;
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   678
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   679
val kill_theory = ThyInfo.if_known_thy ThyInfo.remove_thy;
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   680
7103
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   681
8804
wenzelm
parents: 8731
diff changeset
   682
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
   683
fun en_theory thy = (end_theory thy; ());
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   684
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   685
fun theory spec =
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   686
  Toplevel.init_theory (bg_theory spec) en_theory (kill_theory o Context.theory_name);
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   687
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   688
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   689
(* context switch *)
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   690
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   691
fun fetch_context f x =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   692
  (case Context.pass NONE f x of
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   693
    ((), NONE) => raise Toplevel.UNDEF
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   694
  | ((), SOME thy) => thy);
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   695
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   696
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
   697
955fde69fa7b added init_context;
wenzelm
parents: 7932
diff changeset
   698
val context = init_context (ThyInfo.quiet_update_thy true);
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   699
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   700
end;