src/Pure/goal.ML
author wenzelm
Sat, 04 Mar 2006 21:10:08 +0100
changeset 19184 3e30297e1300
parent 18678 dd0c569fa43d
child 19191 56cda3ec2ef8
permissions -rw-r--r--
added extract, retrofit;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/goal.ML
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
     3
    Author:     Makarius and Lawrence C Paulson
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
     4
18139
wenzelm
parents: 18119
diff changeset
     5
Goals in tactical theorem proving.
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
     6
*)
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
     7
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
     8
signature BASIC_GOAL =
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
     9
sig
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    10
  val SELECT_GOAL: tactic -> int -> tactic
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    11
end;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    12
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    13
signature GOAL =
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    14
sig
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    15
  include BASIC_GOAL
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    16
  val init: cterm -> thm
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    17
  val protect: thm -> thm
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    18
  val conclude: thm -> thm
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    19
  val finish: thm -> thm
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    20
  val norm_hhf: thm -> thm
18252
9e2c15ae0e86 tuned names;
wenzelm
parents: 18207
diff changeset
    21
  val norm_hhf_protect: thm -> thm
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    22
  val compose_hhf: thm -> int -> thm -> thm Seq.seq
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    23
  val compose_hhf_tac: thm -> int -> tactic
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    24
  val comp_hhf: thm -> thm -> thm
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    25
  val prove_multi: theory -> string list -> term list -> term list ->
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    26
    (thm list -> tactic) -> thm list
18139
wenzelm
parents: 18119
diff changeset
    27
  val prove: theory -> string list -> term list -> term -> (thm list -> tactic) -> thm
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    28
  val prove_raw: cterm list -> cterm -> (thm list -> tactic) -> thm
19184
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
    29
  val extract: int -> int -> thm -> thm Seq.seq
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
    30
  val retrofit: int -> int -> thm -> thm -> thm Seq.seq
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    31
end;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    32
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    33
structure Goal: GOAL =
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    34
struct
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    35
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    36
(** goals **)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    37
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    38
(*
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    39
  -------- (init)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    40
  C ==> #C
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    41
*)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    42
fun init ct = Drule.instantiate' [] [SOME ct] Drule.protectI;
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    43
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    44
(*
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    45
   C
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    46
  --- (protect)
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    47
  #C
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    48
*)
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    49
fun protect th = th COMP Drule.incr_indexes th Drule.protectI;
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    50
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    51
(*
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    52
  A ==> ... ==> #C
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    53
  ---------------- (conclude)
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    54
  A ==> ... ==> C
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    55
*)
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    56
fun conclude th =
18497
7569674d7bb1 Thm.compose_no_flatten;
wenzelm
parents: 18484
diff changeset
    57
  (case SINGLE (Thm.compose_no_flatten false (th, Thm.nprems_of th) 1)
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    58
      (Drule.incr_indexes th Drule.protectD) of
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    59
    SOME th' => th'
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    60
  | NONE => raise THM ("Failed to conclude goal", 0, [th]));
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    61
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    62
(*
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    63
  #C
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    64
  --- (finish)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    65
   C
17983
wenzelm
parents: 17980
diff changeset
    66
*)
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    67
fun finish th =
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    68
  (case Thm.nprems_of th of
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    69
    0 => conclude th
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    70
  | n => raise THM ("Proof failed.\n" ^
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    71
      Pretty.string_of (Pretty.chunks (Display.pretty_goals n th)) ^
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    72
      ("\n" ^ string_of_int n ^ " unsolved goal(s)!"), 0, [th]));
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    73
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    74
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    75
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    76
(** results **)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    77
18207
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    78
(* HHF normal form: !! before ==>, outermost !! generalized *)
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    79
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    80
local
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    81
18207
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    82
fun gen_norm_hhf ss =
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    83
  (not o Drule.is_norm_hhf o Thm.prop_of) ?
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    84
    Drule.fconv_rule (MetaSimplifier.rewrite_cterm (true, false, false) (K (K NONE)) ss)
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    85
  #> Thm.adjust_maxidx_thm
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    86
  #> Drule.gen_all;
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    87
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    88
val ss =
18180
db712213504d norm_hhf: no normalization of protected props;
wenzelm
parents: 18145
diff changeset
    89
  MetaSimplifier.theory_context ProtoPure.thy MetaSimplifier.empty_ss
db712213504d norm_hhf: no normalization of protected props;
wenzelm
parents: 18145
diff changeset
    90
    addsimps [Drule.norm_hhf_eq];
db712213504d norm_hhf: no normalization of protected props;
wenzelm
parents: 18145
diff changeset
    91
18207
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    92
in
18180
db712213504d norm_hhf: no normalization of protected props;
wenzelm
parents: 18145
diff changeset
    93
18207
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    94
val norm_hhf = gen_norm_hhf ss;
18252
9e2c15ae0e86 tuned names;
wenzelm
parents: 18207
diff changeset
    95
val norm_hhf_protect = gen_norm_hhf (ss addeqcongs [Drule.protect_cong]);
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    96
18207
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
    97
end;
18180
db712213504d norm_hhf: no normalization of protected props;
wenzelm
parents: 18145
diff changeset
    98
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    99
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   100
(* composition of normal results *)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   101
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   102
fun compose_hhf tha i thb =
18145
6757627acf59 renamed Thm.cgoal_of to Thm.cprem_of;
wenzelm
parents: 18139
diff changeset
   103
  Thm.bicompose false (false, Drule.lift_all (Thm.cprem_of thb i) tha, 0) i thb;
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   104
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   105
fun compose_hhf_tac th i = PRIMSEQ (compose_hhf th i);
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   106
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   107
fun comp_hhf tha thb =
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   108
  (case Seq.chop (2, compose_hhf tha 1 thb) of
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   109
    ([th], _) => th
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   110
  | ([], _) => raise THM ("comp_hhf: no unifiers", 1, [tha, thb])
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   111
  | _  => raise THM ("comp_hhf: multiple unifiers", 1, [tha, thb]));
17986
0450847646c3 prove_raw: cterms, explicit asms;
wenzelm
parents: 17983
diff changeset
   112
0450847646c3 prove_raw: cterms, explicit asms;
wenzelm
parents: 17983
diff changeset
   113
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   114
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   115
(** tactical theorem proving **)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   116
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   117
(* prove_multi *)
17986
0450847646c3 prove_raw: cterms, explicit asms;
wenzelm
parents: 17983
diff changeset
   118
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   119
fun prove_multi thy xs asms props tac =
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   120
  let
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   121
    val prop = Logic.mk_conjunction_list props;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   122
    val statement = Logic.list_implies (asms, prop);
18139
wenzelm
parents: 18119
diff changeset
   123
    val frees = Term.add_frees statement [];
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   124
    val fixed_frees = filter_out (member (op =) xs o #1) frees;
18139
wenzelm
parents: 18119
diff changeset
   125
    val fixed_tfrees = fold (Term.add_tfreesT o #2) fixed_frees [];
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   126
    val params = List.mapPartial (fn x => Option.map (pair x) (AList.lookup (op =) frees x)) xs;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   127
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18497
diff changeset
   128
    fun err msg = cat_error msg
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18497
diff changeset
   129
      ("The error(s) above occurred for the goal statement:\n" ^
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   130
        Sign.string_of_term thy (Term.list_all_free (params, statement)));
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   131
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   132
    fun cert_safe t = Thm.cterm_of thy (Envir.beta_norm t)
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   133
      handle TERM (msg, _) => err msg | TYPE (msg, _, _) => err msg;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   134
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   135
    val _ = cert_safe statement;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   136
    val _ = Term.no_dummy_patterns statement handle TERM (msg, _) => err msg;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   137
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   138
    val cparams = map (cert_safe o Free) params;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   139
    val casms = map cert_safe asms;
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   140
    val prems = map (norm_hhf o Thm.assume) casms;
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   141
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   142
    val goal = init (cert_safe prop);
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   143
    val goal' = case SINGLE (tac prems) goal of SOME goal' => goal' | _ => err "Tactic failed.";
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   144
    val raw_result = finish goal' handle THM (msg, _, _) => err msg;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   145
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   146
    val prop' = Thm.prop_of raw_result;
17986
0450847646c3 prove_raw: cterms, explicit asms;
wenzelm
parents: 17983
diff changeset
   147
    val _ = conditional (not (Pattern.matches thy (Envir.beta_norm prop, prop'))) (fn () =>
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   148
      err ("Proved a different theorem: " ^ Sign.string_of_term thy prop'));
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   149
  in
18497
7569674d7bb1 Thm.compose_no_flatten;
wenzelm
parents: 18484
diff changeset
   150
    hd (Drule.conj_elim_precise [length props] raw_result)
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   151
    |> map
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   152
      (Drule.implies_intr_list casms
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   153
        #> Drule.forall_intr_list cparams
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   154
        #> norm_hhf
18139
wenzelm
parents: 18119
diff changeset
   155
        #> Thm.varifyT' fixed_tfrees
wenzelm
parents: 18119
diff changeset
   156
        #-> K Drule.zero_var_indexes)
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   157
  end;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   158
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   159
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   160
(* prove *)
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   161
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   162
fun prove thy xs asms prop tac = hd (prove_multi thy xs asms [prop] tac);
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   163
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   164
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   165
(* prove_raw -- no checks, no normalization of result! *)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   166
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   167
fun prove_raw casms cprop tac =
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   168
  (case SINGLE (tac (map (norm_hhf o Thm.assume) casms)) (init cprop) of
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   169
    SOME th => Drule.implies_intr_list casms (finish th)
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18497
diff changeset
   170
  | NONE => error "Tactic failed.");
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   171
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   172
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   173
19184
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   174
(** local goal states **)
18207
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
   175
19184
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   176
fun extract i n st =
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   177
  (if i < 1 orelse n < 1 orelse i + n - 1 > Thm.nprems_of st then Seq.empty
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   178
   else if n = 1 then Seq.single (Thm.cprem_of st i)
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   179
   else Seq.single (foldr1 Drule.mk_conjunction (map (Thm.cprem_of st) (i upto (i + n - 1)))))
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   180
  |> Seq.map (Thm.adjust_maxidx #> init);
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   181
19184
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   182
fun retrofit i n st' =
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   183
  (if n = 1 then I
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   184
   else Drule.rotate_prems (i - 1) #> Drule.conj_uncurry n #> Drule.rotate_prems (1 - i))
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   185
  #> Thm.compose_no_flatten false (conclude st', Thm.nprems_of st') i;
18207
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
   186
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   187
fun SELECT_GOAL tac i st =
19184
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   188
  if Thm.nprems_of st = 1 then tac st
3e30297e1300 added extract, retrofit;
wenzelm
parents: 18678
diff changeset
   189
  else Seq.lifts (retrofit i 1) (Seq.maps tac (extract i 1 st)) st;
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   190
18207
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
   191
end;
9edbeda7e39a tuned norm_hhf_protected;
wenzelm
parents: 18180
diff changeset
   192
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   193
structure BasicGoal: BASIC_GOAL = Goal;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   194
open BasicGoal;