3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-12-20 16:09:39 -08:00
parent 7a6070506d
commit e0d6e04493

View file

@ -3799,6 +3799,7 @@ namespace z3 {
}
inline expr re_diff(expr const& a, expr const& b) {
check_context(a, b);
context& ctx = a.ctx();
Z3_ast r = Z3_mk_re_diff(ctx, a, b);
ctx.check_error();
return expr(ctx, r);