summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/theory/arith/theory_arith.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/theory/arith/theory_arith.cpp b/src/theory/arith/theory_arith.cpp
index 2b0d9149d..17c2b51f3 100644
--- a/src/theory/arith/theory_arith.cpp
+++ b/src/theory/arith/theory_arith.cpp
@@ -1949,8 +1949,8 @@ bool TheoryArith::getDeltaAtomValue(TNode n) {
DeltaRational TheoryArith::getDeltaValue(TNode n) {
- Assert(d_qflraStatus != Result::SAT_UNKNOWN);
- Assert(!d_nlIncomplete);
+ AlwaysAssert(d_qflraStatus != Result::SAT_UNKNOWN);
+ AlwaysAssert(!d_nlIncomplete);
Debug("arith::value") << n << std::endl;
switch(n.getKind()) {
@@ -2007,8 +2007,8 @@ DeltaRational TheoryArith::getDeltaValue(TNode n) {
}
DeltaRational TheoryArith::getDeltaValueWithNonlinear(TNode n, bool& failed) {
- Assert(d_qflraStatus != Result::SAT_UNKNOWN);
- Assert(d_nlIncomplete);
+ AlwaysAssert(d_qflraStatus != Result::SAT_UNKNOWN);
+ AlwaysAssert(d_nlIncomplete);
Debug("arith::value") << n << std::endl;
@@ -2074,8 +2074,8 @@ DeltaRational TheoryArith::getDeltaValueWithNonlinear(TNode n, bool& failed) {
}
void TheoryArith::collectModelInfo( TheoryModel* m, bool fullModel ){
- Assert(d_qflraStatus == Result::SAT);
- Assert(!d_nlIncomplete);
+ AlwaysAssert(d_qflraStatus == Result::SAT);
+ AlwaysAssert(!d_nlIncomplete, "Arithmetic solver cannot currently produce models for input with nonlinear arithmetic constraints");
Debug("arith::collectModelInfo") << "collectModelInfo() begin " << endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback