summaryrefslogtreecommitdiff
path: root/src/theory/arith/nl/nl_model.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/nl/nl_model.cpp')
-rw-r--r--src/theory/arith/nl/nl_model.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/theory/arith/nl/nl_model.cpp b/src/theory/arith/nl/nl_model.cpp
index cc10d6659..fbc38fbc2 100644
--- a/src/theory/arith/nl/nl_model.cpp
+++ b/src/theory/arith/nl/nl_model.cpp
@@ -16,6 +16,7 @@
#include "expr/node_algorithm.h"
#include "options/arith_options.h"
+#include "options/smt_options.h"
#include "options/theory_options.h"
#include "theory/arith/arith_msum.h"
#include "theory/arith/arith_utilities.h"
@@ -325,7 +326,7 @@ bool NlModel::checkModel(const std::vector<Node>& assertions,
Node v = cb.first;
Node pred = nm->mkNode(AND, nm->mkNode(GEQ, v, l), nm->mkNode(GEQ, u, v));
pred = nm->mkNode(OR, mg.negate(), pred);
- lemmas.push_back(pred);
+ lemmas.emplace_back(pred);
}
}
return true;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback