Skip to content

Commit

Permalink
fix(opensmt/smtsolvers/CoreSMTSolver.h): make CoreSMTSolver::filterUn…
Browse files Browse the repository at this point in the history
…assigned pure virtual
  • Loading branch information
soonhokong committed May 7, 2015
1 parent 248af48 commit 854c4fb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions src/opensmt/smtsolvers/CoreSMTSolver.C
Original file line number Diff line number Diff line change
Expand Up @@ -1839,9 +1839,6 @@ lbool CoreSMTSolver::search(int nof_conflicts, int nof_learnts)
}
}

void CoreSMTSolver::filterUnassigned(){
}

double CoreSMTSolver::progressEstimate() const
{
double progress = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/opensmt/smtsolvers/CoreSMTSolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class CoreSMTSolver : public SMTSolver
lbool search (int nof_conflicts, int nof_learnts); // Search for a given number of conflicts.
void reduceDB (); // Reduce the set of learnt clauses.
void removeSatisfied (vec<Clause*>& cs); // Shrink 'cs' to contain only non-satisfied clauses.
virtual void filterUnassigned (); // Filter decision variables that don't need a decision
virtual void filterUnassigned () = 0; // Filter decision variables that don't need a decision

// Maintaining Variable/Clause activity:
//
Expand Down

0 comments on commit 854c4fb

Please sign in to comment.