Changes between Initial Version and Version 1 of Ticket #28519, comment 45
- Timestamp:
- 10/03/19 11:22:52 (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28519, comment 45
initial v1 20 20 The point is that tensor field objects (including scalar fields and differential forms) are not immutable, except for the zero element. They cannot be made immutable because, in general, they cannot be fully defined at their creation: they are defined "on the fly" by adding some piece of information like 21 21 {{{ 22 s .add_expr(1+x, chart=X)23 t[0,1] = 1+x22 sage: s.add_expr(1+x, chart=X) 23 sage: t[0,1] = 1+x 24 24 }}} 25 25 for a scalar field `s` and a tensor field `t`.