3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-20 06:10:31 +00:00
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-09-05 16:04:42 -10:00
parent 5f6de08b5d
commit 3a06d501c8
2 changed files with 46 additions and 66 deletions

View file

@ -19,8 +19,8 @@ namespace nlsat {
unsigned u_index; // the root index
bool l_inf() const { return l == nullptr; }
bool u_inf() const { return u == nullptr; }
bool is_section() { return section; }
bool is_sector() { return !section; }
bool is_section() const { return section; }
bool is_sector() const { return !section; }
poly* section_poly() {
SASSERT(is_section());
return l;