New issue 218 by brookes....@gmail.com: Interval arithmetic: incorrect
results for min and max
http://code.google.com/p/mpmath/issues/detail?id=218
Consider the following operation:
a = iv.mpf([0,1])
b = 0.5
min(a,b)
Mpmath returns the range [0,1] though there is no posible value of a that
can give a result greater than 0.5
The correct response is [0,0.5]
This behavior is impossible to change since min is a Python function
implemented in terms of comparison operators.
We could perhaps add new interval min/max functions to mpmath that behave
this way?