You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sage: vector(QQ, 10, {0:1}, sparse=True).change_ring(AA).is_sparse() # should be True
False
sage: VectorSpace(QQ, 10, sparse=True).change_ring(RR).is_sparse() # should be True
False
The analogous methods for matrices work correctly.