aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorVincent Laporte2020-05-14 08:26:44 +0200
committerVincent Laporte2020-05-14 08:26:44 +0200
commit86867b4779269dd25f1cf49099dda0e6f23e6ab2 (patch)
treeefe0a146474bb0433b7c6bc84376050cb417383c /plugins
parent734d73205097323f732fd218dcfb72a7355a77b3 (diff)
parent7ed5fc97242777655d9128ebf695d18083d5a699 (diff)
Merge PR #12214: nit: don't open Persistent_cache in micromega
Reviewed-by: vbgl
Diffstat (limited to 'plugins')
-rw-r--r--plugins/micromega/coq_micromega.ml4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/micromega/coq_micromega.ml b/plugins/micromega/coq_micromega.ml
index ee2c87d19a..0f8d941b41 100644
--- a/plugins/micromega/coq_micromega.ml
+++ b/plugins/micromega/coq_micromega.ml
@@ -1897,8 +1897,6 @@ type provername = string * int option
* The caching mechanism.
*)
-open Persistent_cache
-
module MakeCache (T : sig
type prover_option
type coeff
@@ -1922,7 +1920,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