summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-08-20 22:01:14 +0000
committerMorgan Deters <mdeters@gmail.com>2012-08-20 22:01:14 +0000
commit59046763d2e5b26d720a3a320b351292bad867ac (patch)
tree258cd2b37fee258c513417304676aaac57664dba /src/theory/quantifiers_engine.cpp
parentbd45444319c0baa11b530184e3065df3a2d926a2 (diff)
remove duplicate function TheoryEngine::getTheory(TheoryId). It was a duplicate of TheoryEngine::theoryOf(TheoryId)
Diffstat (limited to 'src/theory/quantifiers_engine.cpp')
-rw-r--r--src/theory/quantifiers_engine.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/theory/quantifiers_engine.cpp b/src/theory/quantifiers_engine.cpp
index df08312b1..3dcd20d78 100644
--- a/src/theory/quantifiers_engine.cpp
+++ b/src/theory/quantifiers_engine.cpp
@@ -101,19 +101,19 @@ QuantifiersEngine::~QuantifiersEngine(){
}
Instantiator* QuantifiersEngine::getInstantiator( theory::TheoryId id ){
- return d_te->getTheory( id )->getInstantiator();
+ return d_te->theoryOf( id )->getInstantiator();
}
context::Context* QuantifiersEngine::getSatContext(){
- return d_te->getTheory( THEORY_QUANTIFIERS )->getSatContext();
+ return d_te->theoryOf( THEORY_QUANTIFIERS )->getSatContext();
}
OutputChannel& QuantifiersEngine::getOutputChannel(){
- return d_te->getTheory( THEORY_QUANTIFIERS )->getOutputChannel();
+ return d_te->theoryOf( THEORY_QUANTIFIERS )->getOutputChannel();
}
/** get default valuation for the quantifiers engine */
Valuation& QuantifiersEngine::getValuation(){
- return d_te->getTheory( THEORY_QUANTIFIERS )->getValuation();
+ return d_te->theoryOf( THEORY_QUANTIFIERS )->getValuation();
}
void QuantifiersEngine::check( Theory::Effort e ){
@@ -211,7 +211,7 @@ void QuantifiersEngine::registerQuantifier( Node f ){
generatePhaseReqs( quants[q], ceBody );
//also register it with the strong solver
if( options::finiteModelFind() ){
- ((uf::TheoryUF*)d_te->getTheory( THEORY_UF ))->getStrongSolver()->registerQuantifier( quants[q] );
+ ((uf::TheoryUF*)d_te->theoryOf( THEORY_UF ))->getStrongSolver()->registerQuantifier( quants[q] );
}
}
}
@@ -723,7 +723,7 @@ Node EqualityQueryQuantifiersEngine::getInternalRepresentative( Node a ){
}
eq::EqualityEngine* EqualityQueryQuantifiersEngine::getEngine(){
- return ((uf::TheoryUF*)d_qe->getTheoryEngine()->getTheory( THEORY_UF ))->getEqualityEngine();
+ return ((uf::TheoryUF*)d_qe->getTheoryEngine()->theoryOf( THEORY_UF ))->getEqualityEngine();
}
void EqualityQueryQuantifiersEngine::getEquivalenceClass( Node a, std::vector< Node >& eqc ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback