summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/quant_equality_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/quant_equality_engine.cpp')
-rw-r--r--src/theory/quantifiers/quant_equality_engine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/quantifiers/quant_equality_engine.cpp b/src/theory/quantifiers/quant_equality_engine.cpp
index b40212872..dab95f83b 100644
--- a/src/theory/quantifiers/quant_equality_engine.cpp
+++ b/src/theory/quantifiers/quant_equality_engine.cpp
@@ -16,7 +16,7 @@
#include "theory/quantifiers/quant_equality_engine.h"
#include "theory/rewriter.h"
-#include "theory/quantifiers/term_database.h"
+#include "theory/quantifiers/term_util.h"
using namespace CVC4;
using namespace std;
@@ -94,11 +94,11 @@ void QuantEqualityEngine::assertNode( Node n ) {
Node t1;
Node t2;
if( lit.getKind()==APPLY_UF || lit.getKind()==EQUAL ){
- lit = getTermDatabase()->getCanonicalTerm( lit );
+ lit = getTermUtil()->getCanonicalTerm( lit );
Trace("qee-debug") << "Canonical : " << lit << ", pol = " << pol << std::endl;
if( lit.getKind()==APPLY_UF ){
t1 = getFunctionAppForPredicateApp( lit );
- t2 = pol ? getTermDatabase()->d_one : getTermDatabase()->d_zero;
+ t2 = pol ? getTermUtil()->d_one : getTermUtil()->d_zero;
pol = true;
lit = NodeManager::currentNM()->mkNode( EQUAL, t1, t2 );
}else if( lit.getKind()==EQUAL ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback