2019-07-03 14:33:20 +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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2019-07-03 14:33:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for constrained Horn solvers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-05-18 15:42:24 +00:00
|
|
|
#include <libsmtutil/SolverInterface.h>
|
2019-07-03 14:33:20 +00:00
|
|
|
|
2020-07-07 14:22:51 +00:00
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-05-19 12:14:46 +00:00
|
|
|
namespace solidity::smtutil
|
2019-07-03 14:33:20 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class CHCSolverInterface
|
|
|
|
{
|
|
|
|
public:
|
2020-11-02 20:20:20 +00:00
|
|
|
CHCSolverInterface(std::optional<unsigned> _queryTimeout = {}): m_queryTimeout(_queryTimeout) {}
|
|
|
|
|
2019-07-03 14:33:20 +00:00
|
|
|
virtual ~CHCSolverInterface() = default;
|
|
|
|
|
2019-09-24 15:35:31 +00:00
|
|
|
virtual void declareVariable(std::string const& _name, SortPointer const& _sort) = 0;
|
2019-07-03 14:33:20 +00:00
|
|
|
|
|
|
|
/// Takes a function declaration as a relation.
|
|
|
|
virtual void registerRelation(Expression const& _expr) = 0;
|
|
|
|
|
|
|
|
/// Takes an implication and adds as rule.
|
|
|
|
/// Needs to bound all vars as universally quantified.
|
|
|
|
virtual void addRule(Expression const& _expr, std::string const& _name) = 0;
|
|
|
|
|
2020-10-19 11:21:05 +00:00
|
|
|
using CexNode = Expression;
|
2020-07-07 14:22:51 +00:00
|
|
|
struct CexGraph
|
|
|
|
{
|
|
|
|
std::map<unsigned, CexNode> nodes;
|
|
|
|
std::map<unsigned, std::vector<unsigned>> edges;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Takes a function application _expr and checks for reachability.
|
2021-10-06 09:44:33 +00:00
|
|
|
/// @returns solving result, an invariant, and counterexample graph, if possible.
|
|
|
|
virtual std::tuple<CheckResult, Expression, CexGraph> query(
|
2019-07-03 14:33:20 +00:00
|
|
|
Expression const& _expr
|
|
|
|
) = 0;
|
2020-11-02 20:20:20 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
std::optional<unsigned> m_queryTimeout;
|
2019-07-03 14:33:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|