summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/bool_to_bv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/preprocessing/passes/bool_to_bv.h')
-rw-r--r--src/preprocessing/passes/bool_to_bv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preprocessing/passes/bool_to_bv.h b/src/preprocessing/passes/bool_to_bv.h
index 210c4e5cd..0bef7c6b5 100644
--- a/src/preprocessing/passes/bool_to_bv.h
+++ b/src/preprocessing/passes/bool_to_bv.h
@@ -108,12 +108,12 @@ class BoolToBV : public PreprocessingPass
Note: it only keeps mappings for ITEs of type bit-vector.
Other ITEs will be in the d_lowerCache
*/
- std::unordered_map<Node, Node, NodeHashFunction> d_iteBVLowerCache;
+ std::unordered_map<Node, Node> d_iteBVLowerCache;
/** Keeps track of other lowered nodes
-- will be cleared periodically in ITE mode
*/
- std::unordered_map<Node, Node, NodeHashFunction> d_lowerCache;
+ std::unordered_map<Node, Node> d_lowerCache;
/** Stores the bool-to-bv mode option */
options::BoolToBVMode d_boolToBVMode;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback