summaryrefslogtreecommitdiff
path: root/src/smt_util/nary_builder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt_util/nary_builder.cpp')
-rw-r--r--src/smt_util/nary_builder.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/smt_util/nary_builder.cpp b/src/smt_util/nary_builder.cpp
index 2c2256d47..6c655ad41 100644
--- a/src/smt_util/nary_builder.cpp
+++ b/src/smt_util/nary_builder.cpp
@@ -77,13 +77,13 @@ Node NaryBuilder::mkAssoc(Kind kind, const std::vector<Node>& children){
/* It's inconceivable we could have enough children for this to fail
* (more than 2^32, in most cases?). */
- AlwaysAssert( newChildren.size() <= max,
- "Too many new children in mkAssociative" );
+ AlwaysAssert(newChildren.size() <= max)
+ << "Too many new children in mkAssociative";
/* It would be really weird if this happened (it would require
* min > 2, for one thing), but let's make sure. */
- AlwaysAssert( newChildren.size() >= min,
- "Too few new children in mkAssociative" );
+ AlwaysAssert(newChildren.size() >= min)
+ << "Too few new children in mkAssociative";
return nm->mkNode(kind,newChildren);
}
@@ -153,7 +153,6 @@ Node RePairAssocCommutativeOperators::case_assoccomm(TNode n){
unsigned N = n.getNumChildren();
Assert(N >= 2);
-
Node last = rePairAssocCommutativeOperators( n[N-1]);
Node nextToLast = rePairAssocCommutativeOperators(n[N-2]);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback