summaryrefslogtreecommitdiff
path: root/src/theory/arith/arith_static_learner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/arith_static_learner.cpp')
-rw-r--r--src/theory/arith/arith_static_learner.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/theory/arith/arith_static_learner.cpp b/src/theory/arith/arith_static_learner.cpp
index 2138b513e..e17605ead 100644
--- a/src/theory/arith/arith_static_learner.cpp
+++ b/src/theory/arith/arith_static_learner.cpp
@@ -163,8 +163,8 @@ void ArithStaticLearner::iteMinMax(TNode n, NodeBuilder<>& learned){
if(t == cleft && e == cright){
// t == cleft && e == cright
- Assert( t == cleft );
- Assert( e == cright );
+ Assert(t == cleft);
+ Assert(e == cright);
switch(k){
case LT: // (ite (< x y) x y)
case LEQ: { // (ite (<= x y) x y)
@@ -270,9 +270,7 @@ void ArithStaticLearner::addBound(TNode n) {
Debug("arith::static") << "adding bound " << n << endl;
}
break;
- default:
- Unhandled(k);
- break;
+ default: Unhandled() << k; break;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback