Changes between Initial Version and Version 1 of Ticket #17979, comment 67
- Timestamp:
- 03/31/15 06:24:32 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17979, comment 67
initial v1 5 5 sage: from sage.combinat.integer_list_old import IntegerListsLex as IntegerListsLexOld 6 6 7 sage: P = IntegerListsLex(n=20, max_slope=0, floor=1)7 sage: P = IntegerListsLex(n=20, max_slope=0, min_part=1) 8 8 sage: %time x = list(P) 9 9 CPU times: user 159 ms, sys: 25.8 ms, total: 185 ms … … 17 17 627 18 18 19 sage: P = IntegerListsLex(n=30, max_slope=0, floor=1)19 sage: P = IntegerListsLex(n=30, max_slope=0, min_part=1) 20 20 sage: %time x = list(P) 21 21 CPU times: user 1.74 s, sys: 21.9 ms, total: 1.76 s … … 29 29 5604 30 30 31 sage: P = IntegerListsLex(n=40, max_slope=0, floor=1)31 sage: P = IntegerListsLex(n=40, max_slope=0, min_part=1) 32 32 sage: %time x = list(P) 33 33 CPU times: user 12.8 s, sys: 0 ns, total: 12.8 s … … 41 41 37338 42 42 43 sage: P = IntegerListsLex(n=50, max_slope=0, floor=1)43 sage: P = IntegerListsLex(n=50, max_slope=0, min_part=1) 44 44 sage: %time x = list(P) 45 45 CPU times: user 1min 20s, sys: 216 ms, total: 1min 20s … … 53 53 204226 54 54 55 sage: P = IntegerListsLex(n=60, max_slope=0, floor=1)55 sage: P = IntegerListsLex(n=60, max_slope=0, min_part=1) 56 56 sage: %time x = list(P) 57 57 CPU times: user 7min 5s, sys: 823 ms, total: 7min 6s