src/Pure/Isar/theory_target.ML
author wenzelm
Tue, 12 Dec 2006 20:49:31 +0100
changeset 21804 515499542d84
parent 21761 d4fd9bb0ccd6
child 21808 be0a6e6905d9
permissions -rw-r--r--
removed is_class -- handled internally; begin: is_class argument; added fork_mixfix; abbrev/defs: internal_abbrev produces hypothetical term;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/theory_target.ML
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     3
    Author:     Makarius
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     4
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
     5
Common theory/locale targets.
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     6
*)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     7
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     8
signature THEORY_TARGET =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     9
sig
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    10
  val peek: local_theory -> string option
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    11
  val fork_mixfix: bool -> bool -> mixfix -> mixfix * mixfix
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    12
  val begin: bool -> bstring -> Proof.context -> local_theory
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    13
  val init: xstring option -> theory -> local_theory
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    14
  val init_i: string option -> theory -> local_theory
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    15
end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    16
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    17
structure TheoryTarget: THEORY_TARGET =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    18
struct
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    19
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    20
(** locale targets **)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    21
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    22
(* context data *)
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    23
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    24
structure Data = ProofDataFun
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    25
(
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    26
  val name = "Isar/theory_target";
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    27
  type T = string option;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    28
  fun init _ = NONE;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    29
  fun print _ _ = ();
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    30
);
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    31
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    32
val _ = Context.add_setup Data.init;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    33
val peek = Data.get;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    34
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    35
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    36
(* pretty *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    37
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    38
fun pretty loc ctxt =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    39
  let
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    40
    val thy = ProofContext.theory_of ctxt;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    41
    val fixes = map (fn (x, T) => (x, SOME T, NoSyn)) (#1 (ProofContext.inferred_fixes ctxt));
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
    42
    val assumes = map (fn A => (("", []), [(A, [])])) (map Thm.term_of (Assumption.assms_of ctxt));
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    43
    val elems =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    44
      (if null fixes then [] else [Element.Fixes fixes]) @
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    45
      (if null assumes then [] else [Element.Assumes assumes]);
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    46
  in
20984
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    47
    if loc = "" then
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    48
      [Pretty.block
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    49
        [Pretty.str "theory", Pretty.brk 1, Pretty.str (Context.theory_name thy),
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    50
          Pretty.str " =", Pretty.brk 1, ThyInfo.pretty_theory thy]]
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    51
    else if null elems then [Pretty.str ("locale " ^ Locale.extern thy loc)]
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    52
    else
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    53
      [Pretty.big_list ("locale " ^ Locale.extern thy loc ^ " =")
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    54
        (map (Pretty.chunks o Element.pretty_ctxt ctxt) elems)]
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    55
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    56
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    57
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    58
(* consts *)
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    59
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    60
fun fork_mixfix is_class is_loc mx =
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    61
  let
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    62
    val mx' = Syntax.unlocalize_mixfix mx;
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    63
    val mx1 = if is_class orelse (is_loc andalso mx = mx') then NoSyn else mx';
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    64
    val mx2 = if is_loc then mx else NoSyn;
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    65
  in (mx1, mx2) end;
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    66
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    67
fun internal_abbrev ((c, mx), t) =
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    68
  LocalTheory.term_syntax (ProofContext.target_abbrev Syntax.internal_mode ((c, mx), t)) #>
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    69
  ProofContext.add_abbrev (#1 Syntax.internal_mode) (c, t) #> snd;
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    70
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    71
fun consts is_class is_loc depends decls lthy =
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    72
  let
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    73
    val xs = filter depends (#1 (ProofContext.inferred_fixes (LocalTheory.target_of lthy)));
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
    74
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    75
    fun const ((c, T), mx) thy =
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    76
      let
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    77
        val U = map #2 xs ---> T;
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    78
        val t = Term.list_comb (Const (Sign.full_name thy c, U), map Free xs);
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    79
        val (mx1, mx2) = fork_mixfix is_class is_loc mx;
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    80
        val thy' = Sign.add_consts_authentic [(c, U, mx1)] thy;
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    81
      in (((c, mx2), t), thy') end;
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    82
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    83
    val (abbrs, lthy') = lthy |> LocalTheory.theory_result (fold_map const decls);
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    84
    val defs = map (apsnd (pair ("", []))) abbrs;
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    85
  in
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    86
    lthy'
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    87
    |> is_loc ? fold internal_abbrev abbrs
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    88
    |> LocalDefs.add_defs defs |>> map (apsnd snd)
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    89
  end;
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    90
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    91
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    92
(* abbrev *)
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
    93
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
    94
fun occ_params ctxt ts =
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
    95
  #1 (ProofContext.inferred_fixes ctxt)
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
    96
  |> filter (member (op =) (fold (Variable.add_fixed ctxt) ts []));
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
    97
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
    98
fun abbrev is_class is_loc prmode ((raw_c, mx), raw_t) lthy =
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
    99
  let
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   100
    val thy_ctxt = ProofContext.init (ProofContext.theory_of lthy);
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   101
    val target = LocalTheory.target_of lthy;
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   102
    val target_morphism = LocalTheory.target_morphism lthy;
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   103
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   104
    val c = Morphism.name target_morphism raw_c;
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   105
    val t = Morphism.term target_morphism raw_t;
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   106
    val xs = map Free (occ_params target [t]);
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   107
    val u = fold_rev Term.lambda xs t;
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   108
    val U = Term.fastype_of u;
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   109
    val u' = singleton (Variable.export_terms (Variable.declare_term u target) thy_ctxt) u;
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   110
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   111
    val ((lhs as Const (full_c, _), rhs), lthy1) = lthy
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   112
      |> LocalTheory.theory_result (Sign.add_abbrev (#1 prmode) (c, u'));
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   113
    val (mx1, mx2) = fork_mixfix is_class is_loc mx;
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   114
  in
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   115
    lthy1
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   116
    |> LocalTheory.theory (Sign.add_notation prmode [(lhs, mx1)])
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   117
    |> is_loc ? internal_abbrev ((c, mx2), Term.list_comb (Const (full_c, U), xs))
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   118
    |> ProofContext.local_abbrev (c, rhs)
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   119
  end;
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   120
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   121
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   122
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   123
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   124
(* defs *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   125
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   126
local
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   127
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   128
infix also;
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   129
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   130
fun eq1 also eq2 =
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   131
  eq2 COMP (eq1 COMP (Drule.incr_indexes2 eq1 eq2 transitive_thm));
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   132
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   133
fun expand_term ctxt t =
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   134
  let
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   135
    val thy = ProofContext.theory_of ctxt;
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   136
    val thy_ctxt = ProofContext.init thy;
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   137
    val ct = Thm.cterm_of thy t;
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   138
    val (defs, ct') = LocalDefs.export ctxt thy_ctxt (Drule.mk_term ct) ||> Drule.dest_term;
21708
45e7491bea47 reorganized structure Tactic vs. MetaSimplifier;
wenzelm
parents: 21691
diff changeset
   139
  in (Thm.term_of ct', MetaSimplifier.rewrite true defs ct) end;
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   140
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   141
fun add_def (name, prop) =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   142
  Theory.add_defs_i false false [(name, prop)] #>
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   143
  (fn thy => (Drule.unvarify (Thm.get_axiom_i thy (Sign.full_name thy name)), thy));
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   144
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   145
in
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   146
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   147
fun defs kind args lthy0 =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   148
  let
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   149
    fun def ((c, mx), ((name, atts), rhs)) lthy1 =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   150
      let
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   151
        val (rhs', rhs_conv) = expand_term lthy0 rhs;
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   152
        val xs = Variable.add_fixed (LocalTheory.target_of lthy0) rhs' [];
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   153
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   154
        val ([(lhs, lhs_def)], lthy2) = lthy1
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   155
          |> LocalTheory.consts (member (op =) xs) [((c, Term.fastype_of rhs), mx)];
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   156
        val lhs' = #2 (Logic.dest_equals (Thm.prop_of lhs_def));
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   157
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   158
        val name' = Thm.def_name_optional c name;
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   159
        val (def, lthy3) = lthy2
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   160
          |> LocalTheory.theory_result (add_def (name', Logic.mk_equals (lhs', rhs')));
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   161
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   162
        val eq =
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   163
          (*c == loc.c xs*) lhs_def
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   164
          (*lhs' == rhs'*)  also def
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   165
          (*rhs' == rhs*)   also Thm.symmetric rhs_conv;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   166
      in ((lhs, ((name', atts), [([eq], [])])), lthy3) end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   167
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   168
    val ((lhss, facts), lthy') = lthy0 |> fold_map def args |>> split_list;
21433
89104dca628e LocalTheory.axioms/notes/defs: proper kind;
wenzelm
parents: 21293
diff changeset
   169
    val (res, lthy'') = lthy' |> LocalTheory.notes kind facts;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   170
  in (lhss ~~ map (apsnd the_single) res, lthy'') end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   171
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   172
end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   173
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   174
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   175
(* axioms *)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   176
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   177
local
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   178
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   179
fun add_axiom hyps (name, prop) thy =
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   180
  let
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   181
    val name' = if name = "" then "axiom_" ^ serial_string () else name;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   182
    val prop' = Logic.list_implies (hyps, prop);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   183
    val thy' = thy |> Theory.add_axioms_i [(name', prop')];
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   184
    val axm = Drule.unvarify (Thm.get_axiom_i thy' (Sign.full_name thy' name'));
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   185
    val prems = map (Thm.assume o Thm.cterm_of thy') hyps;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   186
  in (Drule.implies_elim_list axm prems, thy') end;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   187
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   188
in
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   189
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   190
fun axioms kind specs lthy =
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   191
  let
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   192
    val hyps = map Thm.term_of (Assumption.assms_of lthy);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   193
    fun axiom ((name, atts), props) thy = thy
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   194
      |> fold_map (add_axiom hyps) (PureThy.name_multi name props)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   195
      |-> (fn ths => pair ((name, atts), [(ths, [])]));
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   196
  in
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   197
    lthy
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   198
    |> fold (fold Variable.declare_term o snd) specs
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   199
    |> LocalTheory.theory_result (fold_map axiom specs)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   200
    |-> LocalTheory.notes kind
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   201
  end;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   202
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   203
end;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   204
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   205
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   206
(* notes *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   207
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   208
fun import_export_proof ctxt (name, raw_th) =
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   209
  let
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   210
    val thy = ProofContext.theory_of ctxt;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   211
    val thy_ctxt = ProofContext.init thy;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   212
    val certT = Thm.ctyp_of thy;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   213
    val cert = Thm.cterm_of thy;
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   214
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   215
    (*export assumes/defines*)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   216
    val th = Goal.norm_result raw_th;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   217
    val (defs, th') = LocalDefs.export ctxt thy_ctxt th;
21708
45e7491bea47 reorganized structure Tactic vs. MetaSimplifier;
wenzelm
parents: 21691
diff changeset
   218
    val concl_conv = MetaSimplifier.rewrite true defs (Thm.cprop_of th);
45e7491bea47 reorganized structure Tactic vs. MetaSimplifier;
wenzelm
parents: 21691
diff changeset
   219
    val assms = map (MetaSimplifier.rewrite_rule defs o Thm.assume) (Assumption.assms_of ctxt);
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   220
    val nprems = Thm.nprems_of th' - Thm.nprems_of th;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   221
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   222
    (*export fixes*)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   223
    val tfrees = map TFree (Drule.fold_terms Term.add_tfrees th' []);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   224
    val frees = map Free (Drule.fold_terms Term.add_frees th' []);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   225
    val (th'' :: vs) = (th' :: map (Drule.mk_term o cert) (map Logic.mk_type tfrees @ frees))
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   226
      |> Variable.export ctxt thy_ctxt
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   227
      |> Drule.zero_var_indexes_list;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   228
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   229
    (*thm definition*)
21644
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   230
    val result = th''
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   231
      |> PureThy.name_thm true true ""
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   232
      |> Goal.close_result
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   233
      |> PureThy.name_thm true true name;
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   234
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   235
    (*import fixes*)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   236
    val (tvars, vars) =
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   237
      chop (length tfrees) (map (Thm.term_of o Drule.dest_term) vs)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   238
      |>> map Logic.dest_type;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   239
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   240
    val instT = map_filter (fn (TVar v, T) => SOME (v, T) | _ => NONE) (tvars ~~ tfrees);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   241
    val inst = filter (is_Var o fst) (vars ~~ frees);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   242
    val cinstT = map (pairself certT o apfst TVar) instT;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   243
    val cinst = map (pairself (cert o Term.map_types (TermSubst.instantiateT instT))) inst;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   244
    val result' = Thm.instantiate (cinstT, cinst) result;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   245
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   246
    (*import assumes/defines*)
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   247
    val assm_tac = FIRST' (map (fn assm => Tactic.compose_tac (false, assm, 0)) assms);
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   248
    val result'' =
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   249
      (case SINGLE (Seq.INTERVAL assm_tac 1 nprems) result' of
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   250
        NONE => raise THM ("Failed to re-import result", 0, [result'])
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   251
      | SOME res => res) COMP (concl_conv COMP_INCR Drule.equal_elim_rule2)
21644
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   252
      |> Goal.norm_result
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   253
      |> PureThy.name_thm false false name;
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   254
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   255
  in (result'', result) end;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   256
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   257
fun notes loc kind facts lthy =
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   258
  let
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   259
    val is_loc = loc <> "";
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   260
    val thy = ProofContext.theory_of lthy;
21615
1bd558879c44 notes: proper naming of thm proof, activated import_export_proof;
wenzelm
parents: 21613
diff changeset
   261
    val full = LocalTheory.full_name lthy;
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   262
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   263
    val facts' = facts
21615
1bd558879c44 notes: proper naming of thm proof, activated import_export_proof;
wenzelm
parents: 21613
diff changeset
   264
      |> map (fn (a, bs) => (a, PureThy.burrow_fact (PureThy.name_multi (full (fst a))) bs))
1bd558879c44 notes: proper naming of thm proof, activated import_export_proof;
wenzelm
parents: 21613
diff changeset
   265
      |> PureThy.map_facts (import_export_proof lthy);
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   266
    val local_facts = PureThy.map_facts #1 facts'
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   267
      |> Attrib.map_facts (Attrib.attribute_i thy);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   268
    val target_facts = PureThy.map_facts #1 facts'
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   269
      |> is_loc ? Element.facts_map (Element.morph_ctxt (LocalTheory.target_morphism lthy));
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   270
    val global_facts = PureThy.map_facts #2 facts'
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   271
      |> Attrib.map_facts (if is_loc then K I else Attrib.attribute_i thy);
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   272
  in
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   273
    lthy |> LocalTheory.theory
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   274
      (Sign.qualified_names
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   275
        #> PureThy.note_thmss_i kind global_facts #> snd
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   276
        #> Sign.restore_naming thy)
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   277
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   278
    |> is_loc ? LocalTheory.target (Locale.add_thmss loc kind target_facts)
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   279
21433
89104dca628e LocalTheory.axioms/notes/defs: proper kind;
wenzelm
parents: 21293
diff changeset
   280
    |> ProofContext.set_stmt true
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   281
    |> ProofContext.qualified_names
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   282
    |> ProofContext.note_thmss_i kind local_facts
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   283
    ||> ProofContext.restore_naming lthy
21433
89104dca628e LocalTheory.axioms/notes/defs: proper kind;
wenzelm
parents: 21293
diff changeset
   284
    ||> ProofContext.restore_stmt lthy
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   285
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   286
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   287
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   288
(* target declarations *)
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   289
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   290
fun target_decl _ "" f =
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   291
      LocalTheory.theory (Context.theory_map (f Morphism.identity)) #>
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   292
      LocalTheory.target (Context.proof_map (f Morphism.identity))
21668
2d811ae6752a target_name: allow qualified names;
wenzelm
parents: 21644
diff changeset
   293
  | target_decl add loc f = LocalTheory.target (add loc f);
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   294
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   295
val type_syntax = target_decl Locale.add_type_syntax;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   296
val term_syntax = target_decl Locale.add_term_syntax;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   297
val declaration = target_decl Locale.add_declaration;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   298
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   299
fun target_morphism loc lthy =
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   300
  ProofContext.export_morphism lthy (LocalTheory.target_of lthy) $>
21613
ae3bb930b50f notes: more careful treatment of Goal.close_result;
wenzelm
parents: 21611
diff changeset
   301
  Morphism.thm_morphism Goal.norm_result;
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   302
21668
2d811ae6752a target_name: allow qualified names;
wenzelm
parents: 21644
diff changeset
   303
fun target_name loc lthy =
2d811ae6752a target_name: allow qualified names;
wenzelm
parents: 21644
diff changeset
   304
  (if loc = "" then Sign.naming_of (ProofContext.theory_of lthy)
2d811ae6752a target_name: allow qualified names;
wenzelm
parents: 21644
diff changeset
   305
   else ProofContext.naming_of (LocalTheory.target_of lthy))
2d811ae6752a target_name: allow qualified names;
wenzelm
parents: 21644
diff changeset
   306
  |> NameSpace.qualified_names
2d811ae6752a target_name: allow qualified names;
wenzelm
parents: 21644
diff changeset
   307
  |> NameSpace.full;
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   308
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   309
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   310
(* init and exit *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   311
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   312
fun begin is_class loc =
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   313
  let val is_loc = loc <> "" in
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   314
    Data.put (if is_loc then SOME loc else NONE) #>
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   315
    LocalTheory.init (NameSpace.base loc)
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   316
     {pretty = pretty loc,
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   317
      consts = consts is_class is_loc,
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   318
      axioms = axioms,
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   319
      abbrev = abbrev is_class is_loc,
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   320
      defs = defs,
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   321
      notes = notes loc,
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   322
      type_syntax = type_syntax loc,
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   323
      term_syntax = term_syntax loc,
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   324
      declaration = declaration loc,
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   325
      target_morphism = target_morphism loc,
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   326
      target_name = target_name loc,
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   327
      reinit = fn _ =>
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   328
        begin is_class loc o (if is_loc then Locale.init loc else ProofContext.init),
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   329
      exit = LocalTheory.target_of}
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   330
  end;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   331
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   332
fun init_i NONE thy = begin false "" (ProofContext.init thy)
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   333
  | init_i (SOME loc) thy =
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   334
      begin (can (Sign.certify_class thy) loc)  (* FIXME approximation *)
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   335
        loc (Locale.init loc thy);
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   336
21276
2285cf5a7560 init: '-' refers to global context;
wenzelm
parents: 21037
diff changeset
   337
fun init (SOME "-") thy = init_i NONE thy
2285cf5a7560 init: '-' refers to global context;
wenzelm
parents: 21037
diff changeset
   338
  | init loc thy = init_i (Option.map (Locale.intern thy) loc) thy;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   339
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   340
end;