summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/term_util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/term_util.cpp')
-rw-r--r--src/theory/quantifiers/term_util.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/quantifiers/term_util.cpp b/src/theory/quantifiers/term_util.cpp
index 9db3dd020..b771db986 100644
--- a/src/theory/quantifiers/term_util.cpp
+++ b/src/theory/quantifiers/term_util.cpp
@@ -123,7 +123,7 @@ Node TermUtil::getRemoveQuantifiers( Node n ) {
//quantified simplify
Node TermUtil::getQuantSimplify( Node n ) {
- std::unordered_set<Node, NodeHashFunction> fvs;
+ std::unordered_set<Node> fvs;
expr::getFreeVariables(n, fvs);
if (fvs.empty())
{
@@ -156,8 +156,8 @@ void TermUtil::computeVarContainsInternal(Node n,
Kind k,
std::vector<Node>& vars)
{
- std::unordered_set<TNode, TNodeHashFunction> visited;
- std::unordered_set<TNode, TNodeHashFunction>::iterator it;
+ std::unordered_set<TNode> visited;
+ std::unordered_set<TNode>::iterator it;
std::vector<TNode> visit;
TNode cur;
visit.push_back(n);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback