Hello AbstractAlgebra folks,
Is this intended behaviour?
using Nemo
I = identity_matrix(QQ, 5)
I[1,1] === I[2,2] # evaluates to false
Qp = padic_field(5)
Ip = identity_matrix(Qp, 5)
Ip[1,1] === Ip[2,2] # evaluates to true
If so, I think it might be nice to make a note of this peculiarity in the documentation. In either case, I'm happy to follow this up with a PR.
Hello AbstractAlgebra folks,
Is this intended behaviour?
If so, I think it might be nice to make a note of this peculiarity in the documentation. In either case, I'm happy to follow this up with a PR.