solidity/libsmtutil/CHCSolverInterface.h

67 lines
1.8 KiB
C
Raw Normal View History

/*
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/>.
*/
// SPDX-License-Identifier: GPL-3.0
/**
* Interface for constrained Horn solvers.
*/
#pragma once
2020-05-18 15:42:24 +00:00
#include <libsmtutil/SolverInterface.h>
2020-07-07 14:22:51 +00:00
#include <map>
#include <vector>
2020-05-19 12:14:46 +00:00
namespace solidity::smtutil
{
class CHCSolverInterface
{
public:
2020-11-02 20:20:20 +00:00
CHCSolverInterface(std::optional<unsigned> _queryTimeout = {}): m_queryTimeout(_queryTimeout) {}
virtual ~CHCSolverInterface() = default;
2019-09-24 15:35:31 +00:00
virtual void declareVariable(std::string const& _name, SortPointer const& _sort) = 0;
/// 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;
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(
Expression const& _expr
) = 0;
2020-11-02 20:20:20 +00:00
protected:
std::optional<unsigned> m_queryTimeout;
};
}