3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

bug fixes

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-01-01 16:24:15 -08:00
parent 7dea0b855b
commit d91820fe51
12 changed files with 48 additions and 41 deletions

View file

@ -432,6 +432,7 @@ namespace dd {
bool is_one() const { return m->is_one(root); }
bool is_zero() const { return m->is_zero(root); }
bool is_linear() const { return m->is_linear(root); }
bool is_linear_or_value() const { return is_linear() || is_val(); }
bool is_var() const { return m->is_var(root); }
bool is_max() const { return m->is_max(root); }
/** Polynomial is of the form a * x + b for some numerals a, b. */