summaryrefslogtreecommitdiff
path: root/src/smt/preprocessor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/preprocessor.cpp')
-rw-r--r--src/smt/preprocessor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/smt/preprocessor.cpp b/src/smt/preprocessor.cpp
index a222568d3..7406b922e 100644
--- a/src/smt/preprocessor.cpp
+++ b/src/smt/preprocessor.cpp
@@ -112,12 +112,12 @@ void Preprocessor::cleanup() { d_processor.cleanup(); }
Node Preprocessor::expandDefinitions(const Node& n)
{
- std::unordered_map<Node, Node, NodeHashFunction> cache;
+ std::unordered_map<Node, Node> cache;
return expandDefinitions(n, cache);
}
-Node Preprocessor::expandDefinitions(
- const Node& node, std::unordered_map<Node, Node, NodeHashFunction>& cache)
+Node Preprocessor::expandDefinitions(const Node& node,
+ std::unordered_map<Node, Node>& cache)
{
Trace("smt") << "SMT expandDefinitions(" << node << ")" << endl;
// Substitute out any abstract values in node.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback