From 41b74ab2155cb4c45bba5e6e4c30b89e8f1b2f40 Mon Sep 17 00:00:00 2001 From: Jakob Rath Date: Thu, 25 Aug 2022 16:37:38 +0200 Subject: [PATCH] newline is implicit --- src/math/polysat/simplify_clause.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/polysat/simplify_clause.cpp b/src/math/polysat/simplify_clause.cpp index 4b8231479..dbdaf6833 100644 --- a/src/math/polysat/simplify_clause.cpp +++ b/src/math/polysat/simplify_clause.cpp @@ -111,7 +111,7 @@ namespace polysat { continue; if (e.interval.currently_contains(f.interval)) { // f subset of e ==> f.src subsumes e.src - LOG("Literal " << s.lit2cnstr(cl[i]) << " subsumed by " << s.lit2cnstr(cl[j]) << "\n"); + LOG("Literal " << s.lit2cnstr(cl[i]) << " subsumed by " << s.lit2cnstr(cl[j])); e.subsumed = true; any_subsumed = true; break;