Fix missing std

This commit is contained in:
Martin Blicha
2023-09-05 12:39:19 +02:00
parent 2195b5e57a
commit 479bb9c3de
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -197,7 +197,7 @@ std::string CHCSmtLib2Interface::querySolver(std::string const& _input)
{
if (m_enabledSolvers.z3 and boost::starts_with(result.responseOrErrorMessage, "unsat")) {
solverBinary += " fp.xform.slice=false fp.xform.inline_linear=false fp.xform.inline_eager=false";
string extendedQuery = "(set-option :produce-proofs true)" + _input + "\n(get-proof)";
std::string extendedQuery = "(set-option :produce-proofs true)" + _input + "\n(get-proof)";
auto secondResult = m_smtCallback(ReadCallback::kindString(ReadCallback::Kind::SMTQuery) + " " + solverBinary, extendedQuery);
if (secondResult.success)
return secondResult.responseOrErrorMessage;