@@ -333,15 +333,8 @@ void symex_target_equationt::convert_without_assertions(
333
333
334
334
void symex_target_equationt::convert (decision_proceduret &decision_procedure)
335
335
{
336
- convert_guards (decision_procedure);
337
- convert_assignments (decision_procedure);
338
- convert_decls (decision_procedure);
339
- convert_assumptions (decision_procedure);
336
+ convert_without_assertions (decision_procedure);
340
337
convert_assertions (decision_procedure);
341
- convert_goto_instructions (decision_procedure);
342
- convert_function_calls (decision_procedure);
343
- convert_io (decision_procedure);
344
- convert_constraints (decision_procedure);
345
338
}
346
339
347
340
void symex_target_equationt::convert_assignments (
@@ -476,7 +469,7 @@ void symex_target_equationt::convert_assertions(
476
469
{
477
470
for (auto &step : SSA_steps)
478
471
{
479
- // ignore already converted assertions in the error trace
472
+ // hide already converted assertions in the error trace
480
473
if (step.is_assert () && step.converted )
481
474
step.hidden = true ;
482
475
@@ -503,7 +496,7 @@ void symex_target_equationt::convert_assertions(
503
496
504
497
for (auto &step : SSA_steps)
505
498
{
506
- // ignore already converted assertions in the error trace
499
+ // hide already converted assertions in the error trace
507
500
if (step.is_assert () && step.converted )
508
501
step.hidden = true ;
509
502
0 commit comments