Hi Vincent,

> Having immutability by default would be particuarly annoying in the
> following case
> 
> sage: a = identity_matrix(ZZ, 3)
> sage: b = a + a   # immutable
> sage: b[0,1] = 2  # niet

Not that much

sage: a = identity_matrix(ZZ, 3)
sage: b = copy(a + a)
sage: b[0,1] = 2  # da

Florent

-- 
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