summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-05-24 14:24:44 -0500
committerGitHub <noreply@github.com>2018-05-24 14:24:44 -0500
commitd12c7561624de9a2ae6cf10a7fa2bd9c97b2bc5e (patch)
treea9350c77b9807b2923b24bd2deec920ed1900e9a
parentd02e1cb3eb74380495aa3ff9e57fd04e4411aa55 (diff)
Fix (#1975)
-rw-r--r--src/theory/arith/nonlinear_extension.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/arith/nonlinear_extension.cpp b/src/theory/arith/nonlinear_extension.cpp
index be8f22222..a323ccddd 100644
--- a/src/theory/arith/nonlinear_extension.cpp
+++ b/src/theory/arith/nonlinear_extension.cpp
@@ -1735,7 +1735,7 @@ bool NonlinearExtension::simpleCheckModelMsum(const std::map<Node, Node>& msum,
}
else
{
- vc_set_lower = (signs[i] == setAbs);
+ vc_set_lower = (signs[i] != setAbs);
}
Trace("nl-ext-cms-debug")
<< "..." << vc << " set to " << (vc_set_lower ? "lower" : "upper")
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback