diff options
| author | Matthieu Sozeau | 2014-12-17 18:36:24 +0100 |
|---|---|---|
| committer | Matthieu Sozeau | 2014-12-17 18:37:45 +0100 |
| commit | e4ac6f91e8d95a168cdaeaec72cf761b7b6da4b7 (patch) | |
| tree | 62c804059699ff38055c4e93b9d53dfafebe8273 /kernel/names.ml | |
| parent | 00f82e4411ebbab16fcab99e6c563852a87507a3 (diff) | |
Fix (actually, properly implement :) hashconsing of projections,
resulting in huge speedup at Qed/section closing in presence of
primitive projections.
Diffstat (limited to 'kernel/names.ml')
| -rw-r--r-- | kernel/names.ml | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/kernel/names.ml b/kernel/names.ml index 5d73bd5209..13ea9e1d86 100644 --- a/kernel/names.ml +++ b/kernel/names.ml @@ -794,10 +794,23 @@ struct let unfolded = snd let unfold (c, b as p) = if b then p else (c, true) let equal (c, b) (c', b') = Constant.equal c c' && b == b' + let hash (c, b) = (if b then 0 else 1) + Constant.hash c - let hashcons (c, b as x) = - let c' = hcons_con c in - if c' == c then x else (c', b) + + module Self_Hashcons = + struct + type _t = t + type t = _t + type u = Constant.t -> Constant.t + let hashcons hc (c,b) = (hc c,b) + let equal ((c,b) as x) ((c',b') as y) = + x == y || (c == c' && b == b') + let hash = hash + end + + module HashProjection = Hashcons.Make(Self_Hashcons) + + let hcons = Hashcons.simple_hcons HashProjection.generate hcons_con let compare (c, b) (c', b') = if b == b' then Constant.CanOrd.compare c c' |
