From: trevor_hansen Date: Thu, 13 Jan 2011 02:08:43 +0000 (+0000) Subject: Bugfix. I forgot the return on a function. This only caused a problem if STP tried... X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=e7c7920a22f119c5a24ff12760f9b4be826ebfa7;p=francis%2Fstp.git Bugfix. I forgot the return on a function. This only caused a problem if STP tried to return a wrong answer. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1062 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/absrefine_counterexample/AbstractionRefinement.cpp b/src/absrefine_counterexample/AbstractionRefinement.cpp index a5ffcd3..ea24277 100644 --- a/src/absrefine_counterexample/AbstractionRefinement.cpp +++ b/src/absrefine_counterexample/AbstractionRefinement.cpp @@ -146,6 +146,7 @@ namespace BEEV return CallSAT_ResultCheck(SatSolver, RemainingAxioms, original_input, tosat); } + return SOLVER_UNDECIDED; } //end of SATBased_ArrayReadRefinement