Stefano Taschini
Stefano Taschini
I cannot reproduce it. Both intervals seem to be perfectly fine: ``` >>> from interval import interval >>> interval([0.020530565167243362, 0.020530565167243373]) >>> interval([0.004029219530949634, 0.004029219530949636]) ``` I need more context to be...
The following should do the trick: ```python >>> x = interval([1, 3], [4]) >>> interval.new(c for c in x if c.inf < c.sup) interval([1.0, 3.0]) ```
You're right. I'll fix that as soon as I have a little time.