Skip to content

Commit

Permalink
Revert "get rid of unused variable warning"
Browse files Browse the repository at this point in the history
This reverts commit 21c9420.
  • Loading branch information
Udopia committed Mar 24, 2020
1 parent 21c9420 commit 0b17b48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions minisat/core/Dimacs.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ static void readClause(B& in, Solver& S, vec<Lit>& lits) {
template<class B, class Solver>
static void parse_DIMACS_main(B& in, Solver& S, bool strictp = false) {
vec<Lit> lits;
//int vars = 0;
int vars = 0;
int clauses = 0;
int cnt = 0;
for (;;){
skipWhitespace(in);
if (*in == EOF) break;
else if (*in == 'p'){
if (eagerMatch(in, "p cnf")){
//vars = parseInt(in);
vars = parseInt(in);
clauses = parseInt(in);
// SATRACE'06 hack
// if (clauses > 4000000)
Expand Down

0 comments on commit 0b17b48

Please sign in to comment.