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 @@ -204,14 +204,14 @@ simplify_exprt::resultt<> simplify_exprt::simplify_not(const not_exprt &expr)
204204 else if (op.id ()==ID_exists) // !(exists: a) <-> forall: not a
205205 {
206206 auto const &op_as_exists = to_exists_expr (op);
207- return forall_exprt{op_as_exists. symbol (),
208- simplify_not (not_exprt (op_as_exists.where ()))};
207+ return forall_exprt{
208+ op_as_exists. variables (), simplify_not (not_exprt (op_as_exists.where ()))};
209209 }
210210 else if (op.id () == ID_forall) // !(forall: a) <-> exists: not a
211211 {
212212 auto const &op_as_forall = to_forall_expr (op);
213- return exists_exprt{op_as_forall. symbol (),
214- simplify_not (not_exprt (op_as_forall.where ()))};
213+ return exists_exprt{
214+ op_as_forall. variables (), simplify_not (not_exprt (op_as_forall.where ()))};
215215 }
216216
217217 return unchanged (expr);
You can’t perform that action at this time.
0 commit comments