diff options
| author | Hugo Herbelin | 2015-08-02 14:45:24 +0200 |
|---|---|---|
| committer | Hugo Herbelin | 2015-08-02 19:13:51 +0200 |
| commit | 979de570714d340aaab7a6e99e08d46aa616e7da (patch) | |
| tree | cdc7c70266c00b267dba9e698a40b79bb381ceae /lib/cSet.ml | |
| parent | f556da10a117396c2c796f6915321b67849f65cd (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.ml | 2 |
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 |
