solidity/libsmtutil/CHCSmtLib2Interface.h

74 lines
2.1 KiB
C
Raw Normal View History

2019-09-24 15:35:31 +00:00
/*
This file is part of solidity.
solidity is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
solidity is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with solidity. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Interface for solving Horn systems via smtlib2.
*/
#pragma once
2020-05-18 15:42:24 +00:00
#include <libsmtutil/CHCSolverInterface.h>
2019-09-24 15:35:31 +00:00
2020-05-18 15:42:24 +00:00
#include <libsmtutil/SMTLib2Interface.h>
2019-09-24 15:35:31 +00:00
2020-05-19 12:14:46 +00:00
namespace solidity::smtutil
2019-09-24 15:35:31 +00:00
{
class CHCSmtLib2Interface: public CHCSolverInterface
{
public:
explicit CHCSmtLib2Interface(
2019-12-11 16:31:36 +00:00
std::map<util::h256, std::string> const& _queryResponses,
2020-05-19 12:14:46 +00:00
frontend::ReadCallback::Callback const& _smtCallback
);
2019-09-24 15:35:31 +00:00
void reset();
void registerRelation(Expression const& _expr) override;
void addRule(Expression const& _expr, std::string const& _name) override;
std::pair<CheckResult, std::vector<std::string>> query(Expression const& _expr) override;
void declareVariable(std::string const& _name, SortPointer const& _sort) override;
std::vector<std::string> unhandledQueries() const { return m_unhandledQueries; }
SMTLib2Interface* smtlib2Interface() const { return m_smtlib2.get(); }
2019-09-24 15:35:31 +00:00
private:
void declareFunction(std::string const& _name, SortPointer const& _sort);
void write(std::string _data);
/// Communicates with the solver via the callback. Throws SMTSolverError on error.
std::string querySolver(std::string const& _input);
/// Used to access toSmtLibSort, SExpr, and handle variables.
std::unique_ptr<SMTLib2Interface> m_smtlib2;
2019-09-24 15:35:31 +00:00
std::string m_accumulatedOutput;
std::set<std::string> m_variables;
2019-12-11 16:31:36 +00:00
std::map<util::h256, std::string> const& m_queryResponses;
2019-09-24 15:35:31 +00:00
std::vector<std::string> m_unhandledQueries;
2020-05-19 12:14:46 +00:00
frontend::ReadCallback::Callback m_smtCallback;
2019-09-24 15:35:31 +00:00
};
}