mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix missing std
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user