summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-09-17 20:36:36 -0500
committerGitHub <noreply@github.com>2018-09-17 20:36:36 -0500
commitf807ab4124630719dcbed14f22d03a857dcdab02 (patch)
treeb13c06be2455d8a8cbf35e129191734495fda77d /src/theory/quantifiers_engine.cpp
parent83be77ff113cbc0357796fb8121091eed2c95ab1 (diff)
Clean remaining references to getNextDecisionRequest in quantifiers. (#2484)
Diffstat (limited to 'src/theory/quantifiers_engine.cpp')
-rw-r--r--src/theory/quantifiers_engine.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/theory/quantifiers_engine.cpp b/src/theory/quantifiers_engine.cpp
index 516f31efc..7a5652e2f 100644
--- a/src/theory/quantifiers_engine.cpp
+++ b/src/theory/quantifiers_engine.cpp
@@ -936,19 +936,6 @@ void QuantifiersEngine::assertQuantifier( Node f, bool pol ){
addTermToDatabase(d_term_util->getInstConstantBody(f), true);
}
-Node QuantifiersEngine::getNextDecisionRequest( unsigned& priority ){
- unsigned min_priority = 0;
- Node dec;
- for( unsigned i=0; i<d_modules.size(); i++ ){
- Node n = d_modules[i]->getNextDecisionRequest( priority );
- if( !n.isNull() && ( dec.isNull() || priority<min_priority ) ){
- dec = n;
- min_priority = priority;
- }
- }
- return dec;
-}
-
void QuantifiersEngine::addTermToDatabase( Node n, bool withinQuant, bool withinInstClosure ){
if( options::incrementalSolving() ){
if( d_presolve_in.find( n )==d_presolve_in.end() ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback