aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker/reduction.ml
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-06-07 17:26:29 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-06-07 17:26:29 +0200
commit2fbcbeece792c2f0e235160d66014150224fe7d7 (patch)
treeff03867a1e665aca1bcb86b3cabc1cb1fc1e60cc /checker/reduction.ml
parent560b24f8eab0838fd6e01da8c4373f560020aadd (diff)
Removing 'open Univ' from checker.
Diffstat (limited to 'checker/reduction.ml')
-rw-r--r--checker/reduction.ml5
1 files changed, 2 insertions, 3 deletions
diff --git a/checker/reduction.ml b/checker/reduction.ml
index 49f0a26e7..289b9a758 100644
--- a/checker/reduction.ml
+++ b/checker/reduction.ml
@@ -10,7 +10,6 @@ open Errors
open Util
open Cic
open Term
-open Univ
open Closure
open Esubst
open Environ
@@ -160,8 +159,8 @@ let sort_cmp univ pb s0 s1 =
| (Type u1, Type u2) ->
if not
(match pb with
- | CONV -> check_eq univ u1 u2
- | CUMUL -> check_leq univ u1 u2)
+ | CONV -> Univ.check_eq univ u1 u2
+ | CUMUL -> Univ.check_leq univ u1 u2)
then raise NotConvertible
| (_, _) -> raise NotConvertible