1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
/*
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/>.
*/
#pragma once
#include <map>
#include <string>
#include <vector>
#include <libdevcore/Common.h>
namespace dev
{
namespace solidity
{
namespace smt
{
enum class CheckResult
{
SAT, UNSAT, UNKNOWN
};
enum class Sort
{
Int, Bool
};
class Expression
{
friend class SMTLib2Interface;
/// Manual constructor, should only be used by SMTLib2Interface and the class itself.
Expression(std::string _name, std::vector<Expression> _arguments):
m_name(std::move(_name)), m_arguments(std::move(_arguments)) {}
public:
Expression(size_t _number): m_name(std::to_string(_number)) {}
Expression(u256 const& _number): m_name(std::to_string(_number)) {}
Expression(Expression const& _other) = default;
Expression(Expression&& _other) = default;
Expression& operator=(Expression const& _other) = default;
Expression& operator=(Expression&& _other) = default;
friend Expression operator!(Expression _a)
{
return Expression("not", _a);
}
friend Expression operator&&(Expression _a, Expression _b)
{
return Expression("and", _a, _b);
}
friend Expression operator||(Expression _a, Expression _b)
{
return Expression("or", _a, _b);
}
friend Expression operator==(Expression _a, Expression _b)
{
return Expression("=", _a, _b);
}
friend Expression operator!=(Expression _a, Expression _b)
{
return !(_a == _b);
}
friend Expression operator<(Expression _a, Expression _b)
{
return Expression("<", std::move(_a), std::move(_b));
}
friend Expression operator<=(Expression _a, Expression _b)
{
return Expression("<=", std::move(_a), std::move(_b));
}
friend Expression operator>(Expression _a, Expression _b)
{
return Expression(">", std::move(_a), std::move(_b));
}
friend Expression operator>=(Expression _a, Expression _b)
{
return Expression(">=", std::move(_a), std::move(_b));
}
friend Expression operator+(Expression _a, Expression _b)
{
return Expression("+", std::move(_a), std::move(_b));
}
friend Expression operator-(Expression _a, Expression _b)
{
return Expression("-", std::move(_a), std::move(_b));
}
friend Expression operator*(Expression _a, Expression _b)
{
return Expression("*", std::move(_a), std::move(_b));
}
std::string toSExpr() const
{
std::string sexpr = "(" + m_name;
for (auto const& arg: m_arguments)
sexpr += " " + arg.toSExpr();
sexpr += ")";
return sexpr;
}
private:
explicit Expression(std::string _name):
Expression(std::move(_name), std::vector<Expression>{}) {}
Expression(std::string _name, Expression _arg):
Expression(std::move(_name), std::vector<Expression>{std::move(_arg)}) {}
Expression(std::string _name, Expression _arg1, Expression _arg2):
Expression(std::move(_name), std::vector<Expression>{std::move(_arg1), std::move(_arg2)}) {}
std::string const m_name;
std::vector<Expression> const m_arguments;
};
class SMTLib2Interface
{
public:
void reset();
void push();
void pop();
Expression newFunction(std::string _name, Sort _domain, Sort _codomain);
Expression newInteger(std::string _name);
Expression newBool(std::string _name);
void addAssertion(Expression _expr);
CheckResult check();
std::string eval(Expression _expr);
};
}
}
}
|