mirror of
https://github.com/Z3Prover/z3
synced 2026-06-09 10:30:59 +00:00
normalize more pretty printing
This commit is contained in:
parent
309473edad
commit
31ffe89480
3 changed files with 7 additions and 4 deletions
|
|
@ -374,6 +374,8 @@ namespace dd {
|
|||
unsigned power_of_2() const { return m_power_of_2; }
|
||||
rational const& max_value() const { return m_max_value; }
|
||||
rational const& two_to_N() const { return m_mod2N; }
|
||||
rational normalize(rational const& n) const { return mod(-n, m_mod2N) < n ? -mod(-n, m_mod2N) : n; }
|
||||
|
||||
|
||||
unsigned_vector const& free_vars(pdd const& p);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue