-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathchc_db.h
266 lines (221 loc) · 6.46 KB
/
chc_db.h
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
//
// Created by Yakir Vizel on 5/27/24.
//
#ifndef CBMC_CHC_DB_H
#define CBMC_CHC_DB_H
#include <util/mathematical_expr.h>
#include <util/std_expr.h>
#include <util/find_symbols.h>
#include <language_util.h>
#include <vector>
#include <map>
#include <set>
#include <functional>
class chc_dbt;
/*
* A horn clause.
* This class is simply a wrapper around a forall_exprt with a few utilities:
* 1. Getting the body of a clause
* 2. Getting the head of a clause
* 3. Checking if a clause is a fact or a query
* 4. Getting used relations (the predicates) or function applications
* (their instantiations) in a clause.
*/
class horn_clauset
{
forall_exprt m_chc;
public:
horn_clauset(forall_exprt f) : m_chc(f) {}
horn_clauset(std::vector<symbol_exprt> & vars, exprt clause) : m_chc(vars, clause) {
}
const forall_exprt & get_chc() const
{
return m_chc;
}
const exprt* body() const {
if (can_cast_expr<implies_exprt>(m_chc.where()))
{
return &to_implies_expr(m_chc.where()).op0();
}
return &m_chc.where();
}
const exprt* head() const {
if (can_cast_expr<implies_exprt>(m_chc.where()))
{
return &to_implies_expr(m_chc.where()).op1();
}
return nullptr;
}
bool is_fact() const {
auto b = body();
bool not_fact = false;
b->visit_pre(
[¬_fact](const exprt &expr) {
if(can_cast_expr<function_application_exprt>(expr))
{
not_fact = true;
}
});
return !not_fact;
}
bool is_query() const {
if (can_cast_expr<implies_exprt>(m_chc.where()))
{
auto h = head();
bool res = true;
h->visit_pre(
[&res](const exprt &expr) {
if(can_cast_expr<function_application_exprt>(expr))
res = false;
});
return res;
}
return false;
}
bool operator==(const horn_clauset &other) const
{
return m_chc == other.m_chc;
}
bool operator!=(const horn_clauset &other) const
{
return !(*this==other);
}
bool operator<(const horn_clauset &other) const
{
return m_chc < other.m_chc;
}
template <typename OutputIterator>
void used_relations(chc_dbt &db, OutputIterator out) const;
template <typename OutputIterator>
void used_func_app(chc_dbt &db, OutputIterator out) const;
};
/*
* A database of CHCs.
* Uninterpreted relations need to be registered.
*/
class chc_dbt
{
friend class horn_clauset;
public:
struct is_state_pred : public std::__unary_function<exprt, bool> {
const chc_dbt &m_db;
is_state_pred(const chc_dbt &db) : m_db(db) {}
bool operator()(symbol_exprt state) { return m_db.has_state_pred(state); }
};
typedef std::unordered_set<std::size_t> chc_sett;
private:
using chcst = std::vector<horn_clauset>;
chcst m_clauses;
std::unordered_set<symbol_exprt, irep_hash> m_state_preds;
typedef std::map<exprt, chc_sett> chc_indext;
chc_indext m_body_idx;
chc_indext m_head_idx;
// representing the empty set
static chc_sett m_empty_set;
public:
chc_dbt() {}
void add_state_pred(const symbol_exprt & state) { m_state_preds.insert(state); }
const std::unordered_set<symbol_exprt, irep_hash> &get_state_preds() { return m_state_preds; }
bool has_state_pred(const symbol_exprt & state) const { return m_state_preds.count(state) > 0; }
void build_indices();
void reset_indices();
const chc_sett & use(const exprt & state) const {
auto it = m_body_idx.find(state);
if (it == m_body_idx.end())
return m_empty_set;
return it->second;
}
const chc_sett & def(const exprt & state) const {
auto it = m_head_idx.find(state);
if (it == m_head_idx.end())
return m_empty_set;
return it->second;
}
void add_clause(const forall_exprt & f)
{
if (f.is_true())
return;
for (auto & c : m_clauses) {
if (c.get_chc()==f) return;
}
m_clauses.push_back(horn_clauset(f));
reset_indices();
}
[[nodiscard]] const horn_clauset & get_clause(std::size_t idx) const
{
INVARIANT(idx < m_clauses.size(), "Index in range");
return m_clauses[idx];
}
chcst::iterator begin() { return m_clauses.begin(); }
chcst::iterator end() { return m_clauses.end(); }
chcst::const_iterator begin() const { return m_clauses.begin(); }
chcst::const_iterator end() const { return m_clauses.end(); }
};
template <typename OutputIterator>
void horn_clauset::used_relations(chc_dbt &db, OutputIterator out) const
{
const exprt *body = this->body();
if (body == nullptr) return;
std::set<symbol_exprt> symbols = find_symbols(*body);
chc_dbt::is_state_pred filter(db);
for (auto & symb : symbols) {
if (filter(symb)) {
*out = symb;
}
}
}
template <typename OutputIterator>
void horn_clauset::used_func_app(chc_dbt &db, OutputIterator out) const
{
const exprt *body = this->body();
if (body == nullptr) return;
std::unordered_set<function_application_exprt, irep_hash> funcs;
body->visit_pre([&funcs](const exprt &expr) {
if (can_cast_expr<function_application_exprt>(expr))
{
const function_application_exprt & f = to_function_application_expr(expr);
funcs.insert(f);
}
});
chc_dbt::is_state_pred filter(db);
for (auto & f : funcs) {
if (filter(to_symbol_expr(f.function()))) {
*out = f;
}
}
}
/*
* The CHC dependency graph.
* Uninterpreted relations are vertices, dependency is based on clauses:
* relations in the body have an edge to the relation in the head.
*/
class chc_grapht
{
chc_dbt & m_db;
typedef std::map<exprt, std::unordered_set<exprt, irep_hash>> grapht;
grapht m_incoming;
grapht m_outgoing;
const symbol_exprt *m_entry;
// representing the empty set
static std::unordered_set<exprt, irep_hash> m_expr_empty_set;
public:
chc_grapht(chc_dbt & db) : m_db(db), m_entry(nullptr) {}
void build_graph();
bool has_entry() const { return m_entry != nullptr; }
const symbol_exprt *entry() const {
INVARIANT(has_entry(), "Entry must exist.");
return m_entry; }
const std::unordered_set<exprt, irep_hash> &outgoing(const symbol_exprt &state) const {
auto it = m_outgoing.find(state);
if (it == m_outgoing.end())
return m_expr_empty_set;
return it->second;
}
const std::unordered_set<exprt, irep_hash> &incoming(const symbol_exprt &state) const {
auto it = m_incoming.find(state);
if (it == m_incoming.end())
return m_expr_empty_set;
return it->second;
}
};
#endif //CBMC_CHC_DB_H