src/Pure/goal.ML
author wenzelm
Wed, 09 Nov 2005 16:26:54 +0100
changeset 18139 b15981aedb7b
parent 18119 63901a9b99dc
child 18145 6757627acf59
permissions -rw-r--r--
tuned;
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
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    21
  val compose_hhf: thm -> int -> thm -> thm Seq.seq
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    22
  val compose_hhf_tac: thm -> int -> tactic
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    23
  val comp_hhf: thm -> thm -> thm
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    24
  val prove_multi: theory -> string list -> term list -> term list ->
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    25
    (thm list -> tactic) -> thm list
18139
wenzelm
parents: 18119
diff changeset
    26
  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
    27
  val prove_raw: cterm list -> cterm -> (thm list -> tactic) -> thm
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    28
end;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    29
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    30
structure Goal: GOAL =
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    31
struct
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    32
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    33
(** goals **)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    34
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    35
(*
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    36
  -------- (init)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    37
  C ==> #C
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
fun init ct = Drule.instantiate' [] [SOME ct] Drule.protectI;
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    40
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    41
(*
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    42
   C
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    43
  --- (protect)
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    44
  #C
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    45
*)
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    46
fun protect th = th COMP Drule.incr_indexes th Drule.protectI;
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    47
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
  A ==> ... ==> #C
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    50
  ---------------- (conclude)
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    51
  A ==> ... ==> C
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    52
*)
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    53
fun conclude th =
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    54
  (case SINGLE (Thm.bicompose false (false, th, Thm.nprems_of th) 1)
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    55
      (Drule.incr_indexes th Drule.protectD) of
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    56
    SOME th' => th'
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    57
  | NONE => raise THM ("Failed to conclude goal", 0, [th]));
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    58
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    59
(*
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    60
  #C
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    61
  --- (finish)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    62
   C
17983
wenzelm
parents: 17980
diff changeset
    63
*)
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    64
fun finish th =
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    65
  (case Thm.nprems_of th of
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    66
    0 => conclude th
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    67
  | n => raise THM ("Proof failed.\n" ^
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    68
      Pretty.string_of (Pretty.chunks (Display.pretty_goals n th)) ^
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    69
      ("\n" ^ string_of_int n ^ " unsolved goal(s)!"), 0, [th]));
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    70
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    71
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    72
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    73
(** results **)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    74
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    75
(* HHF normal form *)
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    76
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    77
val norm_hhf =
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    78
  (not o Drule.is_norm_hhf o Thm.prop_of) ?
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    79
    MetaSimplifier.simplify_aux (K (K NONE)) true [Drule.norm_hhf_eq]
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    80
  #> Thm.adjust_maxidx_thm
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    81
  #> Drule.gen_all;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
    82
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    83
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    84
(* composition of normal results *)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    85
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    86
fun compose_hhf tha i thb =
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    87
  Thm.bicompose false (false, Drule.lift_all (Thm.cgoal_of thb i) tha, 0) i thb;
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    88
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    89
fun compose_hhf_tac th i = PRIMSEQ (compose_hhf th i);
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    90
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    91
fun comp_hhf tha thb =
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    92
  (case Seq.chop (2, compose_hhf tha 1 thb) of
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    93
    ([th], _) => th
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    94
  | ([], _) => raise THM ("comp_hhf: no unifiers", 1, [tha, thb])
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
    95
  | _  => raise THM ("comp_hhf: multiple unifiers", 1, [tha, thb]));
17986
0450847646c3 prove_raw: cterms, explicit asms;
wenzelm
parents: 17983
diff changeset
    96
0450847646c3 prove_raw: cterms, explicit asms;
wenzelm
parents: 17983
diff changeset
    97
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    98
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
    99
(** tactical theorem proving **)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   100
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   101
(* prove_multi *)
17986
0450847646c3 prove_raw: cterms, explicit asms;
wenzelm
parents: 17983
diff changeset
   102
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   103
fun prove_multi thy xs asms props tac =
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   104
  let
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   105
    val prop = Logic.mk_conjunction_list props;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   106
    val statement = Logic.list_implies (asms, prop);
18139
wenzelm
parents: 18119
diff changeset
   107
    val frees = Term.add_frees statement [];
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   108
    val fixed_frees = filter_out (member (op =) xs o #1) frees;
18139
wenzelm
parents: 18119
diff changeset
   109
    val fixed_tfrees = fold (Term.add_tfreesT o #2) fixed_frees [];
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   110
    val params = List.mapPartial (fn x => Option.map (pair x) (AList.lookup (op =) frees x)) xs;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   111
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   112
    fun err msg = raise ERROR_MESSAGE
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   113
      (msg ^ "\nThe error(s) above occurred for the goal statement:\n" ^
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   114
        Sign.string_of_term thy (Term.list_all_free (params, statement)));
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   115
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   116
    fun cert_safe t = Thm.cterm_of thy (Envir.beta_norm t)
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   117
      handle TERM (msg, _) => err msg | TYPE (msg, _, _) => err msg;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   118
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   119
    val _ = cert_safe statement;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   120
    val _ = Term.no_dummy_patterns statement handle TERM (msg, _) => err msg;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   121
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   122
    val cparams = map (cert_safe o Free) params;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   123
    val casms = map cert_safe asms;
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   124
    val prems = map (norm_hhf o Thm.assume) casms;
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   125
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   126
    val goal = init (cert_safe prop);
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   127
    val goal' = case SINGLE (tac prems) goal of SOME goal' => goal' | _ => err "Tactic failed.";
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   128
    val raw_result = finish goal' handle THM (msg, _, _) => err msg;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   129
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   130
    val prop' = Thm.prop_of raw_result;
17986
0450847646c3 prove_raw: cterms, explicit asms;
wenzelm
parents: 17983
diff changeset
   131
    val _ = conditional (not (Pattern.matches thy (Envir.beta_norm prop, prop'))) (fn () =>
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   132
      err ("Proved a different theorem: " ^ Sign.string_of_term thy prop'));
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   133
  in
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   134
    Drule.conj_elim_precise (length props) raw_result
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   135
    |> map
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   136
      (Drule.implies_intr_list casms
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   137
        #> Drule.forall_intr_list cparams
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   138
        #> norm_hhf
18139
wenzelm
parents: 18119
diff changeset
   139
        #> Thm.varifyT' fixed_tfrees
wenzelm
parents: 18119
diff changeset
   140
        #-> K Drule.zero_var_indexes)
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   141
  end;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   142
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   143
18119
63901a9b99dc export compose_hhf;
wenzelm
parents: 18027
diff changeset
   144
(* prove *)
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   145
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   146
fun prove thy xs asms prop tac = hd (prove_multi thy xs asms [prop] tac);
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   147
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   148
18027
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   149
(* prove_raw -- no checks, no normalization of result! *)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   150
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   151
fun prove_raw casms cprop tac =
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   152
  (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
   153
    SOME th => Drule.implies_intr_list casms (finish th)
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   154
  | NONE => raise ERROR_MESSAGE "Tactic failed.");
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   155
09ab79d4e8e1 renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents: 17986
diff changeset
   156
17980
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   157
(* SELECT_GOAL *)
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   158
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   159
(*Tactical for restricting the effect of a tactic to subgoal i.  Works
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   160
  by making a new state from subgoal i, applying tac to it, and
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   161
  composing the resulting thm with the original state.*)
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   162
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   163
fun SELECT tac i st =
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   164
  init (Thm.adjust_maxidx (List.nth (Drule.cprems_of st, i - 1)))
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   165
  |> tac
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   166
  |> Seq.maps (fn st' => Thm.bicompose false (false, conclude st', Thm.nprems_of st') i st);
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   167
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   168
fun SELECT_GOAL tac i st =
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   169
  let val n = Thm.nprems_of st in
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   170
    if 1 <= i andalso i <= n then
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   171
      if n = 1 then tac st else SELECT tac i st
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   172
    else Seq.empty
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   173
  end;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   174
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   175
end;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   176
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   177
structure BasicGoal: BASIC_GOAL = Goal;
788836292b1a Internal goals.
wenzelm
parents:
diff changeset
   178
open BasicGoal;