diff options
| author | bertot | 2002-01-23 14:17:57 +0000 |
|---|---|---|
| committer | bertot | 2002-01-23 14:17:57 +0000 |
| commit | bef4e9e5842527ffc76c0ae9635a2188fd09602a (patch) | |
| tree | 688ef63f0f2bf4f9eee216be7e955c6d27e78d53 /contrib/interface/translate.mli | |
| parent | 58c4a23cc2d7b01bbc6a7e60d6d074bb0a0e5b26 (diff) | |
In Pcoq, the search commands had an erroneous behavior. Bound variables
in theorems were renamed to avoid the names present in the current goal's
context. This version corrects this problem.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2425 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/interface/translate.mli')
| -rw-r--r-- | contrib/interface/translate.mli | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/interface/translate.mli b/contrib/interface/translate.mli index 46d785f4bf..65d8331b2d 100644 --- a/contrib/interface/translate.mli +++ b/contrib/interface/translate.mli @@ -5,5 +5,7 @@ open Environ;; open Term;; val translate_goal : goal -> ct_RULE;; -val translate_constr : env -> constr -> ct_FORMULA;; +(* The boolean argument indicates whether names from the environment should *) +(* be avoided (same interpretation as for prterm_env and ast_of_constr) *) +val translate_constr : bool -> env -> constr -> ct_FORMULA;; val translate_path : int list -> ct_SIGNED_INT_LIST;; |
