summaryrefslogtreecommitdiff
path: root/src/theory/arith/arith_utilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/arith_utilities.h')
-rw-r--r--src/theory/arith/arith_utilities.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/theory/arith/arith_utilities.h b/src/theory/arith/arith_utilities.h
index 4588a5848..d737fefeb 100644
--- a/src/theory/arith/arith_utilities.h
+++ b/src/theory/arith/arith_utilities.h
@@ -207,10 +207,8 @@ inline Node negateConjunctionAsClause(TNode conjunction){
}
inline Node maybeUnaryConvert(NodeBuilder<>& builder){
- Assert(builder.getKind() == kind::OR ||
- builder.getKind() == kind::AND ||
- builder.getKind() == kind::PLUS ||
- builder.getKind() == kind::MULT);
+ Assert(builder.getKind() == kind::OR || builder.getKind() == kind::AND
+ || builder.getKind() == kind::PLUS || builder.getKind() == kind::MULT);
Assert(builder.getNumChildren() >= 1);
if(builder.getNumChildren() == 1){
return builder[0];
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback