diff options
| author | herbelin | 2000-12-18 23:07:25 +0000 |
|---|---|---|
| committer | herbelin | 2000-12-18 23:07:25 +0000 |
| commit | c0b215c309ea5f2c898bf8d7b8d07f93d74a20a4 (patch) | |
| tree | 92128b4e34e280e891f75731d1b00f1e0f1ee7a0 /proofs/proof_type.mli | |
| parent | 36da868408c3d73efa1b60c8185e5db25257534e (diff) | |
Documentation
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1145 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs/proof_type.mli')
| -rw-r--r-- | proofs/proof_type.mli | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/proofs/proof_type.mli b/proofs/proof_type.mli index dbc4ba6554..7025f450a1 100644 --- a/proofs/proof_type.mli +++ b/proofs/proof_type.mli @@ -55,7 +55,36 @@ type enamed_declarations = ctxtty evar_map with some extra information for the program tactic *) type global_constraints = enamed_declarations timestamped -(* Signature useful to define the tactic type *) +(* The type [goal sigma] is the type of subgoal. It has the following form +\begin{verbatim} + it = { evar_concl = [the conclusion of the subgoal] + evar_hyps = [the hypotheses of the subgoal] + evar_body = Evar_Empty; + evar_info = { pgm : [The Realizer pgm if any] + lc : [Set of evar num occurring in subgoal] }} + sigma = { stamp = [an int characterizing the ed field, for quick compare] + ed : [A set of existential variables depending in the subgoal] + number of first evar, + it = { evar_concl = [the type of first evar] + evar_hyps = [the context of the evar] + evar_body = [the body of the Evar if any] + evar_info = { pgm : [Useless ??] + lc : [Set of evars occurring + in the type of evar] } }; + ... + number of last evar, + it = { evar_concl = [the type of evar] + evar_hyps = [the context of the evar] + evar_body = [the body of the Evar if any] + evar_info = { pgm : [Useless ??] + lc : [Set of evars occurring + in the type of evar] } } } + } +\end{verbatim} +*) + +(* The type constructor ['a sigma] adds an evar map to an object of + type ['a] (see below the form of a [goal sigma] *) type 'a sigma = { it : 'a ; sigma : global_constraints } |
