File tree 1 file changed +4
-4
lines changed 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)
204
204
else if (op.id ()==ID_exists) // !(exists: a) <-> forall: not a
205
205
{
206
206
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 ()))};
209
209
}
210
210
else if (op.id () == ID_forall) // !(forall: a) <-> exists: not a
211
211
{
212
212
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 ()))};
215
215
}
216
216
217
217
return unchanged (expr);
You can’t perform that action at this time.
0 commit comments