]> git.unchartedbackwaters.co.uk Git - francis/stp.git/commitdiff
Fix the build.
authortrevor_hansen <trevor_hansen@e59a4935-1847-0410-ae03-e826735625c1>
Wed, 7 Jul 2010 07:37:55 +0000 (07:37 +0000)
committertrevor_hansen <trevor_hansen@e59a4935-1847-0410-ae03-e826735625c1>
Wed, 7 Jul 2010 07:37:55 +0000 (07:37 +0000)
git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@933 e59a4935-1847-0410-ae03-e826735625c1

src/simplifier/constantBitP/ConstantBitPropagation.cpp
src/simplifier/constantBitP/ConstantBitPropagation.h

index 0eeacc656a07943dd29e8d05f27d17526c44fdea..493d7fc71432ab161173db46860b6b1f20aceb3c 100644 (file)
@@ -159,6 +159,7 @@ namespace simplifier
       fixedMap = new NodeToFixedBitsMap(1000); // better to use the function that returns the number of nodes.. whatever that is.
       workList = new WorkList(top);
       dependents = new Dependencies(top); // List of the parents of a node.
+      msm = NULL;
       //msm = new MultiplicationStatsMap();
 
 
@@ -576,7 +577,7 @@ namespace simplifier
 
       assert(status != CONFLICT);
       status = dispatchToTransferFunctions(k, children, *output, n, msm);
-      //result = dispatchToMaximallyPrecise(k, children, *output, n);
+      //result = dispatchToMaximallyPrecise(k, children, *output, n,msm);
 
       assert(((unsigned)output->getWidth()) == n.GetValueWidth() || output->getWidth() ==1);
 
index 2ae6aafe504c5dae5667b2b9e33e49e7c9a40431..4a3d0b17fba235424256c5ffbb4a285a80e0fb8f 100644 (file)
@@ -49,10 +49,7 @@ namespace simplifier
       WorkList *workList;
       Dependencies * dependents;
       Simplifier *simplifier;
-
-#ifdef WITHCBITP
       MultiplicationStatsMap* msm;
-#endif
 
       void
       printNodeWithFixings();