aboutsummaryrefslogtreecommitdiffhomepage
path: root/pretyping/evd.ml
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2015-09-21 11:55:32 +0200
committerGravatar Matthieu Sozeau <mattam@mattam.org>2015-10-02 15:54:10 +0200
commit4838a3a3c25cc9f7583dd62e4585460aca8ee961 (patch)
tree80a909def685c23e426d350d494bdc1f00165459 /pretyping/evd.ml
parent1cd87577ab85a402fb0482678dfcdbe85b45ce38 (diff)
Forcing i > Set for global universes (incomplete)
Diffstat (limited to 'pretyping/evd.ml')
-rw-r--r--pretyping/evd.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pretyping/evd.ml b/pretyping/evd.ml
index 9f2d28438..a25479d48 100644
--- a/pretyping/evd.ml
+++ b/pretyping/evd.ml
@@ -1083,11 +1083,11 @@ let uctx_new_univ_variable rigid name predicative
| None -> uctx.uctx_names
in
let initial =
- Univ.add_universe u true uctx.uctx_initial_universes
+ Univ.add_universe u false uctx.uctx_initial_universes
in
let uctx' =
{uctx' with uctx_names = names; uctx_local = ctx';
- uctx_universes = Univ.add_universe u true uctx.uctx_universes;
+ uctx_universes = Univ.add_universe u false uctx.uctx_universes;
uctx_initial_universes = initial}
in uctx', u