Skip to content

Commit c5fffbd

Browse files
Yakir Vizelyvizel
Yakir Vizel
authored andcommitted
Adjusting API changes
1 parent 7ae6ef2 commit c5fffbd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/cprover/state_encoding.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,7 @@ void variable_encoding(
12381238
void large_step_encoding(const container_encoding_targett & small_step_container,
12391239
container_encoding_targett & large_step_container)
12401240
{
1241-
chc_db db;
1241+
chc_dbt db;
12421242
for (auto & clause : small_step_container.constraints) {
12431243
if (!can_cast_expr<forall_exprt>(clause))
12441244
{
@@ -1262,13 +1262,13 @@ void large_step_encoding(const container_encoding_targett & small_step_container
12621262
db.add_state_pred(s);
12631263
}
12641264
}
1265-
chc_graph chc_g(db);
1265+
chc_grapht chc_g(db);
12661266
chc_g.build_graph();
12671267

12681268
chc_wtot wto(chc_g);
12691269
wto.build_wto();
12701270

1271-
ResolutionVisitor rv(db);
1271+
resolution_visitort rv(db);
12721272
for (auto it = wto.begin(); it != wto.end(); it++)
12731273
{
12741274
auto x = (*it);
@@ -1278,7 +1278,7 @@ void large_step_encoding(const container_encoding_targett & small_step_container
12781278
rv.populate_new_db();
12791279

12801280
container_encoding_targett container2;
1281-
std::vector<horn_clause> all2;
1281+
std::vector<horn_clauset> all2;
12821282
for (auto & ce : rv.giveme_new_db())
12831283
{
12841284
large_step_container << ce.get_chc();

0 commit comments

Comments
 (0)