File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1238,7 +1238,7 @@ void variable_encoding(
1238
1238
void large_step_encoding (const container_encoding_targett & small_step_container,
1239
1239
container_encoding_targett & large_step_container)
1240
1240
{
1241
- chc_db db;
1241
+ chc_dbt db;
1242
1242
for (auto & clause : small_step_container.constraints ) {
1243
1243
if (!can_cast_expr<forall_exprt>(clause))
1244
1244
{
@@ -1262,13 +1262,13 @@ void large_step_encoding(const container_encoding_targett & small_step_container
1262
1262
db.add_state_pred (s);
1263
1263
}
1264
1264
}
1265
- chc_graph chc_g (db);
1265
+ chc_grapht chc_g (db);
1266
1266
chc_g.build_graph ();
1267
1267
1268
1268
chc_wtot wto (chc_g);
1269
1269
wto.build_wto ();
1270
1270
1271
- ResolutionVisitor rv (db);
1271
+ resolution_visitort rv (db);
1272
1272
for (auto it = wto.begin (); it != wto.end (); it++)
1273
1273
{
1274
1274
auto x = (*it);
@@ -1278,7 +1278,7 @@ void large_step_encoding(const container_encoding_targett & small_step_container
1278
1278
rv.populate_new_db ();
1279
1279
1280
1280
container_encoding_targett container2;
1281
- std::vector<horn_clause > all2;
1281
+ std::vector<horn_clauset > all2;
1282
1282
for (auto & ce : rv.giveme_new_db ())
1283
1283
{
1284
1284
large_step_container << ce.get_chc ();
You can’t perform that action at this time.
0 commit comments