doc-src/Ref/goals.tex
author nipkow
Fri, 06 Feb 1998 18:55:57 +0100
changeset 4606 73227403d497
parent 4374 245b64afefe2
child 5205 602354039306
permissions -rw-r--r--
filter_size -> length_filter
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
     1
%% $Id$
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
     2
\chapter{Proof Management: The Subgoal Module}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
     3
\index{proofs|(}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
     4
\index{subgoal module|(}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
     5
\index{reading!goals|see{proofs, starting}}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
     6
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
     7
The subgoal module stores the current proof state\index{proof state} and
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
     8
many previous states; commands can produce new states or return to previous
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
     9
ones.  The {\em state list\/} at level $n$ is a list of pairs
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    10
\[ [(\psi@n,\Psi@n),\; (\psi@{n-1},\Psi@{n-1}),\; \ldots,\; (\psi@0,[])] \]
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    11
where $\psi@n$ is the current proof state, $\psi@{n-1}$ is the previous
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    12
one, \ldots, and $\psi@0$ is the initial proof state.  The $\Psi@i$ are
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    13
sequences (lazy lists) of proof states, storing branch points where a
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    14
tactic returned a list longer than one.  The state lists permit various
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    15
forms of backtracking.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    16
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    17
Chopping elements from the state list reverts to previous proof states.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    18
Besides this, the \ttindex{undo} command keeps a list of state lists.  The
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    19
module actually maintains a stack of state lists, to support several
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    20
proofs at the same time.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    21
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    22
The subgoal module always contains some proof state.  At the start of the
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    23
Isabelle session, this state consists of a dummy formula.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    24
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    25
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    26
\section{Basic commands}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    27
Most proofs begin with {\tt goal} or {\tt goalw} and require no other
3108
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    28
commands than {\tt by}, {\tt chop} and {\tt undo}.  They typically end
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    29
with a call to {\tt qed}.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    30
\subsection{Starting a backward proof}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    31
\index{proofs!starting}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    32
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    33
goal        : theory -> string -> thm list 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    34
goalw       : theory -> thm list -> string -> thm list 
3108
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    35
goalw_cterm : thm list -> cterm -> thm list 
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    36
premises    : unit -> thm list
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    37
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    38
The {\tt goal} commands start a new proof by setting the goal.  They
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    39
replace the current state list by a new one consisting of the initial proof
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    40
state.  They also empty the \ttindex{undo} list; this command cannot be
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    41
undone!
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    42
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    43
They all return a list of meta-hypotheses taken from the main goal.  If
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    44
this list is non-empty, bind its value to an \ML{} identifier by typing
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    45
something like
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    46
\begin{ttbox} 
332
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
    47
val prems = goal{\it theory\/ formula};
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    48
\end{ttbox}\index{assumptions!of main goal}
3108
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    49
These assumptions serve as the premises when you are deriving a rule.
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    50
They are also stored internally and can be retrieved later by the
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    51
function {\tt premises}.  When the proof is finished, {\tt qed}
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    52
compares the stored assumptions with the actual assumptions in the
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    53
proof state.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    54
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    55
\index{definitions!unfolding}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    56
Some of the commands unfold definitions using meta-rewrite rules.  This
332
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
    57
expansion affects both the initial subgoal and the premises, which would
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    58
otherwise require use of {\tt rewrite_goals_tac} and
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    59
{\tt rewrite_rule}.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    60
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    61
\index{*"!"! symbol!in main goal}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    62
If the main goal has the form {\tt"!!{\it vars}.\ \ldots"}, with an
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    63
outermost quantifier, then the list of premises will be empty.  Subgoal~1
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    64
will contain the meta-quantified {\it vars\/} as parameters and the goal's
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    65
premises as assumptions.  This avoids having to call
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    66
\ttindex{cut_facts_tac} with the list of premises (\S\ref{cut_facts_tac}).
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    67
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    68
\begin{ttdescription}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    69
\item[\ttindexbold{goal} {\it theory} {\it formula};] 
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    70
begins a new proof, where {\it theory} is usually an \ML\ identifier
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    71
and the {\it formula\/} is written as an \ML\ string.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    72
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    73
\item[\ttindexbold{goalw} {\it theory} {\it defs} {\it formula};] 
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    74
is like {\tt goal} but also applies the list of {\it defs\/} as
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    75
meta-rewrite rules to the first subgoal and the premises.
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    76
\index{meta-rewriting}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    77
3108
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    78
\item[\ttindexbold{goalw_cterm} {\it theory} {\it defs} {\it ct};] is
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    79
  a version of {\tt goalw} for programming applications.  The main
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    80
  goal is supplied as a cterm, not as a string.  Typically, the cterm
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    81
  is created from a term~$t$ by \hbox{\tt cterm_of (sign_of thy) $t$}.
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
    82
  \index{*cterm_of}\index{*sign_of}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    83
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    84
\item[\ttindexbold{premises}()] 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    85
returns the list of meta-hypotheses associated with the current proof (in
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    86
case you forgot to bind them to an \ML{} identifier).
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    87
\end{ttdescription}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    88
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    89
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    90
\subsection{Applying a tactic}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
    91
\index{tactics!commands for applying}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    92
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    93
by   : tactic -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    94
byev : tactic list -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    95
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    96
These commands extend the state list.  They apply a tactic to the current
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    97
proof state.  If the tactic succeeds, it returns a non-empty sequence of
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    98
next states.  The head of the sequence becomes the next state, while the
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
    99
tail is retained for backtracking (see~{\tt back}).
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   100
\begin{ttdescription} \item[\ttindexbold{by} {\it tactic};] 
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   101
applies the {\it tactic\/} to the proof state.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   102
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   103
\item[\ttindexbold{byev} {\it tactics};] 
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   104
applies the list of {\it tactics}, one at a time.  It is useful for testing
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   105
calls to {\tt prove_goal}, and abbreviates \hbox{\tt by (EVERY {\it
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   106
tactics})}.
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   107
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   108
286
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   109
\noindent{\it Error indications:}\nobreak
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   110
\begin{itemize}
286
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   111
\item {\footnotesize\tt "by:\ tactic failed"} means that the tactic
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   112
  returned an empty sequence when applied to the current proof state.
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   113
\item {\footnotesize\tt "Warning:\ same as previous level"} means that the
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   114
  new proof state is identical to the previous state.
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   115
\item{\footnotesize\tt "Warning:\ signature of proof state has changed"}
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   116
  means that some rule was applied whose theory is outside the theory of
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   117
  the initial proof state.  This could signify a mistake such as expressing
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   118
  the goal in intuitionistic logic and proving it using classical logic.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   119
\end{itemize}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   120
866
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   121
\subsection{Extracting and storing the proved theorem}
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   122
\label{ExtractingAndStoringTheProvedTheorem}
1233
2856f382f033 minor corrections to indexing; added thms_containing
paulson
parents: 1225
diff changeset
   123
\index{theorems!extracting proved}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   124
\begin{ttbox} 
1283
ea8b657a9c92 Documented store_thm and moved qed to top
paulson
parents: 1233
diff changeset
   125
qed       : string -> unit
866
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   126
result    : unit -> thm
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   127
uresult   : unit -> thm
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   128
bind_thm  : string * thm -> unit
1283
ea8b657a9c92 Documented store_thm and moved qed to top
paulson
parents: 1233
diff changeset
   129
store_thm : string * thm -> thm
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   130
\end{ttbox}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   131
\begin{ttdescription}
4317
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   132
\item[\ttindexbold{qed} $name$;] is the usual way of ending a proof.
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   133
  It combines {\tt result} and {\tt bind_thm}: it gets the theorem
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   134
  using {\tt result()} and stores it the theorem database associated
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   135
  with its theory.  See below for details.
1283
ea8b657a9c92 Documented store_thm and moved qed to top
paulson
parents: 1233
diff changeset
   136
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   137
\item[\ttindexbold{result}()]\index{assumptions!of main goal}
866
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   138
  returns the final theorem, after converting the free variables to
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   139
  schematics.  It discharges the assumptions supplied to the matching 
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   140
  {\tt goal} command.  
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   141
866
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   142
  It raises an exception unless the proof state passes certain checks.  There
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   143
  must be no assumptions other than those supplied to {\tt goal}.  There
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   144
  must be no subgoals.  The theorem proved must be a (first-order) instance
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   145
  of the original goal, as stated in the {\tt goal} command.  This allows
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   146
  {\bf answer extraction} --- instantiation of variables --- but no other
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   147
  changes to the main goal.  The theorem proved must have the same signature
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   148
  as the initial proof state.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   149
866
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   150
  These checks are needed because an Isabelle tactic can return any proof
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   151
  state at all.
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   152
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   153
\item[\ttindexbold{uresult}()] is like {\tt result()} but omits the checks.
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   154
  It is needed when the initial goal contains function unknowns, when
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   155
  definitions are unfolded in the main goal (by calling
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   156
  \ttindex{rewrite_tac}),\index{definitions!unfolding} or when
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   157
  \ttindex{assume_ax} has been used.
4317
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   158
  
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   159
\item[\ttindexbold{bind_thm} ($name$, $thm$);]\index{theorems!storing}
4374
wenzelm
parents: 4317
diff changeset
   160
  stores {\tt standard $thm$} (see \S\ref{MiscellaneousForwardRules})
4317
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   161
  in the theorem database associated with its theory and in the {\ML}
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   162
  variable $name$.  The theorem can be retrieved from the database
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   163
  using {\tt get_thm} (see \S\ref{BasicOperationsOnTheories}).
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   164
  
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   165
\item[\ttindexbold{store_thm} ($name$, $thm$)]\index{theorems!storing}
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   166
  stores $thm$ in the theorem database associated with its theory and
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   167
  returns that theorem.
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   168
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   169
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   170
1222
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   171
\subsection{Retrieving theorems}
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   172
\index{theorems!retrieving}
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   173
4317
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   174
The following functions retrieve theorems (together with their names)
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   175
from the theorem database that is associated with the current proof
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   176
state's theory.  They can only find theorems that have explicitly been
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   177
stored in the database using \ttindex{qed}, \ttindex{bind_thm} or
1222
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   178
related functions.
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   179
\begin{ttbox} 
4317
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   180
findI           :          int -> (string * thm) list
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   181
findE           :   int -> int -> (string * thm) list
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   182
findEs          :          int -> (string * thm) list
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   183
thms_containing : xstring list -> (string * thm) list
1222
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   184
\end{ttbox}
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   185
\begin{ttdescription}
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   186
\item[\ttindexbold{findI} $i$]\index{assumptions!of main goal}
1225
35703accdf31 minor polishing of text on findI, etc.
paulson
parents: 1222
diff changeset
   187
  returns all ``introduction rules'' applicable to subgoal $i$ --- all
1222
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   188
  theorems whose conclusion matches (rather than unifies with) subgoal
1225
35703accdf31 minor polishing of text on findI, etc.
paulson
parents: 1222
diff changeset
   189
  $i$.  Useful in connection with {\tt resolve_tac}.
1222
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   190
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   191
\item[\ttindexbold{findE} $n$ $i$] returns all ``elimination rules''
1225
35703accdf31 minor polishing of text on findI, etc.
paulson
parents: 1222
diff changeset
   192
  applicable to premise $n$ of subgoal $i$ --- all those theorems whose
35703accdf31 minor polishing of text on findI, etc.
paulson
parents: 1222
diff changeset
   193
  first premise matches premise $n$ of subgoal $i$.  Useful in connection with
1222
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   194
  {\tt eresolve_tac} and {\tt dresolve_tac}.
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   195
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   196
\item[\ttindexbold{findEs} $i$] returns all ``elimination rules'' applicable
1225
35703accdf31 minor polishing of text on findI, etc.
paulson
parents: 1222
diff changeset
   197
  to subgoal $i$ --- all those theorems whose first premise matches some
35703accdf31 minor polishing of text on findI, etc.
paulson
parents: 1222
diff changeset
   198
  premise of subgoal $i$.  Useful in connection with {\tt eresolve_tac} and
1222
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   199
  {\tt dresolve_tac}.
4317
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   200
  
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   201
\item[\ttindexbold{thms_containing} $consts$] returns all theorems
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   202
  that contain all of a given set of constants.  Note that a few basic
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   203
  constants like \verb$==>$ are ignored.
1222
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   204
\end{ttdescription}
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   205
d99d13a0213f Documented findI, findE, findEs, thms_containing.
nipkow
parents: 866
diff changeset
   206
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   207
\subsection{Undoing and backtracking}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   208
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   209
chop    : unit -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   210
choplev : int -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   211
back    : unit -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   212
undo    : unit -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   213
\end{ttbox}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   214
\begin{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   215
\item[\ttindexbold{chop}();] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   216
deletes the top level of the state list, cancelling the last \ttindex{by}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   217
command.  It provides a limited undo facility, and the {\tt undo} command
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   218
can cancel it.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   219
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   220
\item[\ttindexbold{choplev} {\it n};] 
2128
4e8644805af2 Documents the use of negative arguments to choplev and prlev
paulson
parents: 1283
diff changeset
   221
truncates the state list to level~{\it n}, if $n\geq0$.  A negative value
4e8644805af2 Documents the use of negative arguments to choplev and prlev
paulson
parents: 1283
diff changeset
   222
of~$n$ refers to the $n$th previous level: 
4e8644805af2 Documents the use of negative arguments to choplev and prlev
paulson
parents: 1283
diff changeset
   223
\hbox{\verb|choplev ~1|} has the same effect as {\tt chop}.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   224
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   225
\item[\ttindexbold{back}();]
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   226
searches the state list for a non-empty branch point, starting from the top
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   227
level.  The first one found becomes the current proof state --- the most
286
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   228
recent alternative branch is taken.  This is a form of interactive
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   229
backtracking.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   230
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   231
\item[\ttindexbold{undo}();] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   232
cancels the most recent change to the proof state by the commands \ttindex{by},
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   233
{\tt chop}, {\tt choplev}, and~{\tt back}.  It {\bf cannot}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   234
cancel {\tt goal} or {\tt undo} itself.  It can be repeated to
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   235
cancel a series of commands.
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   236
\end{ttdescription}
286
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   237
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   238
\goodbreak
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   239
\noindent{\it Error indications for {\tt back}:}\par\nobreak
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   240
\begin{itemize}
286
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   241
\item{\footnotesize\tt"Warning:\ same as previous choice at this level"}
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   242
  means {\tt back} found a non-empty branch point, but that it contained
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   243
  the same proof state as the current one.
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   244
\item{\footnotesize\tt "Warning:\ signature of proof state has changed"}
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   245
  means the signature of the alternative proof state differs from that of
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   246
  the current state.
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   247
\item {\footnotesize\tt "back:\ no alternatives"} means {\tt back} could
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   248
  find no alternative proof state.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   249
\end{itemize}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   250
507
a00301e9e64b addition of show_brackets
lcp
parents: 332
diff changeset
   251
\subsection{Printing the proof state}\label{sec:goals-printing}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   252
\index{proof state!printing of}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   253
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   254
pr    : unit -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   255
prlev : int -> unit
2528
bc6e29c776d6 Documents the new command "prlim"
paulson
parents: 2128
diff changeset
   256
prlim : int -> unit
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   257
goals_limit: int ref \hfill{\bf initially 10}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   258
\end{ttbox}
2528
bc6e29c776d6 Documents the new command "prlim"
paulson
parents: 2128
diff changeset
   259
See also the printing control options described 
bc6e29c776d6 Documents the new command "prlim"
paulson
parents: 2128
diff changeset
   260
in~\S\ref{sec:printing-control}. 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   261
\begin{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   262
\item[\ttindexbold{pr}();] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   263
prints the current proof state.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   264
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   265
\item[\ttindexbold{prlev} {\it n};] 
2128
4e8644805af2 Documents the use of negative arguments to choplev and prlev
paulson
parents: 1283
diff changeset
   266
prints the proof state at level {\it n}, if $n\geq0$.  A negative value
4e8644805af2 Documents the use of negative arguments to choplev and prlev
paulson
parents: 1283
diff changeset
   267
of~$n$ refers to the $n$th previous level.  This command allows
4e8644805af2 Documents the use of negative arguments to choplev and prlev
paulson
parents: 1283
diff changeset
   268
you to review earlier stages of the proof.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   269
2528
bc6e29c776d6 Documents the new command "prlim"
paulson
parents: 2128
diff changeset
   270
\item[\ttindexbold{prlim} {\it k};] 
bc6e29c776d6 Documents the new command "prlim"
paulson
parents: 2128
diff changeset
   271
prints the current proof state, limiting the number of subgoals to~$k$.  It
bc6e29c776d6 Documents the new command "prlim"
paulson
parents: 2128
diff changeset
   272
updates {\tt goals_limit} (see below) and is helpful when there are many
bc6e29c776d6 Documents the new command "prlim"
paulson
parents: 2128
diff changeset
   273
subgoals. 
bc6e29c776d6 Documents the new command "prlim"
paulson
parents: 2128
diff changeset
   274
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   275
\item[\ttindexbold{goals_limit} := {\it k};] 
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   276
specifies~$k$ as the maximum number of subgoals to print.
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   277
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   278
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   279
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   280
\subsection{Timing}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   281
\index{timing statistics}\index{proofs!timing}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   282
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   283
proof_timing: bool ref \hfill{\bf initially false}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   284
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   285
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   286
\begin{ttdescription}
4317
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   287
\item[set \ttindexbold{proof_timing};] 
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   288
makes the \ttindex{by} and \ttindex{prove_goal} commands display how much
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   289
processor time was spent.  This information is compiler-dependent.
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   290
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   291
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   292
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   293
\section{Shortcuts for applying tactics}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   294
\index{shortcuts!for {\tt by} commands}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   295
These commands call \ttindex{by} with common tactics.  Their chief purpose
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   296
is to minimise typing, although the scanning shortcuts are useful in their
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   297
own right.  Chapter~\ref{tactics} explains the tactics themselves.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   298
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   299
\subsection{Refining a given subgoal}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   300
\begin{ttbox} 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   301
ba  :             int -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   302
br  : thm      -> int -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   303
be  : thm      -> int -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   304
bd  : thm      -> int -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   305
brs : thm list -> int -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   306
bes : thm list -> int -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   307
bds : thm list -> int -> unit
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   308
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   309
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   310
\begin{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   311
\item[\ttindexbold{ba} {\it i};] 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   312
performs \hbox{\tt by (assume_tac {\it i});}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   313
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   314
\item[\ttindexbold{br} {\it thm} {\it i};] 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   315
performs \hbox{\tt by (resolve_tac [{\it thm}] {\it i});}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   316
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   317
\item[\ttindexbold{be} {\it thm} {\it i};] 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   318
performs \hbox{\tt by (eresolve_tac [{\it thm}] {\it i});}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   319
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   320
\item[\ttindexbold{bd} {\it thm} {\it i};] 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   321
performs \hbox{\tt by (dresolve_tac [{\it thm}] {\it i});}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   322
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   323
\item[\ttindexbold{brs} {\it thms} {\it i};] 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   324
performs \hbox{\tt by (resolve_tac {\it thms} {\it i});}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   325
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   326
\item[\ttindexbold{bes} {\it thms} {\it i};] 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   327
performs \hbox{\tt by (eresolve_tac {\it thms} {\it i});}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   328
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   329
\item[\ttindexbold{bds} {\it thms} {\it i};] 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   330
performs \hbox{\tt by (dresolve_tac {\it thms} {\it i});}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   331
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   332
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   333
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   334
\subsection{Scanning shortcuts}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   335
These shortcuts scan for a suitable subgoal (starting from subgoal~1).
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   336
They refine the first subgoal for which the tactic succeeds.  Thus, they
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   337
require less typing than {\tt br}, etc.  They display the selected
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   338
subgoal's number; please watch this, for it may not be what you expect!
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   339
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   340
\begin{ttbox} 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   341
fa  : unit     -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   342
fr  : thm      -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   343
fe  : thm      -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   344
fd  : thm      -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   345
frs : thm list -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   346
fes : thm list -> unit
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   347
fds : thm list -> unit
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   348
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   349
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   350
\begin{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   351
\item[\ttindexbold{fa}();] 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   352
solves some subgoal by assumption.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   353
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   354
\item[\ttindexbold{fr} {\it thm};] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   355
refines some subgoal using \hbox{\tt resolve_tac [{\it thm}]}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   356
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   357
\item[\ttindexbold{fe} {\it thm};] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   358
refines some subgoal using \hbox{\tt eresolve_tac [{\it thm}]}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   359
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   360
\item[\ttindexbold{fd} {\it thm};] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   361
refines some subgoal using \hbox{\tt dresolve_tac [{\it thm}]}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   362
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   363
\item[\ttindexbold{frs} {\it thms};] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   364
refines some subgoal using \hbox{\tt resolve_tac {\it thms}}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   365
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   366
\item[\ttindexbold{fes} {\it thms};] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   367
refines some subgoal using \hbox{\tt eresolve_tac {\it thms}} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   368
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   369
\item[\ttindexbold{fds} {\it thms};] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   370
refines some subgoal using \hbox{\tt dresolve_tac {\it thms}} 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   371
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   372
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   373
\subsection{Other shortcuts}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   374
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   375
bw  : thm -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   376
bws : thm list -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   377
ren : string -> int -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   378
\end{ttbox}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   379
\begin{ttdescription}
4317
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   380
\item[\ttindexbold{bw} {\it def};] performs \hbox{\tt by
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   381
    (rewrite_goals_tac [{\it def}]);} It unfolds definitions in the
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   382
  subgoals (but not the main goal), by meta-rewriting with the given
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   383
  definition (see also \S\ref{sec:rewrite_goals}).
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   384
  \index{meta-rewriting}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   385
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   386
\item[\ttindexbold{bws}] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   387
is like {\tt bw} but takes a list of definitions.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   388
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   389
\item[\ttindexbold{ren} {\it names} {\it i};] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   390
performs \hbox{\tt by (rename_tac {\it names} {\it i});} it renames
332
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
   391
parameters in subgoal~$i$.  (Ignore the message {\footnotesize\tt Warning:\
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
   392
  same as previous level}.)
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   393
\index{parameters!renaming}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   394
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   395
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   396
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   397
\section{Executing batch proofs}
3128
d01d4c0c4b44 New acknowledgements; fixed overfull lines and tables
paulson
parents: 3108
diff changeset
   398
\index{batch execution}%
d01d4c0c4b44 New acknowledgements; fixed overfull lines and tables
paulson
parents: 3108
diff changeset
   399
To save space below, let type \texttt{tacfun} abbreviate \texttt{thm list ->
d01d4c0c4b44 New acknowledgements; fixed overfull lines and tables
paulson
parents: 3108
diff changeset
   400
  tactic list}, which is the type of a tactical proof.
286
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   401
\begin{ttbox}
3128
d01d4c0c4b44 New acknowledgements; fixed overfull lines and tables
paulson
parents: 3108
diff changeset
   402
prove_goal :           theory ->             string -> tacfun -> thm
d01d4c0c4b44 New acknowledgements; fixed overfull lines and tables
paulson
parents: 3108
diff changeset
   403
qed_goal   : string -> theory ->             string -> tacfun -> unit
d01d4c0c4b44 New acknowledgements; fixed overfull lines and tables
paulson
parents: 3108
diff changeset
   404
prove_goalw:           theory -> thm list -> string -> tacfun -> thm
d01d4c0c4b44 New acknowledgements; fixed overfull lines and tables
paulson
parents: 3108
diff changeset
   405
qed_goalw  : string -> theory -> thm list -> string -> tacfun -> unit
d01d4c0c4b44 New acknowledgements; fixed overfull lines and tables
paulson
parents: 3108
diff changeset
   406
prove_goalw_cterm:               thm list -> cterm  -> tacfun -> thm
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   407
\end{ttbox}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   408
These batch functions create an initial proof state, then apply a tactic to
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   409
it, yielding a sequence of final proof states.  The head of the sequence is
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   410
returned, provided it is an instance of the theorem originally proposed.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   411
The forms {\tt prove_goal}, {\tt prove_goalw} and {\tt prove_goalw_cterm}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   412
are analogous to {\tt goal}, {\tt goalw} and {\tt goalw_cterm}.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   413
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   414
The tactic is specified by a function from theorem lists to tactic lists.
332
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
   415
The function is applied to the list of meta-assumptions taken from
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
   416
the main goal.  The resulting tactics are applied in sequence (using {\tt
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
   417
  EVERY}).  For example, a proof consisting of the commands
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   418
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   419
val prems = goal {\it theory} {\it formula};
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   420
by \(tac@1\);  \ldots  by \(tac@n\);
3108
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
   421
qed "my_thm";
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   422
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   423
can be transformed to an expression as follows:
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   424
\begin{ttbox} 
3108
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
   425
qed_goal "my_thm" {\it theory} {\it formula}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   426
 (fn prems=> [ \(tac@1\), \ldots, \(tac@n\) ]);
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   427
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   428
The methods perform identical processing of the initial {\it formula} and
332
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
   429
the final proof state.  But {\tt prove_goal} executes the tactic as a
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
   430
atomic operation, bypassing the subgoal module; the current interactive
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
   431
proof is unaffected.
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
   432
%
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   433
\begin{ttdescription}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   434
\item[\ttindexbold{prove_goal} {\it theory} {\it formula} {\it tacsf};] 
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   435
executes a proof of the {\it formula\/} in the given {\it theory}, using
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   436
the given tactic function.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   437
4317
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   438
\item[\ttindexbold{qed_goal} $name$ $theory$ $formula$ $tacsf$;] acts
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   439
  like {\tt prove_goal} but also stores the resulting theorem in the
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   440
  theorem database associated with its theory and in the {\ML}
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   441
  variable $name$ (see \S\ref{ExtractingAndStoringTheProvedTheorem}).
866
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   442
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   443
\item[\ttindexbold{prove_goalw} {\it theory} {\it defs} {\it formula} 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   444
      {\it tacsf};]\index{meta-rewriting}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   445
is like {\tt prove_goal} but also applies the list of {\it defs\/} as
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   446
meta-rewrite rules to the first subgoal and the premises.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   447
866
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   448
\item[\ttindexbold{qed_goalw} $name$ $theory$ $defs$ $formula$ $tacsf$;]
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   449
is analogous to {\tt qed_goal}.
2d3d020eef11 added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents: 507
diff changeset
   450
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   451
\item[\ttindexbold{prove_goalw_cterm} {\it theory} {\it defs} {\it ct}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   452
      {\it tacsf};] 
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   453
is a version of {\tt prove_goalw} for programming applications.  The main
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   454
goal is supplied as a cterm, not as a string.  Typically, the cterm is
286
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   455
created from a term~$t$ as follows:
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   456
\begin{ttbox}
3108
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
   457
cterm_of (sign_of thy) \(t\)
286
e7efbf03562b first draft of Springer book
lcp
parents: 104
diff changeset
   458
\end{ttbox}
3108
335efc3f5632 misc updates, tuning, cleanup;
wenzelm
parents: 2611
diff changeset
   459
\index{*cterm_of}\index{*sign_of}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   460
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   461
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   462
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   463
\section{Managing multiple proofs}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   464
\index{proofs!managing multiple}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   465
You may save the current state of the subgoal module and resume work on it
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   466
later.  This serves two purposes.  
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   467
\begin{enumerate}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   468
\item At some point, you may be uncertain of the next step, and
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   469
wish to experiment.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   470
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   471
\item During a proof, you may see that a lemma should be proved first.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   472
\end{enumerate}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   473
Each saved proof state consists of a list of levels; \ttindex{chop} behaves
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   474
independently for each of the saved proofs.  In addition, each saved state
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   475
carries a separate \ttindex{undo} list.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   476
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   477
\subsection{The stack of proof states}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   478
\index{proofs!stacking}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   479
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   480
push_proof   : unit -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   481
pop_proof    : unit -> thm list
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   482
rotate_proof : unit -> thm list
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   483
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   484
The subgoal module maintains a stack of proof states.  Most subgoal
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   485
commands affect only the top of the stack.  The \ttindex{goal} command {\em
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   486
replaces\/} the top of the stack; the only command that pushes a proof on the
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   487
stack is {\tt push_proof}.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   488
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   489
To save some point of the proof, call {\tt push_proof}.  You may now
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   490
state a lemma using {\tt goal}, or simply continue to apply tactics.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   491
Later, you can return to the saved point by calling {\tt pop_proof} or 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   492
{\tt rotate_proof}. 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   493
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   494
To view the entire stack, call {\tt rotate_proof} repeatedly; as it rotates
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   495
the stack, it prints the new top element.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   496
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   497
\begin{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   498
\item[\ttindexbold{push_proof}();]  
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   499
duplicates the top element of the stack, pushing a copy of the current
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   500
proof state on to the stack.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   501
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   502
\item[\ttindexbold{pop_proof}();]  
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   503
discards the top element of the stack.  It returns the list of
332
01b87a921967 final Springer copy
lcp
parents: 321
diff changeset
   504
assumptions associated with the new proof;  you should bind these to an
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   505
\ML\ identifier.  They can also be obtained by calling \ttindex{premises}.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   506
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   507
\item[\ttindexbold{rotate_proof}();]
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   508
\index{assumptions!of main goal}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   509
rotates the stack, moving the top element to the bottom.  It returns the
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   510
list of assumptions associated with the new proof.
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   511
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   512
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   513
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   514
\subsection{Saving and restoring proof states}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   515
\index{proofs!saving and restoring}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   516
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   517
save_proof    : unit -> proof
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   518
restore_proof : proof -> thm list
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   519
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   520
States of the subgoal module may be saved as \ML\ values of
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   521
type~\mltydx{proof}, and later restored.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   522
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   523
\begin{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   524
\item[\ttindexbold{save_proof}();]  
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   525
returns the current state, which is on top of the stack.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   526
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   527
\item[\ttindexbold{restore_proof} {\it prf};]\index{assumptions!of main goal}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   528
  replaces the top of the stack by~{\it prf}.  It returns the list of
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   529
  assumptions associated with the new proof.
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   530
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   531
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   532
4317
7264fa2ff2ec several minor updates;
wenzelm
parents: 3128
diff changeset
   533
\section{*Debugging and inspecting}
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   534
\index{tactics!debugging}
2611
a5b6a632768d Strengthened warnings concerning topthm(), etc.
paulson
parents: 2528
diff changeset
   535
These functions can be useful when you are debugging a tactic.  They refer
a5b6a632768d Strengthened warnings concerning topthm(), etc.
paulson
parents: 2528
diff changeset
   536
to the current proof state stored in the subgoal module.  A tactic
a5b6a632768d Strengthened warnings concerning topthm(), etc.
paulson
parents: 2528
diff changeset
   537
should never call them; it should operate on the proof state supplied as its
a5b6a632768d Strengthened warnings concerning topthm(), etc.
paulson
parents: 2528
diff changeset
   538
argument.
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   539
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   540
\subsection{Reading and printing terms}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   541
\index{terms!reading of}\index{terms!printing of}\index{types!printing of}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   542
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   543
read    : string -> term
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   544
prin    : term -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   545
printyp : typ -> unit
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   546
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   547
These read and print terms (or types) using the syntax associated with the
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   548
proof state.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   549
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   550
\begin{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   551
\item[\ttindexbold{read} {\it string}]  
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   552
reads the {\it string} as a term, without type checking.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   553
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   554
\item[\ttindexbold{prin} {\it t};]  
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   555
prints the term~$t$ at the terminal.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   556
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   557
\item[\ttindexbold{printyp} {\it T};]  
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   558
prints the type~$T$ at the terminal.
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   559
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   560
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   561
\subsection{Inspecting the proof state}
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   562
\index{proofs!inspecting the state}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   563
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   564
topthm  : unit -> thm
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   565
getgoal : int -> term
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   566
gethyps : int -> thm list
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   567
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   568
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   569
\begin{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   570
\item[\ttindexbold{topthm}()]  
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   571
returns the proof state as an Isabelle theorem.  This is what \ttindex{by}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   572
would supply to a tactic at this point.  It omits the post-processing of
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   573
\ttindex{result} and \ttindex{uresult}.
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   574
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   575
\item[\ttindexbold{getgoal} {\it i}]  
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   576
returns subgoal~$i$ of the proof state, as a term.  You may print
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   577
this using {\tt prin}, though you may have to examine the internal
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   578
data structure in order to locate the problem!
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   579
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   580
\item[\ttindexbold{gethyps} {\it i}]
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   581
  returns the hypotheses of subgoal~$i$ as meta-level assumptions.  In
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   582
  these theorems, the subgoal's parameters become free variables.  This
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   583
  command is supplied for debugging uses of \ttindex{METAHYPS}.
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   584
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   585
2611
a5b6a632768d Strengthened warnings concerning topthm(), etc.
paulson
parents: 2528
diff changeset
   586
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   587
\subsection{Filtering lists of rules}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   588
\begin{ttbox} 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   589
filter_goal: (term*term->bool) -> thm list -> int -> thm list
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   590
\end{ttbox}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   591
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   592
\begin{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   593
\item[\ttindexbold{filter_goal} {\it could} {\it ths} {\it i}] 
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   594
applies \hbox{\tt filter_thms {\it could}} to subgoal~$i$ of the proof
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   595
state and returns the list of theorems that survive the filtering. 
321
998f1c5adafb penultimate Springer draft
lcp
parents: 286
diff changeset
   596
\end{ttdescription}
104
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   597
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   598
\index{subgoal module|)}
d8205bb279a7 Initial revision
lcp
parents:
diff changeset
   599
\index{proofs|)}