3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-29 11:58:51 +00:00

Remove is_nullable_rec from seq_rewriter, delegate to derive::nullable

This commit is contained in:
copilot-swe-agent[bot] 2026-06-10 18:53:55 +00:00 committed by Nikolaj Bjorner
parent 70a9dbfae2
commit 1e906ba585
4 changed files with 8 additions and 117 deletions

View file

@ -182,6 +182,11 @@ namespace seq {
*/
expr_ref operator()(expr* r);
/**
* Nullable check: returns a Boolean expression that is true iff r accepts the empty string.
*/
expr_ref nullable(expr* r) { return is_nullable(r); }
};
}