src/Pure/Isar/isar_thy.ML
author wenzelm
Tue, 03 Aug 1999 19:04:20 +0200
changeset 7172 9ecd66cf546d
parent 7103 1c44df10a7bc
child 7176 a329a37ed91a
permissions -rw-r--r--
tuned; added sect, subsect, subsubsect;
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
6552
28553eba1913 Comment.text;
wenzelm
parents: 6531
diff changeset
    10
  val add_title: Comment.text -> Comment.text -> Comment.text -> theory -> theory
28553eba1913 Comment.text;
wenzelm
parents: 6531
diff changeset
    11
  val add_chapter: Comment.text -> theory -> theory
28553eba1913 Comment.text;
wenzelm
parents: 6531
diff changeset
    12
  val add_section: Comment.text -> theory -> theory
28553eba1913 Comment.text;
wenzelm
parents: 6531
diff changeset
    13
  val add_subsection: Comment.text -> theory -> theory
28553eba1913 Comment.text;
wenzelm
parents: 6531
diff changeset
    14
  val add_subsubsection: Comment.text -> theory -> theory
7172
wenzelm
parents: 7103
diff changeset
    15
  val add_text: Comment.text -> theory -> theory
wenzelm
parents: 7103
diff changeset
    16
  val add_sect: Comment.text -> ProofHistory.T -> ProofHistory.T
wenzelm
parents: 7103
diff changeset
    17
  val add_subsect: Comment.text -> ProofHistory.T -> ProofHistory.T
wenzelm
parents: 7103
diff changeset
    18
  val add_subsubsect: Comment.text -> ProofHistory.T -> ProofHistory.T
wenzelm
parents: 7103
diff changeset
    19
  val add_txt: Comment.text -> ProofHistory.T -> ProofHistory.T
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    20
  val add_classes: (bclass * xclass list) list * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    21
  val add_classes_i: (bclass * class list) list * Comment.text  -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    22
  val add_classrel: (xclass * xclass) * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    23
  val add_classrel_i: (class * class) * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    24
  val add_defsort: xsort * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    25
  val add_defsort_i: sort * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    26
  val add_nonterminals: (bstring * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    27
  val add_tyabbrs: ((bstring * string list * string * mixfix) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    28
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    29
  val add_tyabbrs_i: ((bstring * string list * typ * mixfix) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    30
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    31
  val add_arities: ((xstring * xsort list * xsort) * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    32
  val add_arities_i: ((string * sort list * sort) * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    33
  val add_typedecl: (bstring * string list * mixfix) * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    34
  val add_consts: ((bstring * string * mixfix) * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    35
  val add_consts_i: ((bstring * typ * mixfix) * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    36
  val add_modesyntax: string * bool -> ((bstring * string * mixfix) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    37
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    38
  val add_modesyntax_i: string * bool -> ((bstring * typ * mixfix) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    39
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    40
  val add_trrules: ((xstring * string) Syntax.trrule * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    41
  val add_trrules_i: (Syntax.ast Syntax.trrule * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    42
  val add_axioms: (((bstring * string) * Args.src list) * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    43
  val add_axioms_i: (((bstring * term) * theory attribute list) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    44
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    45
  val add_defs: (((bstring * string) * Args.src list) * Comment.text) list -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    46
  val add_defs_i: (((bstring * term) * theory attribute list) * Comment.text) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    47
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    48
  val add_constdefs: (((bstring * string * mixfix) * Comment.text) * (string * Comment.text)) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    49
    -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    50
  val add_constdefs_i: (((bstring * typ * mixfix) * Comment.text) * (term * Comment.text)) list
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    51
    -> theory -> theory
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
    52
  val apply_theorems: (xstring * Args.src list) list -> theory -> theory * thm list
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
    53
  val apply_theorems_i: (thm * theory attribute list) list -> theory -> theory * thm list
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    54
  val have_theorems: ((bstring * Args.src list) * (xstring * Args.src list) list) * Comment.text
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
    55
    -> theory -> theory
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    56
  val have_theorems_i: ((bstring * theory attribute list) * (thm * theory attribute list) list)
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    57
    * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    58
  val have_lemmas: ((bstring * Args.src list) * (xstring * Args.src list) list) * Comment.text
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
    59
    -> theory -> theory
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    60
  val have_lemmas_i: ((bstring * theory attribute list) * (thm * theory attribute list) list)
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    61
    * Comment.text -> theory -> theory
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    62
  val have_facts: ((string * Args.src list) * (string * Args.src list) list) * Comment.text
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
    63
    -> ProofHistory.T -> ProofHistory.T
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    64
  val have_facts_i: ((string * Proof.context attribute list) *
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    65
    (thm * Proof.context attribute list) list) * Comment.text -> ProofHistory.T -> ProofHistory.T
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    66
  val from_facts: (string * Args.src list) list * Comment.text -> ProofHistory.T -> ProofHistory.T
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    67
  val from_facts_i: (thm * Proof.context attribute list) list * Comment.text
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    68
    -> ProofHistory.T -> ProofHistory.T
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
    69
  val with_facts: (string * Args.src list) list * Comment.text -> ProofHistory.T -> ProofHistory.T
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
    70
  val with_facts_i: (thm * Proof.context attribute list) list * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
    71
    -> ProofHistory.T -> ProofHistory.T
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    72
  val chain: Comment.text -> ProofHistory.T -> ProofHistory.T
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    73
  val export_chain: Comment.text -> ProofHistory.T -> ProofHistory.T
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    74
  val fix: (string * string option) list * Comment.text -> ProofHistory.T -> ProofHistory.T
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    75
  val fix_i: (string * typ) list * Comment.text -> ProofHistory.T -> ProofHistory.T
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    76
  val match_bind: ((string list * string) * Comment.text) list -> ProofHistory.T -> ProofHistory.T
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
    77
  val match_bind_i: ((term list * term) * Comment.text) list -> ProofHistory.T -> ProofHistory.T
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    78
  val theorem: (bstring * Args.src list * (string * (string list * string list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    79
    * Comment.text -> bool -> theory -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    80
  val theorem_i: (bstring * theory attribute list * (term * (term list * term list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    81
    * Comment.text -> bool -> theory -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    82
  val lemma: (bstring * Args.src list * (string * (string list * string list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    83
    * Comment.text -> bool -> theory -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    84
  val lemma_i: (bstring * theory attribute list * (term * (term list * term list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    85
    * Comment.text -> bool -> theory -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    86
  val assume: (string * Args.src list * (string * (string list * string list)) list)
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    87
    * Comment.text -> ProofHistory.T -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    88
  val assume_i: (string * Proof.context attribute list * (term * (term list * term list)) list)
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    89
    * Comment.text -> ProofHistory.T -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    90
  val presume: (string * Args.src list * (string * (string list * string list)) list)
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    91
    * Comment.text -> ProofHistory.T -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    92
  val presume_i: (string * Proof.context attribute list * (term * (term list * term list)) list)
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    93
    * Comment.text -> ProofHistory.T -> ProofHistory.T
6952
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
    94
  val local_def: (string * Args.src list * ((string * string option) * (string * string list)))
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
    95
    * Comment.text -> ProofHistory.T -> ProofHistory.T
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
    96
  val local_def_i: (string * Args.src list * ((string * typ) * (term * term list)))
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
    97
    * Comment.text -> ProofHistory.T -> ProofHistory.T
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    98
  val show: (string * Args.src list * (string * (string list * string list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
    99
    * Comment.text -> ProofHistory.T -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   100
  val show_i: (string * Proof.context attribute list * (term * (term list * term list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   101
    * Comment.text -> ProofHistory.T -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   102
  val have: (string * Args.src list * (string * (string list * string list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   103
    * Comment.text -> ProofHistory.T -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   104
  val have_i: (string * Proof.context attribute list * (term * (term list * term list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   105
    * Comment.text -> ProofHistory.T -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   106
  val thus: (string * Args.src list * (string * (string list * string list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   107
    * Comment.text -> ProofHistory.T -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   108
  val thus_i: (string * Proof.context attribute list * (term * (term list * term list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   109
    * Comment.text -> ProofHistory.T -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   110
  val hence: (string * Args.src list * (string * (string list * string list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   111
    * Comment.text -> ProofHistory.T -> ProofHistory.T
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   112
  val hence_i: (string * Proof.context attribute list * (term * (term list * term list)))
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   113
    * Comment.text -> ProofHistory.T -> ProofHistory.T
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   114
  val begin_block: ProofHistory.T -> ProofHistory.T
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   115
  val next_block: ProofHistory.T -> ProofHistory.T
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   116
  val end_block: ProofHistory.T -> ProofHistory.T
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   117
  val tac: Method.text -> ProofHistory.T -> ProofHistory.T
5882
c8096461f5c8 renamed tac / etac to refine / then_refine;
wenzelm
parents: 5830
diff changeset
   118
  val then_tac: Method.text -> ProofHistory.T -> ProofHistory.T
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   119
  val proof: (Comment.interest * (Method.text * Comment.interest) option) * Comment.text
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   120
    -> ProofHistory.T -> ProofHistory.T
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   121
  val kill_proof: ProofHistory.T -> theory
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   122
  val qed: (Method.text * Comment.interest) option * Comment.text
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   123
    -> Toplevel.transition -> Toplevel.transition
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   124
  val terminal_proof: ((Method.text * Comment.interest) * (Method.text * Comment.interest) option)
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   125
    * Comment.text -> Toplevel.transition -> Toplevel.transition
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   126
  val immediate_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   127
  val default_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   128
  val skip_proof: Comment.text -> Toplevel.transition -> Toplevel.transition
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   129
  val get_thmss: (string * Args.src list) list -> Proof.state -> thm list
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   130
  val also: ((string * Args.src list) list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   131
    -> Toplevel.transition -> Toplevel.transition
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   132
  val also_i: (thm list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   133
    -> Toplevel.transition -> Toplevel.transition
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   134
  val finally: ((string * Args.src list) list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   135
    -> Toplevel.transition -> Toplevel.transition
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   136
  val finally_i: (thm list * Comment.interest) option * Comment.text
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   137
    -> Toplevel.transition -> Toplevel.transition
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   138
  val use_mltext: string -> theory option -> theory option
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   139
  val use_mltext_theory: string -> theory -> theory
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   140
  val use_setup: string -> theory -> theory
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   141
  val parse_ast_translation: string -> theory -> theory
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   142
  val parse_translation: string -> theory -> theory
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   143
  val print_translation: string -> theory -> theory
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   144
  val typed_print_translation: string -> theory -> theory
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   145
  val print_ast_translation: string -> theory -> theory
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   146
  val token_translation: string -> theory -> theory
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   147
  val add_oracle: (bstring * string) * Comment.text -> theory -> theory
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   148
  val begin_theory: string -> string list -> (string * bool) list -> theory
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   149
  val end_theory: theory -> theory
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   150
  val theory: string * string list * (string * bool) list
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   151
    -> Toplevel.transition -> Toplevel.transition
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   152
  val context: string -> Toplevel.transition -> Toplevel.transition
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   153
end;
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   154
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   155
structure IsarThy: ISAR_THY =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   156
struct
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   157
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   158
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   159
(** derived theory and proof operations **)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   160
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   161
(* formal comments *)
5959
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   162
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   163
fun add_text comment thy = thy;
6354
a4c75cbd2fbf add_title;
wenzelm
parents: 6331
diff changeset
   164
fun add_title title author date thy = thy;
5959
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   165
val add_chapter = add_text;
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   166
val add_section = add_text;
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   167
val add_subsection = add_text;
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   168
val add_subsubsection = add_text;
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   169
7172
wenzelm
parents: 7103
diff changeset
   170
fun add_txt comment = ProofHistory.apply Proof.assert_forward;
wenzelm
parents: 7103
diff changeset
   171
val add_sect = add_text;
wenzelm
parents: 7103
diff changeset
   172
val add_subsect = add_text;
wenzelm
parents: 7103
diff changeset
   173
val add_subsubsect = add_text;
wenzelm
parents: 7103
diff changeset
   174
5959
7af99477751b add_text, add_chapter etc.: dummy;
wenzelm
parents: 5938
diff changeset
   175
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   176
(* signature and syntax *)
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   177
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   178
val add_classes = Theory.add_classes o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   179
val add_classes_i = Theory.add_classes_i o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   180
val add_classrel = Theory.add_classrel o single o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   181
val add_classrel_i = Theory.add_classrel_i o single o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   182
val add_defsort = Theory.add_defsort o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   183
val add_defsort_i = Theory.add_defsort_i o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   184
val add_nonterminals = Theory.add_nonterminals o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   185
val add_tyabbrs = Theory.add_tyabbrs o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   186
val add_tyabbrs_i = Theory.add_tyabbrs_i o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   187
val add_arities = Theory.add_arities o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   188
val add_arities_i = Theory.add_arities_i o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   189
val add_typedecl = PureThy.add_typedecls o single o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   190
val add_consts = Theory.add_consts o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   191
val add_consts_i = Theory.add_consts_i o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   192
fun add_modesyntax mode = Theory.add_modesyntax mode o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   193
fun add_modesyntax_i mode = Theory.add_modesyntax_i mode o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   194
val add_trrules = Theory.add_trrules o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   195
val add_trrules_i = Theory.add_trrules_i o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   196
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   197
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   198
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   199
(* axioms and defs *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   200
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   201
fun add_axms f args thy =
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   202
  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
   203
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   204
val add_axioms = add_axms PureThy.add_axioms o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   205
val add_axioms_i = PureThy.add_axioms_i o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   206
val add_defs = add_axms PureThy.add_defs o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   207
val add_defs_i = PureThy.add_defs_i o map Comment.ignore;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   208
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   209
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   210
(* constdefs *)
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   211
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   212
fun gen_add_constdefs consts defs args thy =
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   213
  thy
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   214
  |> consts (map (Comment.ignore o fst) args)
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   215
  |> defs (map (fn (((c, _, mx), _), (s, _)) =>
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   216
    (((Thm.def_name (Syntax.const_name c mx), s), []), Comment.none)) args);
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   217
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   218
fun add_constdefs args = gen_add_constdefs Theory.add_consts add_defs args;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   219
fun add_constdefs_i args = gen_add_constdefs Theory.add_consts_i add_defs_i args;
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   220
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   221
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   222
(* theorems *)
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   223
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   224
fun gen_have_thmss get attrib f ((name, more_srcs), th_srcs) x =
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   225
  f name (map (attrib x) more_srcs)
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   226
    (map (fn (s, srcs) => (get x s, map (attrib x) srcs)) th_srcs) x;
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   227
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   228
fun global_have_thmss x = gen_have_thmss PureThy.get_thms Attrib.global_attribute x;
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   229
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   230
fun local_have_thmss x =
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   231
  gen_have_thmss (ProofContext.get_thms o Proof.context_of)
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   232
    (Attrib.local_attribute o Proof.theory_of) x;
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   233
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   234
fun gen_have_thmss_i f ((name, more_atts), th_atts) =
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   235
  f name more_atts (map (apfst single) th_atts);
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   236
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   237
fun have_lemss name atts = PureThy.have_thmss name (atts @ [Drule.tag_lemma]);
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   238
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   239
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   240
fun apply_theorems th_srcs = global_have_thmss PureThy.have_thmss ((None, []), th_srcs);
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   241
fun apply_theorems_i th_srcs = gen_have_thmss_i PureThy.have_thmss ((None, []), th_srcs);
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   242
val have_theorems = #1 oo (global_have_thmss (PureThy.have_thmss o Some) o Comment.ignore);
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   243
val have_theorems_i = #1 oo (gen_have_thmss_i (PureThy.have_thmss o Some) o Comment.ignore);
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   244
val have_lemmas = #1 oo (global_have_thmss (have_lemss o Some) o Comment.ignore);
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   245
val have_lemmas_i = #1 oo (gen_have_thmss_i (have_lemss o Some) o Comment.ignore);
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   246
val have_facts = ProofHistory.apply o local_have_thmss (Proof.have_thmss []) o Comment.ignore;
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   247
val have_facts_i = ProofHistory.apply o gen_have_thmss_i (Proof.have_thmss []) o Comment.ignore;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   248
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   249
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   250
(* forward chaining *)
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   251
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   252
fun gen_from_facts f = ProofHistory.apply o (Proof.chain oo curry f ("", []));
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   253
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   254
fun add_thmss name atts ths_atts state =
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   255
  Proof.have_thmss (Proof.the_facts state) name atts ths_atts state;
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   256
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   257
val from_facts = gen_from_facts (local_have_thmss (Proof.have_thmss [])) o Comment.ignore;
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   258
val from_facts_i = gen_from_facts (gen_have_thmss_i (Proof.have_thmss [])) o Comment.ignore;
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   259
val with_facts = gen_from_facts (local_have_thmss add_thmss) o Comment.ignore;
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   260
val with_facts_i = gen_from_facts (gen_have_thmss_i add_thmss) o Comment.ignore;
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   261
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   262
fun chain comment_ignore = ProofHistory.apply Proof.chain;
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   263
fun export_chain comment_ignore = ProofHistory.applys Proof.export_chain;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   264
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   265
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   266
(* context *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   267
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   268
val fix = ProofHistory.apply o Proof.fix o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   269
val fix_i = ProofHistory.apply o Proof.fix_i o Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   270
val match_bind = ProofHistory.apply o Proof.match_bind o map Comment.ignore;
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   271
val match_bind_i = ProofHistory.apply o Proof.match_bind_i o map Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   272
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   273
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   274
(* statements *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   275
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   276
fun global_statement f (name, src, s) int thy =
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   277
  ProofHistory.init (Toplevel.undo_limit int)
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   278
    (f name (map (Attrib.global_attribute thy) src) s thy);
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   279
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   280
fun global_statement_i f (name, atts, t) int thy =
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   281
  ProofHistory.init (Toplevel.undo_limit int) (f name atts t thy);
6501
392333eb31cb added thus, hence;
wenzelm
parents: 6483
diff changeset
   282
6904
4125d6b6d8f9 removed proof history nesting commands (not useful);
wenzelm
parents: 6890
diff changeset
   283
fun local_statement f g (name, src, s) = ProofHistory.apply (fn state =>
6501
392333eb31cb added thus, hence;
wenzelm
parents: 6483
diff changeset
   284
  f name (map (Attrib.local_attribute (Proof.theory_of state)) src) s (g state));
6371
8469852acbc0 added '_i' versions;
wenzelm
parents: 6354
diff changeset
   285
6904
4125d6b6d8f9 removed proof history nesting commands (not useful);
wenzelm
parents: 6890
diff changeset
   286
fun local_statement_i f g (name, atts, t) = ProofHistory.apply (f name atts t o g);
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   287
6952
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   288
val theorem     = global_statement Proof.theorem o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   289
val theorem_i   = global_statement_i Proof.theorem_i o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   290
val lemma       = global_statement Proof.lemma o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   291
val lemma_i     = global_statement_i Proof.lemma_i o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   292
val assume      = local_statement Proof.assume I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   293
val assume_i    = local_statement_i Proof.assume_i I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   294
val presume     = local_statement Proof.presume I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   295
val presume_i   = local_statement_i Proof.presume_i I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   296
val local_def   = local_statement LocalDefs.def I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   297
val local_def_i = local_statement LocalDefs.def_i I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   298
val show        = local_statement Proof.show I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   299
val show_i      = local_statement_i Proof.show_i I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   300
val have        = local_statement Proof.have I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   301
val have_i      = local_statement_i Proof.have_i I o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   302
val thus        = local_statement Proof.show Proof.chain o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   303
val thus_i      = local_statement_i Proof.show_i Proof.chain o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   304
val hence       = local_statement Proof.have Proof.chain o Comment.ignore;
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   305
val hence_i     = local_statement_i Proof.have_i Proof.chain o Comment.ignore;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   306
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   307
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   308
(* blocks *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   309
6904
4125d6b6d8f9 removed proof history nesting commands (not useful);
wenzelm
parents: 6890
diff changeset
   310
val begin_block = ProofHistory.apply Proof.begin_block;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   311
val next_block = ProofHistory.apply Proof.next_block;
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   312
val end_block = ProofHistory.applys Proof.end_block;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   313
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   314
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   315
(* backward steps *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   316
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   317
val tac = ProofHistory.applys o Method.tac;
5882
c8096461f5c8 renamed tac / etac to refine / then_refine;
wenzelm
parents: 5830
diff changeset
   318
val then_tac = ProofHistory.applys o Method.then_tac;
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   319
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   320
val proof = ProofHistory.applys o Method.proof o
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   321
  apsome Comment.ignore_interest o Comment.ignore_interest' o Comment.ignore;
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   322
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   323
6732
cf9f66ca9ee3 local qeds: pass cond_print_result;
wenzelm
parents: 6728
diff changeset
   324
(* print result *)
cf9f66ca9ee3 local qeds: pass cond_print_result;
wenzelm
parents: 6728
diff changeset
   325
cf9f66ca9ee3 local qeds: pass cond_print_result;
wenzelm
parents: 6728
diff changeset
   326
fun pretty_result {kind, name, thm} =
6986
82a4ac9c6b03 local qeds: print rule;
wenzelm
parents: 6952
diff changeset
   327
  Pretty.block [Pretty.str (kind ^ " " ^ name ^ ":"), Pretty.fbrk, Proof.pretty_thm thm];
82a4ac9c6b03 local qeds: print rule;
wenzelm
parents: 6952
diff changeset
   328
82a4ac9c6b03 local qeds: print rule;
wenzelm
parents: 6952
diff changeset
   329
fun pretty_rule thm =
82a4ac9c6b03 local qeds: print rule;
wenzelm
parents: 6952
diff changeset
   330
  Pretty.block [Pretty.str "solving goal by rule:", Pretty.fbrk, Proof.pretty_thm thm];
6732
cf9f66ca9ee3 local qeds: pass cond_print_result;
wenzelm
parents: 6728
diff changeset
   331
cf9f66ca9ee3 local qeds: pass cond_print_result;
wenzelm
parents: 6728
diff changeset
   332
val print_result = Pretty.writeln o pretty_result;
cf9f66ca9ee3 local qeds: pass cond_print_result;
wenzelm
parents: 6728
diff changeset
   333
6986
82a4ac9c6b03 local qeds: print rule;
wenzelm
parents: 6952
diff changeset
   334
fun cond_print_result_rule int =
82a4ac9c6b03 local qeds: print rule;
wenzelm
parents: 6952
diff changeset
   335
  if int then (print_result, Pretty.writeln o pretty_rule)
82a4ac9c6b03 local qeds: print rule;
wenzelm
parents: 6952
diff changeset
   336
  else (K (), K ());
82a4ac9c6b03 local qeds: print rule;
wenzelm
parents: 6952
diff changeset
   337
82a4ac9c6b03 local qeds: print rule;
wenzelm
parents: 6952
diff changeset
   338
fun proof'' f = Toplevel.proof' (f o cond_print_result_rule);
6732
cf9f66ca9ee3 local qeds: pass cond_print_result;
wenzelm
parents: 6728
diff changeset
   339
cf9f66ca9ee3 local qeds: pass cond_print_result;
wenzelm
parents: 6728
diff changeset
   340
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   341
(* local endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   342
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   343
val local_qed =
6904
4125d6b6d8f9 removed proof history nesting commands (not useful);
wenzelm
parents: 6890
diff changeset
   344
  proof'' o (ProofHistory.applys oo Method.local_qed) o apsome Comment.ignore_interest;
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   345
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   346
fun ignore_interests (x, y) = (Comment.ignore_interest x, apsome Comment.ignore_interest y);
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   347
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   348
val local_terminal_proof =
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   349
  proof'' o (ProofHistory.applys oo Method.local_terminal_proof) o ignore_interests;
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   350
6904
4125d6b6d8f9 removed proof history nesting commands (not useful);
wenzelm
parents: 6890
diff changeset
   351
val local_immediate_proof = proof'' (ProofHistory.applys o Method.local_immediate_proof);
4125d6b6d8f9 removed proof history nesting commands (not useful);
wenzelm
parents: 6890
diff changeset
   352
val local_default_proof = proof'' (ProofHistory.applys o Method.local_default_proof);
4125d6b6d8f9 removed proof history nesting commands (not useful);
wenzelm
parents: 6890
diff changeset
   353
val local_skip_proof = proof'' (ProofHistory.applys o SkipProof.local_skip_proof);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   354
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   355
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   356
(* global endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   357
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   358
val kill_proof = Proof.theory_of o ProofHistory.current;
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   359
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   360
fun global_result finish = Toplevel.proof_to_theory (fn prf =>
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   361
  let
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   362
    val state = ProofHistory.current prf;
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   363
    val _ = if Proof.at_bottom state then () else raise Toplevel.UNDEF;
6732
cf9f66ca9ee3 local qeds: pass cond_print_result;
wenzelm
parents: 6728
diff changeset
   364
    val (thy, res) = finish state;
cf9f66ca9ee3 local qeds: pass cond_print_result;
wenzelm
parents: 6728
diff changeset
   365
  in print_result res; thy end);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   366
6952
0f7e8d42902b added local_def(_i);
wenzelm
parents: 6937
diff changeset
   367
val global_qed = global_result o Method.global_qed o apsome Comment.ignore_interest;
6937
d9e3e2b30bee added export_chain;
wenzelm
parents: 6904
diff changeset
   368
val global_terminal_proof = global_result o Method.global_terminal_proof o ignore_interests;
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   369
val global_immediate_proof = global_result Method.global_immediate_proof;
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   370
val global_default_proof = global_result Method.global_default_proof;
6888
d0c68ebdabc5 skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents: 6885
diff changeset
   371
val global_skip_proof = global_result SkipProof.global_skip_proof;
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   372
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   373
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   374
(* common endings *)
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6371
diff changeset
   375
7002
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   376
fun qed (meth, comment) = local_qed meth o global_qed meth;
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   377
fun terminal_proof (meths, comment) = local_terminal_proof meths o global_terminal_proof meths;
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   378
fun immediate_proof comment = local_immediate_proof o global_immediate_proof;
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   379
fun default_proof comment = local_default_proof o global_default_proof;
01a4e15ee253 more marg_comments;
wenzelm
parents: 6986
diff changeset
   380
fun skip_proof comment = local_skip_proof o global_skip_proof;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   381
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   382
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   383
(* calculational proof commands *)
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   384
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   385
local
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   386
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   387
fun cond_print_calc int thm =
6986
82a4ac9c6b03 local qeds: print rule;
wenzelm
parents: 6952
diff changeset
   388
  if int then Pretty.writeln (Pretty.big_list "calculation:" [Proof.pretty_thm thm])
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   389
  else ();
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   390
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   391
fun proof''' f = Toplevel.proof' (f o cond_print_calc);
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   392
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   393
fun gen_calc get f (args, _) prt state =
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   394
  f (apsome (fn (srcs, _) => get srcs state) args) prt state;
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   395
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   396
in
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   397
7012
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   398
fun get_thmss srcs = Proof.the_facts o local_have_thmss (Proof.have_thmss []) (("", []), srcs); 
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   399
fun get_thmss_i thms _ = thms;
ae9dac5af9d1 improved print_thms;
wenzelm
parents: 7002
diff changeset
   400
6879
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   401
fun also x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.also x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   402
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
   403
fun finally x = proof''' (ProofHistory.applys o gen_calc get_thmss Calculation.finally x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   404
fun finally_i x = proof''' (ProofHistory.applys o gen_calc get_thmss_i Calculation.finally x);
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   405
70f8c0c34b8d added with_facts(_i);
wenzelm
parents: 6850
diff changeset
   406
end;
6774
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   407
dec73900168b added also, finally;
wenzelm
parents: 6732
diff changeset
   408
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   409
(* use ML text *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   410
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   411
fun use_mltext txt opt_thy = #2 (Context.pass opt_thy (use_text false) txt);
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   412
fun use_mltext_theory txt thy = #2 (Context.pass_theory thy (use_text false) txt);
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   413
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   414
fun use_context txt = use_mltext_theory ("Context.>> (" ^ txt ^ ");");
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   415
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   416
fun use_let name body txt =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   417
  use_context ("let val " ^ name ^ " = " ^ txt ^ " in\n" ^ body ^ " end");
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   418
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   419
val use_setup =
5915
66f4bde4c6e7 added have_theorems, have_lemmas, have_facts;
wenzelm
parents: 5882
diff changeset
   420
  use_let "setup: (theory -> theory) list" "Library.apply setup";
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   421
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   422
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   423
(* translation functions *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   424
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   425
val parse_ast_translation =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   426
  use_let "parse_ast_translation: (string * (Syntax.ast list -> Syntax.ast)) list"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   427
    "Theory.add_trfuns (parse_ast_translation, [], [], [])";
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   428
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   429
val parse_translation =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   430
  use_let "parse_translation: (string * (term list -> term)) list"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   431
    "Theory.add_trfuns ([], parse_translation, [], [])";
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   432
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   433
val print_translation =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   434
  use_let "print_translation: (string * (term list -> term)) list"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   435
    "Theory.add_trfuns ([], [], print_translation, [])";
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   436
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   437
val print_ast_translation =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   438
  use_let "print_ast_translation: (string * (Syntax.ast list -> Syntax.ast)) list"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   439
    "Theory.add_trfuns ([], [], [], print_ast_translation)";
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   440
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   441
val typed_print_translation =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   442
  use_let "typed_print_translation: (string * (bool -> typ -> term list -> term)) list"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   443
    "Theory.add_trfunsT typed_print_translation";
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   444
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   445
val token_translation =
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   446
  use_let "token_translation: (string * string * (string -> string * int)) list"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   447
    "Theory.add_tokentrfuns token_translation";
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   448
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   449
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   450
(* add_oracle *)
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   451
6728
b51b25db7bc6 added formal comment arguments almost everywhere (still ignored);
wenzelm
parents: 6688
diff changeset
   452
fun add_oracle ((name, txt), comment_ignore) =
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   453
  use_let
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   454
    "oracle: bstring * (Sign.sg * Object.T -> term)"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   455
    "Theory.add_oracle oracle"
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   456
    ("(" ^ quote name ^ ", " ^ txt ^ ")");
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   457
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   458
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   459
(* theory init and exit *)
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   460
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   461
fun begin_theory name parents files =
6266
a5f9fa6b6d7c Context.fetch, Context.setmp;
wenzelm
parents: 6253
diff changeset
   462
  let
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   463
    val paths = map (apfst Path.unpack) files;
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   464
    val thy = ThyInfo.begin_theory name parents paths;
6650
808a3d9e2404 Present.begin_theory now needs an additional argument of type
berghofe
parents: 6552
diff changeset
   465
  in Present.begin_theory name parents paths thy end;
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   466
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   467
fun end_theory thy =
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   468
  (Present.end_theory (PureThy.get_name thy); ThyInfo.end_theory thy);
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   469
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   470
fun kill_theory thy = ThyInfo.remove_thy (PureThy.get_name thy);
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   471
7103
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   472
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   473
fun bg_theory (name, parents, files) int =
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   474
  (if int then seq ThyInfo.update_thy parents else ();   (*FIXME robust!? *)
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   475
    begin_theory name parents files);
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   476
6331
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   477
fun en_theory thy = (end_theory thy; ());
fb7b8d6c2bd1 begin/end_theory: presentation;
wenzelm
parents: 6266
diff changeset
   478
6688
f33c89103fb4 cleaned comments;
wenzelm
parents: 6650
diff changeset
   479
fun theory spec = Toplevel.init_theory (bg_theory spec) en_theory kill_theory;
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   480
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   481
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   482
(* context switch *)
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   483
7103
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   484
fun context name =
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   485
  Toplevel.init_theory (fn _ => (the (#2 (Context.pass None ThyInfo.update_thy name))))
1c44df10a7bc removed update_context;
wenzelm
parents: 7012
diff changeset
   486
  (K ()) (K ());
6246
0aa2e536bc20 improved theory, context, update_context;
wenzelm
parents: 6198
diff changeset
   487
5830
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   488
95b619c7289b Derived theory operations.
wenzelm
parents:
diff changeset
   489
end;