This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #30228: Declare Sections with Name only
At this stage we have the following difference between sections and tensor fields: {{{ sage: M = Manifold(2, 'M', start_index=1) ....: X.<x,y> = M.chart() ....: E = M.vector_bundle(2, 'E') ....: e = E.local_frame('e') ....: v = M.vector_field('v') ....: s = E.section('s') Traceback (most recent call last) ... IndexError: string index out of range }}} This simply comes from the fact that the method `section` does not like pure strings as input, in contrast to `vector_field` or `tensor`. URL: https://trac.sagemath.org/30228 Reported by: gh-mjungmath Ticket author(s): Michael Jung Reviewer(s): Travis Scrimshaw
- Loading branch information