From: trevor_hansen Date: Thu, 15 Mar 2012 12:37:25 +0000 (+0000) Subject: Fix. Don't use the global nodefactory when we have a local one. X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=a094785c5c88fc3ede9d967fc32f4d8c32564029;p=francis%2Fstp.git Fix. Don't use the global nodefactory when we have a local one. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1596 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/cpp_interface/cpp_interface.cpp b/src/cpp_interface/cpp_interface.cpp index 96a796e..ae62ba2 100644 --- a/src/cpp_interface/cpp_interface.cpp +++ b/src/cpp_interface/cpp_interface.cpp @@ -28,7 +28,7 @@ namespace BEEV ASTNode query; if (assertionsSMT2.size() > 1) - query = parserInterface->CreateNode(AND, assertionsSMT2); + query = nf->CreateNode(AND, assertionsSMT2); else if (assertionsSMT2.size() == 1) query = assertionsSMT2[0]; else