We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1edc82 commit b165bf9Copy full SHA for b165bf9
src/util/simplify_expr_boolean.cpp
@@ -204,13 +204,13 @@ simplify_exprt::resultt<> simplify_exprt::simplify_not(const not_exprt &expr)
204
else if(op.id()==ID_exists) // !(exists: a) <-> forall: not a
205
{
206
auto const &op_as_exists = to_exists_expr(op);
207
- return forall_exprt{op_as_exists.symbol(),
+ return forall_exprt{op_as_exists.variables(),
208
simplify_not(not_exprt(op_as_exists.where()))};
209
}
210
else if(op.id() == ID_forall) // !(forall: a) <-> exists: not a
211
212
auto const &op_as_forall = to_forall_expr(op);
213
- return exists_exprt{op_as_forall.symbol(),
+ return exists_exprt{op_as_forall.variables(),
214
simplify_not(not_exprt(op_as_forall.where()))};
215
216
0 commit comments