summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/ambqi_builder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/ambqi_builder.cpp')
-rw-r--r--src/theory/quantifiers/ambqi_builder.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/theory/quantifiers/ambqi_builder.cpp b/src/theory/quantifiers/ambqi_builder.cpp
index c418d0fb1..0a6df7df5 100644
--- a/src/theory/quantifiers/ambqi_builder.cpp
+++ b/src/theory/quantifiers/ambqi_builder.cpp
@@ -14,6 +14,7 @@
#include "theory/quantifiers/ambqi_builder.h"
#include "options/quantifiers_options.h"
+#include "theory/quantifiers/instantiate.h"
#include "theory/quantifiers/term_database.h"
#include "theory/quantifiers/term_util.h"
@@ -165,7 +166,8 @@ bool AbsDef::addInstantiations( FirstOrderModelAbs * m, QuantifiersEngine * qe,
return true;
}else{
if( depth==q[0].getNumChildren() ){
- if( qe->addInstantiation( q, terms, true ) ){
+ if (qe->getInstantiate()->addInstantiation(q, terms, true))
+ {
Trace("ambqi-inst-debug") << "-> Added instantiation." << std::endl;
inst++;
return true;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback