Ticket #11127 (new task)
Iterator for quotient algebras
| Reported by: | aschilling | Owned by: | AlexGhitza |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | algebra | Keywords: | quotient rings, algebras |
| Cc: | sage-combinat, SimonKing | Work issues: | |
| Report Upstream: | N/A | Reviewers: | |
| Authors: | Merged in: | ||
| Dependencies: | Stopgaps: |
Description
Quotient rings and algebras currently do not have iterators. This could be for example be fixed by letting them inherit the iterator from the cover ring or algebra:
def __iter__(self):
return self.__rep.__iter__()
Note: See
TracTickets for help on using
tickets.
