]> git.unchartedbackwaters.co.uk Git - francis/stp.git/commitdiff
Bugfix. Running with -t would fail if the shortcut was taken.
authortrevor_hansen <trevor_hansen@e59a4935-1847-0410-ae03-e826735625c1>
Fri, 14 Jan 2011 23:35:48 +0000 (23:35 +0000)
committertrevor_hansen <trevor_hansen@e59a4935-1847-0410-ae03-e826735625c1>
Fri, 14 Jan 2011 23:35:48 +0000 (23:35 +0000)
git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1064 e59a4935-1847-0410-ae03-e826735625c1

src/simplifier/bvsolver.cpp

index b151e79ef66138848d269e31884f70bdacabf2d0..51325ff9157a60ad2f0c85ba280792c546c85ef1 100644 (file)
@@ -742,8 +742,10 @@ namespace BEEV
         ASTNode aaa = (any_solved && EQ == it->GetKind()) ? _simp->SimplifyFormula(_simp->applySubstitutionMapUntilArrays(*it),false,NULL) : *it;
 
         if (ASTFalse == aaa)
+        {
+               _bm->GetRunTimes()->stop(RunTimes::BVSolver);
                return ASTFalse; // shortcut. It's unsatisfiable.
-
+        }
         aaa = BVSolve_Odd(aaa);
 
         bool even = false;