summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/fmf/model_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/fmf/model_engine.cpp')
-rw-r--r--src/theory/quantifiers/fmf/model_engine.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/theory/quantifiers/fmf/model_engine.cpp b/src/theory/quantifiers/fmf/model_engine.cpp
index 747b0621f..e58f66d0b 100644
--- a/src/theory/quantifiers/fmf/model_engine.cpp
+++ b/src/theory/quantifiers/fmf/model_engine.cpp
@@ -301,8 +301,11 @@ void ModelEngine::exhaustiveInstantiate( Node f, int effort ){
Debug("fmf-model-eval") << "* Add instantiation " << m << std::endl;
triedLemmas++;
//add as instantiation
- if (inst->addInstantiation(
- f, m.d_vals, InferenceId::QUANTIFIERS_INST_FMF_EXH, true))
+ if (inst->addInstantiation(f,
+ m.d_vals,
+ InferenceId::QUANTIFIERS_INST_FMF_EXH,
+ Node::null(),
+ true))
{
addedLemmas++;
if (d_qstate.isInConflict())
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback