aboutsummaryrefslogtreecommitdiff
path: root/kernel/evd.mli
diff options
context:
space:
mode:
authorfilliatr2000-11-02 15:41:00 +0000
committerfilliatr2000-11-02 15:41:00 +0000
commit33512e2f4d7d0733805efac1b9e69855fdf1777c (patch)
treece4d93e536152834ea0db58dea2a8407644a1023 /kernel/evd.mli
parente59113f1bdf4d8c98d956c01f51ae019942d92cd (diff)
correction Abstract (et make world passe!)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@794 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/evd.mli')
-rw-r--r--kernel/evd.mli8
1 files changed, 3 insertions, 5 deletions
diff --git a/kernel/evd.mli b/kernel/evd.mli
index e744748358..6ab60e2957 100644
--- a/kernel/evd.mli
+++ b/kernel/evd.mli
@@ -5,13 +5,12 @@
open Names
open Term
open Sign
-open Environ
(*i*)
(* The type of mappings for existential variables.
The keys are integers and the associated information is a record
- containing the type of the evar ([evar_concl]), the environment under which
- it was introduced ([evar_env]) and its definition ([evar_body]).
+ containing the type of the evar ([evar_concl]), the context under which
+ it was introduced ([evar_hyps]) and its definition ([evar_body]).
[evar_info] is used to add any other kind of information. *)
type evar = int
@@ -24,7 +23,7 @@ type evar_body =
type 'a evar_info = {
evar_concl : constr;
- evar_env : env;
+ evar_hyps : named_context;
evar_body : evar_body;
evar_info : 'a option }
@@ -48,7 +47,6 @@ val is_evar : 'a evar_map -> evar -> bool
val is_defined : 'a evar_map -> evar -> bool
-val evar_hyps : 'a evar_info -> named_context
val evar_body : 'a evar_info -> evar_body
val id_of_existential : evar -> identifier