LiftedKc: remove unnecessary data members

This commit is contained in:
Tiago Gomes
2013-02-19 23:57:22 +00:00
parent c9543514c5
commit e434e87cc8
2 changed files with 13 additions and 29 deletions

View File

@@ -7,30 +7,21 @@
#include <fstream>
#include "LiftedSolver.h"
#include "LiftedWCNF.h"
#include "ParfactorList.h"
namespace Horus {
class LiftedCircuit;
class LiftedKc : public LiftedSolver {
public:
LiftedKc (const ParfactorList& pfList)
: LiftedSolver(pfList) { }
~LiftedKc (void);
Params solveQuery (const Grounds&);
void printSolverFlags (void) const;
private:
LiftedWCNF* lwcnf_;
LiftedCircuit* circuit_;
ParfactorList pfList_;
DISALLOW_COPY_AND_ASSIGN (LiftedKc);
};