> unsigned_infinity is Infinity
False
> Infinity is +Infinity
True

I agree this should be designed better by giving
complex oo a different print string like UnsignedInfinity.

sage: limit(1/x, x=0) == unsigned_infinity 
True

This is a bug because it should show an equation. Good catch!
You can work around it by always requesting a bool around
symbolic equations.

sage: bool(limit(1/x, x=0) == unsigned_infinity) 
True 
sage: bool(limit(1/x, x=0) == Infinity) 
False




-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to