diff options
| author | Gaëtan Gilbert | 2020-04-30 11:29:28 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-05-04 16:54:16 +0200 |
| commit | 7ed5fc97242777655d9128ebf695d18083d5a699 (patch) | |
| tree | 9ca4cc51536f13766d253ea32c756f2ca81d331b /plugins | |
| parent | 96b04a9dc6d548acb712df760ad4a1472b01a8d4 (diff) | |
nit: don't open Persistent_cache in micromega
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/micromega/coq_micromega.ml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/micromega/coq_micromega.ml b/plugins/micromega/coq_micromega.ml index 7e4c4ce5c6..790979354b 100644 --- a/plugins/micromega/coq_micromega.ml +++ b/plugins/micromega/coq_micromega.ml @@ -2029,8 +2029,6 @@ type provername = string * int option * The caching mechanism. *) -open Persistent_cache - module MakeCache (T : sig type prover_option type coeff @@ -2054,7 +2052,7 @@ struct Hash.((hash_pair T.hash_prover_option (List.fold_left hash_cstr)) 0) end - include PHashtable (E) + include Persistent_cache.PHashtable (E) let memo_opt use_cache cache_file f = let memof = memo cache_file f in |
