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
using Oscar
Qp = PadicField()
I = identity_matrix(QQ, 5)
I[1,1] === I[2,2] # evaluates to false
Ip = identity_matrix(Qp, 5)
Ip[1,1] === Ip[2,2] # evaluates to true
I think the abstract type implementation for identity_matrix might need a deepcopy, or a note in the documentation.
The text was updated successfully, but these errors were encountered:
I think the abstract type implementation for
identity_matrix
might need a deepcopy, or a note in the documentation.The text was updated successfully, but these errors were encountered: