@@ -157,7 +157,7 @@ void goto_symext::symex_assert(
157157 // First, push negations in and perhaps convert existential quantifiers into
158158 // universals:
159159 if (has_subexpr (condition, ID_exists) || has_subexpr (condition, ID_forall))
160- do_simplify (condition, state. value_set );
160+ do_simplify (condition, state);
161161
162162 // Second, L2-rename universal quantifiers:
163163 if (has_subexpr (condition, ID_forall))
@@ -167,7 +167,7 @@ void goto_symext::symex_assert(
167167 exprt l2_condition = state.rename (std::move (condition), ns).get ();
168168
169169 // now try simplifier on it
170- do_simplify (l2_condition, state. value_set );
170+ do_simplify (l2_condition, state);
171171
172172 std::string msg = id2string (instruction.source_location ().get_comment ());
173173 if (msg.empty ())
@@ -200,7 +200,7 @@ void goto_symext::symex_assume(statet &state, const exprt &cond)
200200{
201201 exprt simplified_cond = clean_expr (cond, state, false );
202202 simplified_cond = state.rename (std::move (simplified_cond), ns).get ();
203- do_simplify (simplified_cond, state. value_set );
203+ do_simplify (simplified_cond, state);
204204
205205 // It would be better to call try_filter_value_sets after apply_condition,
206206 // but it is not currently possible. See the comment at the beginning of
@@ -848,13 +848,13 @@ void goto_symext::try_filter_value_sets(
848848 // without another round of constant propagation.
849849 // It would be sufficient to replace this call to do_simplify() with
850850 // something that just replaces `*&x` with `x` whenever it finds it.
851- do_simplify (modified_condition, state. value_set );
851+ do_simplify (modified_condition, state);
852852
853853 state.record_events .push (false );
854854 modified_condition = state.rename (std::move (modified_condition), ns).get ();
855855 state.record_events .pop ();
856856
857- do_simplify (modified_condition, state. value_set );
857+ do_simplify (modified_condition, state);
858858
859859 if (jump_taken_value_set && modified_condition == false )
860860 {
0 commit comments