Skip to content

Commit 613a17b

Browse files
committed
ezsat: fix incorrect logging references to function names
1 parent 6da543a commit 613a17b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libs/ezsat/ezsat.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -676,10 +676,10 @@ void ezSAT::preSolverCallback()
676676
bool ezSAT::solver(const std::vector<int>&, std::vector<bool>&, const std::vector<int>&)
677677
{
678678
preSolverCallback();
679-
fprintf(stderr, "************************************************************************\n");
680-
fprintf(stderr, "ERROR: You are trying to use the solve() method of the ezSAT base class!\n");
679+
fprintf(stderr, "*************************************************************************\n");
680+
fprintf(stderr, "ERROR: You are trying to use the solver() method of the ezSAT base class!\n");
681681
fprintf(stderr, "Use a dervied class like ezMiniSAT instead.\n");
682-
fprintf(stderr, "************************************************************************\n");
682+
fprintf(stderr, "*************************************************************************\n");
683683
abort();
684684
}
685685

@@ -1332,7 +1332,7 @@ void ezSAT::printInternalState(FILE *f) const
13321332
fprintf(f, "\n");
13331333
}
13341334
if (cnfConsumed)
1335-
fprintf(f, " *** more clauses consumed via cnfConsume() ***\n");
1335+
fprintf(f, " *** more clauses consumed via consumeCnf() ***\n");
13361336

13371337
fprintf(f, "--8<-- snap --8<--\n");
13381338
}

0 commit comments

Comments
 (0)