From: trevor_hansen Date: Sun, 28 Nov 2010 04:05:49 +0000 (+0000) Subject: Enable constant bit Propagation with CNF generation. X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=97f170ee4032a1868dca9282d878276c03d074cf;p=francis%2Fstp.git Enable constant bit Propagation with CNF generation. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1034 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/STPManager/STP.cpp b/src/STPManager/STP.cpp index 4011c2d..28036f0 100644 --- a/src/STPManager/STP.cpp +++ b/src/STPManager/STP.cpp @@ -263,7 +263,6 @@ namespace BEEV { { simplifier::constantBitP::ConstantBitPropagation* cb = NULL; -#ifdef WITHCBITP if (bm->UserFlags.bitConstantProp_flag) { bm->ASTNodeStats("Before Constant Bit Propagation begins: ", @@ -278,7 +277,6 @@ namespace BEEV { if (cb->isUnsatisfiable()) simplified_solved_InputToSAT = bm->ASTFalse; } -#endif ToSATAIG toSATAIG(bm,cb);