aboutsummaryrefslogtreecommitdiff
path: root/lib/cSet.ml
diff options
context:
space:
mode:
authorHugo Herbelin2015-08-02 14:45:24 +0200
committerHugo Herbelin2015-08-02 19:13:51 +0200
commit979de570714d340aaab7a6e99e08d46aa616e7da (patch)
treecdc7c70266c00b267dba9e698a40b79bb381ceae /lib/cSet.ml
parentf556da10a117396c2c796f6915321b67849f65cd (diff)
A patch renaming equal into eq in the module dealing with
hash-consing, so as to avoid having too many kinds of equalities with same name.
Diffstat (limited to 'lib/cSet.ml')
-rw-r--r--lib/cSet.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cSet.ml b/lib/cSet.ml
index d7d5c70b39..783165630e 100644
--- a/lib/cSet.ml
+++ b/lib/cSet.ml
@@ -57,7 +57,7 @@ struct
open Hashset.Combine
type t = set
type u = M.t -> M.t
- let equal s1 s2 = s1 == s2 || eqeq (spine s1 []) (spine s2 [])
+ let eq s1 s2 = s1 == s2 || eqeq (spine s1 []) (spine s2 [])
let hash s = Set.fold (fun v accu -> combine (H.hash v) accu) s 0
let hashcons = umap
end