Fix tabbing
[satune.git] / src / AST / rewriter.cc
index fef4dcbb17aaf40626791272a67db9d68cf0de11..a53180e1ef972b87964c00dd04ed91ae2e107b77 100644 (file)
@@ -23,7 +23,7 @@ void CSolver::replaceBooleanWithFalseNoRemove(BooleanEdge bexpr) {
 void CSolver::replaceBooleanWithTrueNoRemove(BooleanEdge bexpr) {
        updateMustValue(bexpr.getBoolean(), bexpr.isNegated() ? BV_MUSTBEFALSE : BV_MUSTBETRUE);
 
-       ASSERT((bexpr->boolVal != BV_UNSAT ) || unsat);
+       ASSERT((bexpr->boolVal != BV_UNSAT) || unsat);
 
        uint size = bexpr->parents.getSize();
        for (uint i = 0; i < size; i++) {