Ticket #4145 (closed defect: fixed)
[with patch, positive review] linear codes list function is slow
| Reported by: | rlm | Owned by: | tbd |
|---|---|---|---|
| Priority: | major | Milestone: | sage-3.1.3 |
| Component: | algebra | Keywords: | |
| Cc: | Author(s): | ||
| Report Upstream: | Reviewer(s): | ||
| Merged in: | Work issues: |
Description
Before:
sage: G = ExtendedBinaryGolayCode() sage: time L = G.list() CPU times: user 16.24 s, sys: 0.32 s, total: 16.57 s Wall time: 17.14 s
After:
sage: G = ExtendedBinaryGolayCode() sage: time L = G.list() CPU times: user 3.65 s, sys: 0.04 s, total: 3.68 s Wall time: 3.71 s
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

