]> matita.cs.unibo.it Git - helm.git/commitdiff
renamed add_le_constraint to add_constraint since it adds both le and lt constraints
authorEnrico Tassi <enrico.tassi@inria.fr>
Mon, 19 May 2008 11:41:21 +0000 (11:41 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Mon, 19 May 2008 11:41:21 +0000 (11:41 +0000)
helm/software/components/ng_kernel/nCicEnvironment.ml
helm/software/components/ng_kernel/nCicEnvironment.mli

index fa229d6f6752b5e82948af0d89f00041891c7193..de785bde8b4b009f5bc39526ec601ab43cbd8732 100644 (file)
@@ -38,9 +38,9 @@ let universe_leq a b =
      raise (BadConstraint
       (lazy "trying to check if a universe is less or equal than an inferred universe"))
 
-let universe_eq a b = universe_leq b a || universe_leq a b
+let universe_eq a b = universe_leq b a && universe_leq a b
 
-let add_le_constraint strict a b = 
+let add_constraint strict a b = 
   match a,b with
   | [false,a2],[false,b2] -> 
       if not (le_path_uri [] strict a2 b2) then (
index 7fa352901fd63ea2b949d6d80a8a5262b315dd19..272530a1a6d5e10fe34611b5b620295a2a26580a 100644 (file)
@@ -24,11 +24,11 @@ val type0: NCic.universe
 (* universe_* raise BadConstraints if the second arg. is an inferred universe *)
 val universe_eq: NCic.universe -> NCic.universe -> bool
 val universe_leq: NCic.universe -> NCic.universe -> bool
-(* add_le_constraint raise BadConstraint in case of universe inconsistency
+(* add_constraint raise BadConstraint in case of universe inconsistency
    or if the second argument is an inferred universe
    true -> strict check (<); false -> loose check (<=)
 *)
-val add_le_constraint: bool -> NCic.universe -> NCic.universe -> unit
+val add_constraint: bool -> NCic.universe -> NCic.universe -> unit
 
 val get_checked_def:
   NReference.reference ->