Unless I am misunderstanding something, 2.5.alpha0 seems to have some
problems with equality testing. A typical example is
sage: bool(sqrt(2) == 1)
False
sage: bool(sqrt(2) != 1)
False
However, the following does work correctly:
sage: bool(sqrt(2) < 1)
False
sage: bool(sqrt(2) > 1)
True
This s
Hi,
I've posted a preliminary SAGE-2.5.alpha0 tarball here:
/home/was/sage2.5
I'm uploading it now -- it's 93 MB, and I'm uploading it as I write this email.
I don't know for certain that it builds, though hopefully it will both build
and pass all doctests -- reports are welcome. Especially i