summaryrefslogtreecommitdiff
path: root/src/theory/arith
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2019-10-31 14:39:29 -0700
committerAndres Noetzli <andres.noetzli@gmail.com>2019-10-31 14:39:29 -0700
commite5992fc62ac04a7dff4165c2e54282ac06bd7283 (patch)
tree2626b98ecbe62fc82e01fcc7983c1919d25efdf3 /src/theory/arith
parent43ab3f4cd1aa5549cb1aa3c20a2d589614bcb8fc (diff)
Fix Unimplemented() macros missed in #3366. (#3424)
Diffstat (limited to 'src/theory/arith')
-rw-r--r--src/theory/arith/arith_rewriter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/arith_rewriter.cpp b/src/theory/arith/arith_rewriter.cpp
index c8a03fab1..c95d6f53d 100644
--- a/src/theory/arith/arith_rewriter.cpp
+++ b/src/theory/arith/arith_rewriter.cpp
@@ -206,7 +206,7 @@ RewriteResponse ArithRewriter::postRewriteTerm(TNode t){
if(t[0].getType().isInteger()) {
return RewriteResponse(REWRITE_DONE, t[0]);
}
- //Unimplemented("TO_INTEGER, nonconstant");
+ //Unimplemented() << "TO_INTEGER, nonconstant";
//return rewriteToInteger(t);
return RewriteResponse(REWRITE_DONE, t);
case kind::IS_INTEGER:
@@ -216,7 +216,7 @@ RewriteResponse ArithRewriter::postRewriteTerm(TNode t){
if(t[0].getType().isInteger()) {
return RewriteResponse(REWRITE_DONE, NodeManager::currentNM()->mkConst(true));
}
- //Unimplemented("IS_INTEGER, nonconstant");
+ //Unimplemented() << "IS_INTEGER, nonconstant";
//return rewriteIsInteger(t);
return RewriteResponse(REWRITE_DONE, t);
case kind::POW:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback