Skip to content

Commit

Permalink
FIX output
Browse files Browse the repository at this point in the history
  • Loading branch information
Oscar Riveros committed Aug 7, 2019
1 parent cffdd47 commit a9f7734
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions slime/src/Main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ int main(int argc, char *argv[]) {
vec<Lit> assumptions;
lbool result = S.solveLimited(assumptions);

printf("\n");

printf(result == l_True ? "s SATISFIABLE\nv " : result == l_False ? "s UNSATISFIABLE\n" : "s UNKNOWN\n");
if (result == l_True) {
for (long i = 0; i < S.nVars(); i++)
Expand Down

0 comments on commit a9f7734

Please sign in to comment.