src/Pure/Isar/isar_thy.ML
author wenzelm
Thu, 18 Aug 2005 11:17:43 +0200
changeset 17108 3962f74bbb8e
parent 17034 b4d9b87c102e
child 17139 165c97f9bb63
permissions -rw-r--r--
moved translation functions to Pure/sign.ML; moved attribute preparation to actual operations in proof.ML etc.; removed various trivial interfaces;
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
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
    24
    -> theory -> (theory * Proof.context) * (bstring * thm list) list
12713
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 ->
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
    27
    theory -> (theory * Proof.context) * (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
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
    30
    -> theory -> (theory * Proof.context) * (string * thm list) list
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    31
  val declare_theorems: xstring option ->
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
    32
    (thmref * Attrib.src list) list -> theory -> theory * Proof.context
15703
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 theorem: string -> (bstring * Attrib.src list) * (string * (string list * string list))
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
    36
    -> bool -> theory -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    37
  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
    38
    (term * (term list * term list)) -> bool -> theory -> ProofHistory.T
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    39
  val multi_theorem: string -> (thm list * thm list -> theory -> theory) ->
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
    40
    (cterm list -> Proof.context -> Proof.context -> thm -> thm) ->
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    41
    bstring * Attrib.src list -> Locale.element Locale.elem_expr list ->
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    42
    ((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
    43
    -> bool -> theory -> ProofHistory.T
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    44
  val multi_theorem_i: string -> (thm list * thm list -> theory -> theory) ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    45
    (cterm list -> Proof.context -> Proof.context -> thm -> thm) ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    46
    bstring * theory attribute list ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    47
    Locale.element_i Locale.elem_expr list ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    48
    ((bstring * theory attribute list) * (term * (term list * term list)) list) list ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    49
    bool -> theory -> ProofHistory.T
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    50
  val locale_multi_theorem:
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    51
    string -> (thm list * thm list -> theory -> theory) ->
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
    52
    (cterm list -> Proof.context -> Proof.context -> thm -> thm) ->
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    53
    xstring ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    54
    bstring * Attrib.src list -> Locale.element Locale.elem_expr list ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    55
    ((bstring * Attrib.src list) * (string * (string list * string list)) list) list ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    56
    bool -> theory -> ProofHistory.T
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    57
  val locale_multi_theorem_i:
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    58
    string -> (thm list * thm list -> theory -> theory) ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    59
    (cterm list -> Proof.context -> Proof.context -> thm -> thm) ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    60
    string ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    61
    bstring * Attrib.src list -> Locale.element_i Locale.elem_expr list ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    62
    ((bstring * Attrib.src list) * (term * (term list * term list)) list) list ->
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
    63
    bool -> theory -> ProofHistory.T
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
    64
  val smart_multi_theorem: string -> xstring option
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    65
    -> bstring * Attrib.src list -> Locale.element Locale.elem_expr list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    66
    -> ((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
    67
    -> bool -> theory -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    68
  val have: ((string * Attrib.src list) *
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    69
    (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
    70
  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
    71
    (term * (term list * term list)) list) list -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    72
  val hence: ((string * Attrib.src list) *
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    73
    (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
    74
  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
    75
    (term * (term list * term list)) list) list -> ProofHistory.T -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    76
  val show: ((string * Attrib.src list) *
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    77
    (string * (string list * string list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
    78
    -> bool -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    79
  val show_i: ((string * Proof.context attribute list) *
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    80
    (term * (term list * term list)) list) list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    81
    -> bool -> ProofHistory.T -> ProofHistory.T
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    82
  val thus: ((string * Attrib.src list) *
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    83
    (string * (string list * string list)) list) list
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
    84
    -> bool -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    85
  val thus_i: ((string * Proof.context attribute list)
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    86
    * (term * (term list * term list)) list) list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    87
    -> bool -> ProofHistory.T -> ProofHistory.T
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    88
  val obtain: (string list * string option) list
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    89
    * ((string * Attrib.src list) * (string * (string list * string list)) list) list
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
    90
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    91
  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
    92
    * ((string * Proof.context attribute list) * (term * (term list * term list)) list) list
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
    93
    -> Toplevel.transition -> Toplevel.transition
16605
4590c1f79050 added print_mode three_buffersN and corresponding cond_print;
wenzelm
parents: 16529
diff changeset
    94
  val three_buffersN: string
4590c1f79050 added print_mode three_buffersN and corresponding cond_print;
wenzelm
parents: 16529
diff changeset
    95
  val cond_print: Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    96
  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
    97
  val terminal_proof: Method.text * Method.text option
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    98
    -> Toplevel.transition -> Toplevel.transition
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
    99
  val default_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   100
  val immediate_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   101
  val done_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   102
  val skip_proof: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   103
  val forget_proof: Toplevel.transition -> Toplevel.transition
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   104
  val get_thmss: (thmref * Attrib.src list) list -> Proof.state -> thm list
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   105
  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
   106
  val also_i: thm list option -> Toplevel.transition -> Toplevel.transition
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   107
  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
   108
  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
   109
  val moreover: Toplevel.transition -> Toplevel.transition
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   110
  val ultimately: Toplevel.transition -> Toplevel.transition
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   111
  val generic_setup: string -> theory -> theory
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   112
  val method_setup: bstring * string * string -> theory -> theory
16849
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   113
  val add_oracle: bstring * string * string -> theory -> theory
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   114
  val register_globally:
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   115
    ((string * Attrib.src list) * Locale.expr) * string option list ->
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   116
    bool -> theory -> ProofHistory.T
16736
1e792b32abef Preparations for interpretation of locales in locales.
ballarin
parents: 16605
diff changeset
   117
  val register_in_locale:
1e792b32abef Preparations for interpretation of locales in locales.
ballarin
parents: 16605
diff changeset
   118
    string * Locale.expr -> bool -> theory -> ProofHistory.T
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   119
  val register_locally:
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   120
    ((string * Attrib.src list) * Locale.expr) * string option list ->
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   121
    ProofHistory.T -> ProofHistory.T
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   122
  val begin_theory: string -> string list -> (string * bool) list -> theory
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   123
  val end_theory: theory -> theory
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   124
  val kill_theory: string -> unit
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   125
  val theory: string * string list * (string * bool) list
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   126
    -> Toplevel.transition -> Toplevel.transition
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   127
  val init_context: ('a -> unit) -> 'a -> Toplevel.transition -> Toplevel.transition
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   128
  val context: string -> Toplevel.transition -> Toplevel.transition
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   129
end;
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   130
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   131
structure IsarThy: ISAR_THY =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   132
struct
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   133
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   134
(** derived theory and proof operations **)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   135
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   136
(* name spaces *)
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   137
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   138
local
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   139
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   140
val kinds =
16372
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   141
 [("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
   142
  ("type", (Sign.intern_type, Sign.declared_tyname, Theory.hide_types_i)),
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   143
  ("const", (Sign.intern_const, Sign.declared_const, Theory.hide_consts_i))];
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   144
16372
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   145
fun gen_hide int (kind, xnames) thy =
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   146
  (case assoc_string (kinds, kind) of
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   147
    SOME (intern, check, hide) =>
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   148
      let
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   149
        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
   150
        val bads = filter_out (check thy) names;
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   151
      in
16372
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   152
        if null bads then hide true names thy
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   153
        else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads)
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   154
      end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   155
  | NONE => error ("Bad name space specification: " ^ quote kind));
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   156
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   157
in
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   158
16372
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   159
val hide_names = gen_hide true;
8618d334840b renamed hide_space to hide_names;
wenzelm
parents: 16169
diff changeset
   160
val hide_names_i = gen_hide false;
8885
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   161
19ab913a6a6a hide: check declared;
wenzelm
parents: 8881
diff changeset
   162
end;
8724
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   163
ef7efded8fdc global/local_path: comment;
wenzelm
parents: 8681
diff changeset
   164
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   165
(* axioms and defs *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   166
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   167
fun add_axms f args thy =
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   168
  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
   169
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   170
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
   171
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
   172
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
   173
fun add_defs_i (x, args) = (#1 oo PureThy.add_defs_i x) args;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   174
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   175
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   176
(* theorems *)
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   177
12705
wenzelm
parents: 12701
diff changeset
   178
local
wenzelm
parents: 12701
diff changeset
   179
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   180
fun present_thmss kind (thy, named_thmss) =
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   181
  conditional (kind <> "" andalso kind <> Drule.internalK) (fn () =>
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   182
    Context.setmp (SOME thy) (Present.results (kind ^ "s")) named_thmss);
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   183
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   184
fun present_thmss' kind ((thy, _), named_thmss) = present_thmss kind (thy, named_thmss);
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   185
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   186
fun global_attribs thy = Attrib.map_facts (Attrib.global_attribute thy);
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   187
12705
wenzelm
parents: 12701
diff changeset
   188
in
wenzelm
parents: 12701
diff changeset
   189
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   190
fun theorems_i k = tap (present_thmss k) oo PureThy.note_thmss_i (Drule.kind k);
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   191
fun locale_theorems_i k loc = tap (present_thmss' k) oo Locale.note_thmss_i k loc;
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   192
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   193
fun theorems k args thy = thy
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14528
diff changeset
   194
  |> PureThy.note_thmss (Drule.kind k) (global_attribs thy args)
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   195
  |> tap (present_thmss k);
12713
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   196
c9e3e34dbc45 clarified/added theorems(_i) vs. locale_theorems(_i);
wenzelm
parents: 12705
diff changeset
   197
fun locale_theorems k loc args thy = thy
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   198
  |> Locale.note_thmss k loc args
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   199
  |> tap (present_thmss' k);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   200
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   201
fun smart_theorems k NONE args thy =
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   202
      let val (thy', res) =
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   203
        thy |> PureThy.note_thmss (Drule.kind k) (global_attribs thy args)
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   204
      in
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   205
        present_thmss k (thy', res);
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   206
        ((thy', ProofContext.init thy'), res)
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   207
      end
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   208
  | smart_theorems k (SOME loc) args thy = thy
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   209
      |> Locale.note_thmss k loc args
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   210
      |> tap (present_thmss' k);
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   211
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   212
fun declare_theorems opt_loc args = #1 o smart_theorems "" opt_loc [(("", []), args)];
9590
52e71612e42f added declare_theorems(_i);
wenzelm
parents: 9466
diff changeset
   213
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   214
fun apply_theorems args = apsnd (List.concat o map snd) o theorems "" [(("", []), args)];
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   215
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
   216
12705
wenzelm
parents: 12701
diff changeset
   217
end;
wenzelm
parents: 12701
diff changeset
   218
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   219
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   220
(* local results *)
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   221
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   222
local
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   223
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   224
fun prt_facts ctxt =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   225
  List.concat o (separate [Pretty.fbrk, Pretty.str "and "]) o
13276
a02ee4fec6b7 ProofContext.pretty_fact;
wenzelm
parents: 12969
diff changeset
   226
    map (single o ProofContext.pretty_fact ctxt);
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   227
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   228
fun pretty_results ctxt ((kind, ""), facts) =
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   229
      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
   230
  | pretty_results ctxt ((kind, name), [fact]) = Pretty.blk (1,
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   231
      [Pretty.str (kind ^ " " ^ name ^ ":"), Pretty.fbrk, ProofContext.pretty_fact ctxt fact])
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   232
  | pretty_results ctxt ((kind, name), facts) = Pretty.blk (1,
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   233
      [Pretty.str (kind ^ " " ^ name ^ ":"), Pretty.fbrk,
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   234
        Pretty.blk (1, Pretty.str "(" :: prt_facts ctxt facts @ [Pretty.str ")"])]);
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   235
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   236
fun pretty_rule s ctxt thm =
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   237
  Pretty.block [Pretty.str (s ^ " to solve goal by exported rule:"),
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   238
    Pretty.fbrk, ProofContext.pretty_thm ctxt thm];
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   239
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   240
in
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   241
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   242
val print_result = Pretty.writeln oo pretty_results;
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   243
fun print_result' ctxt (k, res) = print_result ctxt ((k, ""), res);
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   244
16529
wenzelm
parents: 16498
diff changeset
   245
fun cond_print_result_rule true =
wenzelm
parents: 16498
diff changeset
   246
      (print_result', priority oo (Pretty.string_of oo pretty_rule "Successful attempt"))
wenzelm
parents: 16498
diff changeset
   247
  | cond_print_result_rule false = (K (K ()), K (K ()));
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   248
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   249
fun proof'' f = Toplevel.proof' (f o cond_print_result_rule);
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   250
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   251
fun check_goal false state = state
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   252
  | check_goal true state =
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   253
      let
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   254
        val rule = ref (NONE: thm option);
13529
49a0ad8f175e check_goal: produce error instead of warning;
wenzelm
parents: 13393
diff changeset
   255
        fun fail exn =
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   256
          (["Problem! Local statement will fail to solve any pending goal"] @
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   257
          (case exn of NONE => [] | SOME e => [Toplevel.exn_message e]) @
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   258
          (case ! rule of NONE => [] | SOME thm =>
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   259
            [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
   260
          |> cat_lines |> error;
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   261
        val check =
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   262
          (fn () => Seq.pull (SkipProof.local_skip_proof (K (K ()),
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   263
            fn _ => fn thm => rule := SOME thm) true state))
14836
ba0fc27a6c7e transform_error;
wenzelm
parents: 14778
diff changeset
   264
          |> setmp proofs 0
ba0fc27a6c7e transform_error;
wenzelm
parents: 14778
diff changeset
   265
          |> transform_error;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   266
        val result = (check (), NONE) handle Interrupt => raise Interrupt | e => (NONE, SOME e);
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   267
      in (case result of (SOME _, NONE) => () | (_, exn) => fail exn); state end;
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   268
10935
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   269
end;
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   270
808e9dbc68c4 show/thus: check_goal;
wenzelm
parents: 10464
diff changeset
   271
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   272
(* statements *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   273
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   274
local
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   275
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   276
fun global_statement f args int thy = ProofHistory.init (Toplevel.undo_limit int) (f args thy);
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   277
fun local_statement' f g args int = ProofHistory.apply (f args int o g);
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   278
fun local_statement f g args = local_statement' (K o f) g args ();
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   279
12701
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   280
in
77ac6d8451ea export multi_theorem(_i), locale_multi_theorem(_i);
wenzelm
parents: 12697
diff changeset
   281
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   282
fun multi_theorem k after_qed export a elems concl int thy =
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   283
  global_statement (Proof.multi_theorem k after_qed export NONE a
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   284
    (map (Locale.intern_attrib_elem_expr thy) elems)) concl int thy;
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   285
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   286
fun multi_theorem_i k after_qed export a =
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   287
  global_statement o Proof.multi_theorem_i k after_qed export NONE a;
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   288
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   289
fun locale_multi_theorem k after_qed export locale (name, atts) elems concl int thy =
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   290
  global_statement (Proof.multi_theorem k after_qed export
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   291
      (SOME (locale,
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   292
        (map (Attrib.intern_src thy) atts,
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   293
         map (map (Attrib.intern_src thy) o snd o fst) concl)))
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   294
      (name, [])
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   295
      (map (Locale.intern_attrib_elem_expr thy) elems))
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   296
    (map (apfst (apsnd (K []))) concl) int thy;
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   297
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   298
fun locale_multi_theorem_i k after_qed export locale (name, atts) elems concl =
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   299
  global_statement (Proof.multi_theorem_i k after_qed export
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
   300
      (SOME (locale, (atts, map (snd o fst) concl)))
12957
6b169f497a01 clarified multi statements;
wenzelm
parents: 12941
diff changeset
   301
      (name, []) elems) (map (apfst (apsnd (K []))) concl);
12697
a81fbd9787cf simplified theorem(_i);
wenzelm
parents: 12601
diff changeset
   302
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   303
fun theorem k (a, t) =
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   304
  multi_theorem k (K I) ProofContext.export_standard a [] [(("", []), [t])];
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   305
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   306
fun theorem_i k (a, t) =
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   307
  multi_theorem_i k (K I) ProofContext.export_standard a [] [(("", []), [t])];
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   308
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
   309
fun smart_multi_theorem k NONE a elems =
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   310
      multi_theorem k (K I) ProofContext.export_standard a elems
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
   311
  | smart_multi_theorem k (SOME locale) a elems =
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   312
      locale_multi_theorem k (K I) ProofContext.export_standard locale a elems;
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   313
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   314
val have        = local_statement (Proof.have (K Seq.single) true) I;
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   315
val have_i      = local_statement (Proof.have_i (K Seq.single) true) I;
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   316
val hence       = local_statement (Proof.have (K Seq.single) true) Proof.chain;
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   317
val hence_i     = local_statement (Proof.have_i (K Seq.single) true) Proof.chain;
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   318
val show        = local_statement' (Proof.show check_goal (K Seq.single) true) I;
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   319
val show_i      = local_statement' (Proof.show_i check_goal (K Seq.single) true) I;
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   320
val thus        = local_statement' (Proof.show check_goal (K Seq.single) true) Proof.chain;
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   321
val thus_i      = local_statement' (Proof.show_i check_goal (K Seq.single) true) Proof.chain;
12141
d8445053eee0 theorem, have, show etc: multiple statements;
wenzelm
parents: 12062
diff changeset
   322
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   323
fun obtain (xs, asms) = proof'' (ProofHistory.applys o Obtain.obtain xs asms);
12969
d860fa102386 tuned local goal forms;
wenzelm
parents: 12957
diff changeset
   324
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
   325
7271
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   326
end;
442456b2a8bb assume: multiple args;
wenzelm
parents: 7242
diff changeset
   327
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   328
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   329
(* local endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   330
16605
4590c1f79050 added print_mode three_buffersN and corresponding cond_print;
wenzelm
parents: 16529
diff changeset
   331
val three_buffersN = "three_buffers";
4590c1f79050 added print_mode three_buffersN and corresponding cond_print;
wenzelm
parents: 16529
diff changeset
   332
val cond_print = Toplevel.print' three_buffersN;
4590c1f79050 added print_mode three_buffersN and corresponding cond_print;
wenzelm
parents: 16529
diff changeset
   333
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   334
val local_qed = proof'' o (ProofHistory.applys oo Proof.local_qed true);
15237
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15206
diff changeset
   335
val skip_local_qed =
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15206
diff changeset
   336
  Toplevel.skip_proof (History.apply (fn i => if i > 1 then i - 1 else raise Toplevel.UNDEF));
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   337
val local_terminal_proof = proof'' o (ProofHistory.applys oo Proof.local_terminal_proof);
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   338
val local_default_proof = proof'' (ProofHistory.applys o Proof.local_default_proof);
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   339
val local_immediate_proof = proof'' (ProofHistory.applys o Proof.local_immediate_proof);
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   340
val local_done_proof = proof'' (ProofHistory.applys o Proof.local_done_proof);
12318
72348ff7d4a0 skip_proof: do not require quick_and_dirty in interactive mode;
wenzelm
parents: 12271
diff changeset
   341
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
   342
  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
   343
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   344
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   345
(* global endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   346
16143
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   347
fun name_results "" res = res
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   348
  | name_results name res =
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   349
      let
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   350
        val n = length (List.concat (map #2 res));
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   351
        fun name_res (i, (a, ths)) =
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   352
          let
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   353
            val m = length ths;
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   354
            val j = i + m;
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   355
          in
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   356
            if a <> "" then (j, (a, ths))
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   357
            else if m = n then (j, (name, ths))
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   358
            else if m = 1 then
16498
9d265401fee0 thmref: Name vs. NameSelection;
wenzelm
parents: 16425
diff changeset
   359
              (j, (PureThy.string_of_thmref (NameSelection (name, [Single i])), ths))
9d265401fee0 thmref: Name vs. NameSelection;
wenzelm
parents: 16425
diff changeset
   360
            else (j, (PureThy.string_of_thmref (NameSelection (name, [FromTo (i, j - 1)])), ths))
16143
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   361
          end;
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   362
      in #2 (foldl_map name_res (1, res)) end;
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   363
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   364
fun global_result finish = Toplevel.proof_to_theory_context (fn int => fn prf =>
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   365
  let
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   366
    val state = ProofHistory.current prf;
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   367
    val _ = if Proof.at_bottom state then () else raise Toplevel.UNDEF;
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   368
    val ((thy, ctxt), ((kind, name), res)) = finish int state;
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   369
  in
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   370
    if kind = "" orelse kind = Drule.internalK then ()
12244
179f142ffb03 improved treatment of common result name;
wenzelm
parents: 12242
diff changeset
   371
    else (print_result (Proof.context_of state) ((kind, name), res);
16143
ee6f7e6fc196 improved naming of complex theorems in presentation;
wenzelm
parents: 15979
diff changeset
   372
      Context.setmp (SOME thy) (Present.results kind) (name_results name res));
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   373
    (thy, ctxt)
11742
44034a6474e5 generic theorem kinds;
wenzelm
parents: 11717
diff changeset
   374
  end);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   375
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   376
fun global_qed m = global_result (K (Proof.global_qed true m));
15237
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15206
diff changeset
   377
val skip_global_qed = Toplevel.skip_proof_to_theory (equal 1 o History.current);
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   378
fun global_terminal_proof m = global_result (K (Proof.global_terminal_proof m));
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   379
val global_default_proof = global_result (K Proof.global_default_proof);
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   380
val global_immediate_proof = global_result (K Proof.global_immediate_proof);
6888
d0c68ebdabc5 skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents: 6885
diff changeset
   381
val global_skip_proof = global_result SkipProof.global_skip_proof;
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   382
val global_done_proof = global_result (K Proof.global_done_proof);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   383
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   384
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   385
(* common endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   386
15237
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15206
diff changeset
   387
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
   388
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
   389
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
   390
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
   391
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
   392
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
   393
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
   394
  Toplevel.skip_proof_to_theory (K true);
8210
ca3997312f47 added forget_proof;
wenzelm
parents: 8204
diff changeset
   395
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   396
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   397
(* calculational proof commands *)
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   398
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   399
local
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   400
12055
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   401
fun cond_print_calc int ctxt thms =
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   402
  if int then
a9c44895cc8c pretty/print functions with context;
wenzelm
parents: 12045
diff changeset
   403
    Pretty.writeln (Pretty.big_list "calculation:" (map (ProofContext.pretty_thm ctxt) thms))
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   404
  else ();
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   405
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   406
fun proof''' f = Toplevel.proof' (f o cond_print_calc);
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   407
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   408
fun gen_calc get f args prt state =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   409
  f (Option.map (fn srcs => get srcs state) args) prt state;
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   410
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   411
in
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   412
17108
3962f74bbb8e moved translation functions to Pure/sign.ML;
wenzelm
parents: 17034
diff changeset
   413
fun get_thmss srcs = Proof.the_facts o Proof.note_thmss [(("", []), srcs)];
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   414
fun get_thmss_i thms _ = thms;
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   415
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   416
fun also x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.also x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   417
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
   418
fun finally x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.finally x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   419
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
   420
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
   421
val ultimately = proof''' (ProofHistory.apply o Calculation.ultimately);
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   422
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   423
end;
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   424
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   425
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   426
(* generic_setup *)
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   427
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   428
val generic_setup =
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   429
  Context.use_let "val setup: (theory -> theory) list" "Library.apply setup";
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   430
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   431
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15720
diff changeset
   432
(* method_setup *)
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   433
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12848
diff changeset
   434
fun method_setup (name, txt, cmt) =
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   435
  Context.use_let
16498
9d265401fee0 thmref: Name vs. NameSelection;
wenzelm
parents: 16425
diff changeset
   436
    "val thm = PureThy.get_thm_closure (Context.the_context ()) o PureThy.Name;\n\
9d265401fee0 thmref: Name vs. NameSelection;
wenzelm
parents: 16425
diff changeset
   437
    \val thms = PureThy.get_thms_closure (Context.the_context ()) o PureThy.Name;\n\
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   438
    \val method: bstring * (Method.src -> Proof.context -> Proof.method) * string"
15829
652e53c4a1ed removed structure PureIsar;
wenzelm
parents: 15801
diff changeset
   439
    "Method.add_method method"
14598
7009f59711e3 Replaced quote by Library.quote, since quote now refers to Symbol.quote
berghofe
parents: 14564
diff changeset
   440
    ("(" ^ Library.quote name ^ ", " ^ txt ^ ", " ^ Library.quote cmt ^ ")");
9193
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   441
4f4936582889 have_theorems etc.: handle multiple lists of arguments;
wenzelm
parents: 9032
diff changeset
   442
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   443
(* add_oracle *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   444
16849
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   445
fun add_oracle (name, T, oracle) =
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   446
  let val txt =
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   447
    "local\n\
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   448
    \  type T = " ^ T ^ ";\n\
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   449
    \  val oracle: theory -> T -> term = " ^ oracle ^ ";\n\
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   450
    \  val name = " ^ quote name ^ ";\n\
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   451
    \  exception Arg of T;\n\
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   452
    \  val _ = Context.>> (Theory.add_oracle (name, fn (thy, Arg x) => oracle thy x));\n\
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   453
    \  val thy = Context.the_context ();\n\
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   454
    \  val invoke_" ^ name ^ " = Thm.invoke_oracle_i thy (Sign.full_name thy name);\n\
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   455
    \in\n\
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   456
    \  fun " ^ name ^ " thy x = invoke_" ^ name ^ " (thy, Arg x);\n\
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   457
    \end;\n";
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16736
diff changeset
   458
  in Context.use_mltext_theory txt false end;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   459
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   460
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   461
(* registration of locale interpretations *)
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   462
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   463
fun register_globally (((prfx, atts), expr), insts) int thy =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   464
  let
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   465
    val (propss, after_qed) =
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   466
      Locale.prep_global_registration (prfx, atts) expr insts thy;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   467
  in
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   468
    multi_theorem_i Drule.internalK (fst #> after_qed) ProofContext.export_plain
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   469
      ("", []) []
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   470
      (map (fn ((n, _), props) => ((NameSpace.base n, []),
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   471
        map (fn prop => (prop, ([], []))) props)) propss) int thy
16736
1e792b32abef Preparations for interpretation of locales in locales.
ballarin
parents: 16605
diff changeset
   472
  end;
1e792b32abef Preparations for interpretation of locales in locales.
ballarin
parents: 16605
diff changeset
   473
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   474
fun register_locally (((prfx, atts), expr), insts) =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   475
  ProofHistory.apply (fn state =>
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   476
    let
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   477
      val ctxt = Proof.context_of state;
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   478
      val (propss, after_qed) =
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   479
        Locale.prep_local_registration (prfx, atts) expr insts ctxt;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   480
    in
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   481
      state
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   482
      |> Proof.map_context (fn _ => ctxt)
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   483
      |> Proof.have_i (fn result => Seq.single o Proof.map_context (after_qed result)) true
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   484
        (map (fn ((n, _), props) => ((NameSpace.base n, []),
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   485
          map (fn prop => (prop, ([], []))) props)) propss)
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   486
    end);
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   487
17034
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   488
fun register_in_locale (target, expr) int thy =
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   489
  let
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   490
    val target = Locale.intern thy target;
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   491
    val (propss, after_qed) =
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   492
        Locale.prep_registration_in_locale target expr thy;
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   493
  in
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   494
    locale_multi_theorem_i Drule.internalK (fst #> after_qed)
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   495
      ProofContext.export_plain
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   496
      target ("",[]) []
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   497
      (map (fn ((n, _), props) => ((NameSpace.base n, []),
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   498
        map (fn prop => (prop, ([], []))) props)) propss) int thy
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   499
  end;
b4d9b87c102e After_qed takes result argument.
ballarin
parents: 17000
diff changeset
   500
12062
feed7bb2a607 theorem(_i): locale atts;
wenzelm
parents: 12055
diff changeset
   501
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   502
(* theory init and exit *)
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   503
8804
wenzelm
parents: 8731
diff changeset
   504
fun gen_begin_theory upd name parents files =
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   505
  let
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   506
    val ml_filename = Path.pack (ThyLoad.ml_path name);
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   507
    (* FIXME unreliable test -- better make ThyInfo manage dependencies properly *)
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   508
    val _ = conditional (exists (equal ml_filename o #1) files) (fn () =>
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   509
      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
   510
  in
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   511
    ThyInfo.begin_theory Present.begin_theory upd name parents
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   512
      (map (apfst Path.unpack) files)
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   513
  end;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   514
8804
wenzelm
parents: 8731
diff changeset
   515
val begin_theory = gen_begin_theory false;
7909
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   516
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   517
fun end_theory thy =
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   518
  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
   519
  else thy;
824ea50b8dbb end/kill_theory: check_known_thy;
wenzelm
parents: 7862
diff changeset
   520
7932
92df50fb89ca export kill_theory;
wenzelm
parents: 7909
diff changeset
   521
val kill_theory = ThyInfo.if_known_thy ThyInfo.remove_thy;
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   522
7103
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   523
8804
wenzelm
parents: 8731
diff changeset
   524
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
   525
fun en_theory thy = (end_theory thy; ());
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   526
16425
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   527
fun theory spec =
2427be27cc60 accomodate identification of type Sign.sg and theory;
wenzelm
parents: 16372
diff changeset
   528
  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
   529
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   530
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   531
(* context switch *)
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   532
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   533
fun fetch_context f x =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   534
  (case Context.pass NONE f x of
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   535
    ((), NONE) => raise Toplevel.UNDEF
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   536
  | ((), SOME thy) => thy);
7960
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   537
d5c91c131070 improved IsarThy.init_context;
wenzelm
parents: 7953
diff changeset
   538
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
   539
955fde69fa7b added init_context;
wenzelm
parents: 7932
diff changeset
   540
val context = init_context (ThyInfo.quiet_update_thy true);
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   541
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   542
end;