mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
disable regressions in ST mode
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
232f1b5fbe
commit
5fe0eeda63
3 changed files with 7 additions and 4 deletions
|
@ -2010,8 +2010,8 @@ expr_ref seq_rewriter::is_nullable(expr* r) {
|
|||
result = mk_or(m(), is_nullable(r1), is_nullable(r2));
|
||||
}
|
||||
else if (m_util.re.is_diff(r, r1, r2)) {
|
||||
expr_ref e2(mk_not(m(), is_nullable(r2)), m());
|
||||
result = mk_and(m(), is_nullable(r1), e2);
|
||||
result = mk_not(m(), is_nullable(r2));
|
||||
result = mk_and(m(), is_nullable(r1), result);
|
||||
}
|
||||
else if (m_util.re.is_star(r) ||
|
||||
m_util.re.is_opt(r) ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue