summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/ackermann.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/preprocessing/passes/ackermann.cpp')
-rw-r--r--src/preprocessing/passes/ackermann.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/preprocessing/passes/ackermann.cpp b/src/preprocessing/passes/ackermann.cpp
index 7ba689d0a..4b5873e80 100644
--- a/src/preprocessing/passes/ackermann.cpp
+++ b/src/preprocessing/passes/ackermann.cpp
@@ -23,6 +23,7 @@
#include "preprocessing/passes/ackermann.h"
+#include "base/check.h"
#include "options/options.h"
using namespace CVC4;
@@ -169,9 +170,8 @@ void collectFunctionsAndLemmas(FunctionToArgsMap& fun_to_args,
}
else
{
- AlwaysAssert(
- term.getKind() != kind::STORE,
- "Cannot use Ackermannization on formula with stores to arrays");
+ AlwaysAssert(term.getKind() != kind::STORE)
+ << "Cannot use Ackermannization on formula with stores to arrays";
/* add children to the vector, so that they are processed later */
for (TNode n : term)
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback