mirror of
https://github.com/Z3Prover/z3
synced 2026-03-01 11:16:54 +00:00
fix bug reported by Maria Novoszel
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5ff5b075b2
commit
d906a0cc2d
1 changed files with 1 additions and 1 deletions
|
|
@ -272,7 +272,7 @@ void finite_set_axioms::in_map_axiom(expr *x, expr *a) {
|
|||
expr_ref f1(u.mk_in(x, a), m);
|
||||
expr_ref f2(u.mk_in(inv, b), m);
|
||||
add_binary("map-inverse", x, a, m.mk_not(f1), f2);
|
||||
add_binary("map-inverse", x, b, f1, m.mk_not(f2));
|
||||
add_binary("map-inverse", x, a, f1, m.mk_not(f2));
|
||||
}
|
||||
|
||||
// a := set.map(f, b)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue