3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-09 23:52:02 +00:00

Merge branch 'master' of https://github.com/z3prover/z3 into smtmus

This commit is contained in:
Nikolaj Bjorner 2021-12-20 16:10:05 -08:00
commit f154390071

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);