Opened 4 years ago
Closed 4 years ago
#22518 closed defect (fixed)
Fix bug in list functionality of free module bases
Reported by: | egourgoulhon | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | sage-7.6 |
Component: | linear algebra | Keywords: | free module, basis |
Cc: | tscrim | Merged in: | |
Authors: | Eric Gourgoulhon | Reviewers: | Travis Scrimshaw |
Report Upstream: | N/A | Work issues: | |
Branch: | ec8fc98 (Commits, GitHub, GitLab) | Commit: | ec8fc985db5bd75d4bc4b18e98aeb6b4b81413bd |
Dependencies: | Stopgaps: |
Description
The following is a bug:
sage: M = FiniteRankFreeModule(ZZ, 3, name='M', start_index=1) sage: e = M.basis('e') sage: list(e) ... ValueError: Index out of range: 0 not in [1,3]
This ticket fixes it.
Change History (5)
comment:1 Changed 4 years ago by
- Branch set to public/manifolds/bug-22518
- Cc tscrim added
- Commit set to ec8fc985db5bd75d4bc4b18e98aeb6b4b81413bd
- Status changed from new to needs_review
comment:2 follow-up: ↓ 3 Changed 4 years ago by
- Reviewers set to Travis Scrimshaw
- Status changed from needs_review to positive_review
LGTM.
comment:3 in reply to: ↑ 2 Changed 4 years ago by
Thanks Travis for the review!
comment:4 Changed 4 years ago by
It was nice and simple.
comment:5 Changed 4 years ago by
- Branch changed from public/manifolds/bug-22518 to ec8fc985db5bd75d4bc4b18e98aeb6b4b81413bd
- Resolution set to fixed
- Status changed from positive_review to closed
Note: See
TracTickets for help on using
tickets.
New commits:
Fix bug in list functionality of free module bases (#22518)