summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/quant_conflict_find.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2014-10-10 23:27:39 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2014-10-10 23:27:45 +0200
commit089d232454e89dc44a6ca2136f9b408c9335d8f1 (patch)
tree21c815088431e820ccc3b3e42fa05e5a5a9bea68 /src/theory/quantifiers/quant_conflict_find.cpp
parent859ab54a3cc8afdc01980e3e97e91b45480586dc (diff)
Initial draft of CEGQI.
Diffstat (limited to 'src/theory/quantifiers/quant_conflict_find.cpp')
-rwxr-xr-xsrc/theory/quantifiers/quant_conflict_find.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/theory/quantifiers/quant_conflict_find.cpp b/src/theory/quantifiers/quant_conflict_find.cpp
index 060994379..8136bf11e 100755
--- a/src/theory/quantifiers/quant_conflict_find.cpp
+++ b/src/theory/quantifiers/quant_conflict_find.cpp
@@ -1851,27 +1851,6 @@ void QuantConflictFind::assertNode( Node q ) {
}
}
-eq::EqualityEngine * QuantConflictFind::getEqualityEngine() {
- //return ((uf::TheoryUF*)d_quantEngine->getTheoryEngine()->theoryOf( theory::THEORY_UF ))->getEqualityEngine();
- return d_quantEngine->getTheoryEngine()->getMasterEqualityEngine();
-}
-bool QuantConflictFind::areEqual( Node n1, Node n2 ) {
- return getEqualityEngine()->hasTerm( n1 ) && getEqualityEngine()->hasTerm( n2 ) && getEqualityEngine()->areEqual( n1,n2 );
-}
-bool QuantConflictFind::areDisequal( Node n1, Node n2 ) {
- return n1!=n2 && getEqualityEngine()->hasTerm( n1 ) && getEqualityEngine()->hasTerm( n2 ) && getEqualityEngine()->areDisequal( n1,n2, false );
-}
-Node QuantConflictFind::getRepresentative( Node n ) {
- if( getEqualityEngine()->hasTerm( n ) ){
- return getEqualityEngine()->getRepresentative( n );
- }else{
- return n;
- }
-}
-TermDb* QuantConflictFind::getTermDatabase() {
- return d_quantEngine->getTermDatabase();
-}
-
Node QuantConflictFind::evaluateTerm( Node n ) {
if( MatchGen::isHandledUfTerm( n ) ){
Node f = MatchGen::getOperator( this, n );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback