mirror of
https://github.com/Z3Prover/z3
synced 2026-06-19 07:06:28 +00:00
cleanup, missing case for nullable xor
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
21a3a317f2
commit
e21d154778
1 changed files with 3 additions and 0 deletions
|
|
@ -523,6 +523,9 @@ namespace seq {
|
|||
m_br.mk_not(is_nullable(r2), result);
|
||||
m_br.mk_and(result, is_nullable(r1), result);
|
||||
}
|
||||
else if (re().is_xor(r, r1, r2)) {
|
||||
m_br.mk_xor(is_nullable(r1), is_nullable(r2), result);
|
||||
}
|
||||
else if (re().is_star(r) ||
|
||||
re().is_opt(r) ||
|
||||
re().is_full_seq(r) ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue