diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2001-09-10 12:36:08 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2001-09-10 12:36:08 +0000 |
commit | d31a683978ed70d49cec29e1df7a9d3f7618c121 (patch) | |
tree | 63ef2789612b019945473e8d98f51af961ca1333 /proofs | |
parent | aa09258de6757dd38328975de2f6de7991807c68 (diff) |
Un conv aurait dû être un conv_leq
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1945 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs')
-rw-r--r-- | proofs/clenv.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/clenv.ml b/proofs/clenv.ml index bdd1a8ba1..1f67a42d8 100644 --- a/proofs/clenv.ml +++ b/proofs/clenv.ml @@ -990,7 +990,7 @@ let abstract_list_all env sigma typ c l = let lname_typ,_ = splay_prod env sigma typ in let p = abstract_scheme env c (List.map (function a -> [],a) l) lname_typ in try - if is_conv env sigma (Typing.type_of env sigma p) typ then p + if is_conv_leq env sigma (Typing.type_of env sigma p) typ then p else error "abstract_list_all" with UserError _ -> raise (RefinerError (CannotGeneralize typ)) |