3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-02 13:26:10 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-06-17 09:14:16 -06:00
parent 3d2d793f1d
commit 26feb16714
2 changed files with 14 additions and 5 deletions

View file

@ -77,6 +77,8 @@ namespace seq {
seq_util::rex& re() { return m_util.re; }
seq_util& u() { return m_util; }
bool m_antimirov_derivative = true;
// The element (character) for the current derivative computation
expr_ref m_ele;
@ -189,6 +191,10 @@ namespace seq {
*/
expr_ref nullable(expr* r) { return is_nullable(r); }
void set_antimirov(bool flag) {
m_antimirov_derivative = flag;
}
};
}