Fix empty interval
This commit is contained in:
parent
e123dd8e58
commit
cebe7d415a
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ void interval<T>::set_empty() {
|
|||
numeric_traits<T>::reset(m_lower);
|
||||
numeric_traits<T>::reset(m_upper);
|
||||
m_lower_open = m_upper_open = true;
|
||||
m_lower_inf = m_upper_inf = true;
|
||||
m_lower_inf = m_upper_inf = false;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
|
|
Loading…
Reference in a new issue