From: trevor_hansen Date: Wed, 14 Apr 2010 14:02:52 +0000 (+0000) Subject: Bugfix to r667. I discarded a variable instead of adding it into the solver map.... X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=5b1266fe53f723252bf0a309042e30832864ff9d;p=francis%2Fstp.git Bugfix to r667. I discarded a variable instead of adding it into the solver map. This fixes the alvin.cvc problems (r666). git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@674 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/simplifier/bvsolver.cpp b/src/simplifier/bvsolver.cpp index 2779502..76e0098 100644 --- a/src/simplifier/bvsolver.cpp +++ b/src/simplifier/bvsolver.cpp @@ -481,6 +481,8 @@ namespace BEEV assert(BVTypeCheck(newvar)); _simp->UpdateSolverMap(var, newvar); } + else + _simp->UpdateSolverMap(lhs[0], rhs); output = ASTTrue; break; }