(this is not intended to (and doesn't) address the issue with
NodeBuilder limit)
} else if(child == trivialNode) {
return RewriteResponse(REWRITE_DONE, trivialNode);
} else {
+ visited.insert(child);
if(child.getKind() == k)
toProcess.push_back(child);
else
preprocess_11.cvc \
preprocess_12.cvc \
preprocess_13.cvc \
- preprocess_14.cvc
+ preprocess_14.cvc \
+ preprocess_15.cvc
# Regression tests derived from bug reports
BUG_TESTS =
--- /dev/null
+% EXPECT: sat
+
+a0, a1, a2, a3, a4, a5, a6, a7, a8, a9: BOOLEAN;
+
+ASSERT (a5);
+
+ASSERT (a0 OR (a1 AND (a2 OR (a3 AND (a4 AND (a5 AND (TRUE AND (a3 AND (a6 AND (a7 AND (a8 AND a9)))))))))));
+
+CHECKSAT;
+
+% EXIT: 10
+