From: Enrico Tassi Date: Tue, 16 May 2006 08:21:51 +0000 (+0000) Subject: hashtbl on cic terms is a bit faster X-Git-Tag: make_still_working~7367 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=1aa36efd14e9d62adf8232f37bdf55101c70ba43;p=helm.git hashtbl on cic terms is a bit faster --- diff --git a/helm/software/components/cic/cic.ml b/helm/software/components/cic/cic.ml index 64825e505..1becd4442 100644 --- a/helm/software/components/cic/cic.ml +++ b/helm/software/components/cic/cic.ml @@ -234,7 +234,7 @@ module CicHash = (struct type t = term let equal = (==) - let hash = Hashtbl.hash + let hash = Hashtbl.hash_param 100 1000 end) ;;