Changes between Initial Version and Version 1 of Ticket #15978
- Timestamp:
- 03/20/14 10:53:36 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15978
-
Property
Status
changed from
new
toneeds_review
-
Property
Commit
changed from
to
768a63ea1d24e569a254f99b01b1f4c568198bc9
-
Property
Branch
changed from
to
u/ncohen/15978
-
Property
Status
changed from
-
Ticket #15978 – Description
initial v1 3 3 Was. 4 4 5 With the latest release : 6 7 {{{ 8 sage: %time _ = g.edges() 9 CPU times: user 1min 24s, sys: 8 ms, total: 1min 24s 10 Wall time: 1min 24s 11 }}} 12 13 With this branch : 14 15 {{{ 16 sage: g = graphs.CompleteGraph(3000) 17 sage: %time _ = g.to_dictionary() 18 CPU times: user 1.38 s, sys: 0 ns, total: 1.38 s 19 Wall time: 1.37 s 20 sage: %time _ = g.edges() 21 CPU times: user 6.88 s, sys: 0 ns, total: 6.88 s 22 Wall time: 6.88 s 23 }}} 24 25 Which still does not make any sense. 26 5 27 Nathann