In Coq’s proof editing mode all top-level commands documented in
Chapter 6 remain available
and the user has access to specialized commands dealing with proof
development pragmas documented in this section. He can also use some
other specialized commands called tactics. They are the very
tools allowing the user to deal with logical reasoning. They are
documented in Chapter 8.
When switching in editing proof mode, the prompt
Coq < is changed into ident < where ident is the
declared name of the theorem currently edited.
At each stage of a proof development, one has a list of goals to prove. Initially, the list consists only in the theorem itself. After having applied some tactics, the list of goals contains the subgoals generated by the tactics.
To each subgoal is associated a number of hypotheses we call the local context of the goal. Initially, the local context is empty. It is enriched by the use of certain tactics (see mainly Section 8.3.5).
When a proof is achieved the message Proof completed is displayed. One can then store this proof as a defined constant in the environment. Because there exists a correspondence between proofs and terms of λ-calculus, known as the Curry-Howard isomorphism [70, 6, 66, 73], Coq stores proofs as terms of Cic. Those terms are called proof terms.
It is possible to edit several proofs at the same time: see section 7.1.8
Error message: When one attempts to use a proof editing command out of the
proof editing mode, Coq raises the error message : No focused
proof.
This command switches Coq to editing proof mode and sets form as the original goal. It associates the name Unnamed_thm to that goal.
Error messages:
See also: Section 7.1.4
This command is available in interactive editing proof mode when the proof is completed. Then Qed extracts a proof term from the proof script, switches back to Coq top-level and attaches the extracted proof term to the declared name of the original goal. This name is added to the environment as an Opaque constant.
Error messages:
The user should also be aware of the fact that since the proof term is completely rechecked at this point, one may have to wait a while when the proof is large. In some exceptional cases one may even incur a memory overflow.
Variants:
Defines the proved term as a transparent constant.
Is equivalent to Qed.
Forces the name of the original goal to be ident. This command (and the following ones) can only be used if the original goal has been opened using the Goal command.
Are equivalent to Save ident.
This command is available in interactive editing proof mode to give up the current proof and declare the initial goal as an axiom.
This command switches to interactive editing proof mode and declares ident as being the name of the original goal form. When declared as a Theorem, the name ident is known at all section levels: Theorem is a global lemma.
Error messages:
The name you provided already defined. You have then to choose another name.
Variants:
It is equivalent to Theorem ident : form.
Used to have a different meaning, but are now equivalent to Theorem ident : form. They are kept for compatibility.
Analogous to Theorem, intended to be used in conjunction with Defined (see 1) in order to define a transparent constant.
Analogous to Definition except that the definition is turned into a local definition on objects depending on it after closing the current section.
This command applies in proof editing mode. It is equivalent to exact term; Save. That is, you have to give the full proof in one gulp, as a proof term (see Section 8.2.1).
Variant: Proof.
Is a noop which is useful to delimit the sequence of tactic commands which start a proof, after a Theorem command. It is a good practice to use Proof. as an opening parenthesis, closed in the script with a closing Qed.
See also: Proof with tactic. in Section 8.13.6.
This command cancels the current proof development, switching back to the previous proof development, or to the Coq toplevel if no other proof was edited.
Error messages:
Variants:
Aborts the editing of the proof named ident.
Aborts all current goals, switching back to the Coq toplevel.
This command applies in proof editing mode. It switches back to the Coq toplevel, but without canceling the current proofs.
This commands switches back to the editing of the last edited proof.
Error messages:
Variants:
Restarts the editing of the proof named ident. This can be used to navigate between currently edited proofs.
Error messages:
This command allows to instantiate an existential variable. num is an index in the list of uninstantiated existential variables displayed by Show Existentials. (described in Section 7.3.1)
This command is intented to be used to instantiate existential variables when the proof is completed but some uninstantiated existential variables remain. To instantiate existential variables during proof edition, you should use the tactic instantiate.
See also: instantiate (num:= term). in Section 8.3.14.
This command cancels the effect of the last tactic command. Thus, it backtracks one step.
Error messages:
Variants:
Repeats Undo num times.
This command changes the maximum number of Undo’s that will be possible when doing a proof. It only affects proofs started after this command, such that if you want to change the current undo limit inside a proof, you should first restart this proof.
This command resets the default number of possible Undo commands (which is currently 12).
This command restores the proof editing process to the original goal.
Error messages:
This focuses the attention on the first subgoal to prove and the printing of the other subgoals is suspended until the focused subgoal is solved or unfocused. This is useful when there are many current subgoals which clutter your screen.
Variant:
Turns off the focus mode.
This command displays the current goals.
Variants:
<Your Tactic Text here>
.This command sets the maximum number of hypotheses displayed in goals after the application of a tactic. All the hypotheses remains usable in the proof development.
This command goes back to the default mode which is to print all available hypotheses.
An implementation of the DPL declarative proof language by Pierre Corbineau at the Radboud University Nijmegen (The Netherlands) is included in Coq.
Due to the experimental nature and hence the potentially unstable semantics of the language, its documentation is not included here. However, it can be found at :
http://www.cs.ru.nl/~corbineau/mmode.html