Rename function and warn if responses are supplied for Z3.

This commit is contained in:
chriseth
2018-11-23 09:43:49 +01:00
committed by Leonardo Alt
parent bb10be789c
commit 54bed454f6
3 changed files with 13 additions and 7 deletions
+2 -2
View File
@@ -539,8 +539,8 @@ Json::Value StandardCompiler::compileInternal(Json::Value const& _input)
if (errors.size() > 0)
output["errors"] = errors;
if (!m_compilerStack.unhandledSMTQueries().empty())
for (string const& query: m_compilerStack.unhandledSMTQueries())
if (!m_compilerStack.unhandledSMTLib2Queries().empty())
for (string const& query: m_compilerStack.unhandledSMTLib2Queries())
output["auxiliaryInputRequested"]["smtlib2"]["0x" + keccak256(query).hex()] = query;
output["sources"] = Json::objectValue;