From: trevor_hansen Date: Tue, 18 Jan 2011 12:35:57 +0000 (+0000) Subject: Bugfix. Experimental. Complicated input caused an assertion failure. Switching this... X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=e81c7e2d02087b99e5ecbd4c5f03bbe5b8ecf076;p=francis%2Fstp.git Bugfix. Experimental. Complicated input caused an assertion failure. Switching this option is the easy way to fix it. I'm not sure this is the right thing to do. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1066 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/absrefine_counterexample/CounterExample.cpp b/src/absrefine_counterexample/CounterExample.cpp index 6b30fa0..2edeefe 100644 --- a/src/absrefine_counterexample/CounterExample.cpp +++ b/src/absrefine_counterexample/CounterExample.cpp @@ -96,7 +96,7 @@ namespace BEEV //counter-example. First convert the index into a constant. then //construct the appropriate array-read and store it in the //counterexample - ASTNode arrayread_index = TermToConstTermUsingModel(arrayread[1]); + ASTNode arrayread_index = TermToConstTermUsingModel(arrayread[1],false); ASTNode key = bm->CreateTerm(READ, arrayread.GetValueWidth(), arrayread[0], arrayread_index);