mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
Nikolaj's changes related to dependencies on infinite interval bounds
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
1915812f84
commit
ccc9a77a1f
3 changed files with 10 additions and 34 deletions
|
@ -43,6 +43,11 @@ public:
|
|||
unsigned m_upper_open:1;
|
||||
unsigned m_lower_inf:1;
|
||||
unsigned m_upper_inf:1;
|
||||
interval():
|
||||
m_lower_open(false),
|
||||
m_upper_open(false),
|
||||
m_lower_inf(true),
|
||||
m_upper_inf(true) {}
|
||||
};
|
||||
|
||||
// Should be NOOPs for precise numeral types.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue