forgot to commit this one, fixing build errors
authorDejan Jovanović <dejan.jovanovic@gmail.com>
Mon, 26 Mar 2012 12:23:54 +0000 (12:23 +0000)
committerDejan Jovanović <dejan.jovanovic@gmail.com>
Mon, 26 Mar 2012 12:23:54 +0000 (12:23 +0000)
test/unit/prop/cnf_stream_black.h

index e9cba5f9c3cbceeb9e5d67c765633823dab11016..d1f79f6ab04224251a16a6398f0771081c140b3c 100644 (file)
@@ -28,7 +28,7 @@
 #include "context/context.h"
 #include "prop/cnf_stream.h"
 #include "prop/prop_engine.h"
-#include "prop/sat.h"
+#include "prop/theory_proxy.h"
 #include "smt/smt_engine.h"
 
 #include "theory/theory.h"
@@ -45,7 +45,7 @@ using namespace CVC4::prop;
 using namespace std;
 
 /* This fake class relies on the face that a MiniSat variable is just an int. */
-class FakeSatSolver : public SatSolverInterface {
+class FakeSatSolver : public SatSolver {
   SatVariable d_nextVar;
   bool d_addClauseCalled;
 
@@ -71,7 +71,7 @@ public:
     return d_addClauseCalled;
   }
 
-  int getAssertionLevel() const {
+  unsigned getAssertionLevel() const {
     return 0;
   }