Changes between Initial Version and Version 1 of Ticket #18250
- Timestamp:
- 04/19/15 09:41:35 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18250
-
Property
Status
changed from
new
toneeds_review
-
Property
Commit
changed from
to
e780f711afba40b34c0d11b65adaf3cc4429fac2
-
Property
Branch
changed from
to
public/18250
-
Property
Status
changed from
-
Ticket #18250 – Description
initial v1 31 31 Before 32 32 {{{ 33 33 sage: g = graphs.RandomGNP(500,.5) 34 sage: %timeit g.triangles_count() 35 1 loops, best of 3: 9.78 s per loop 34 36 }}} 35 37 36 38 After 37 39 {{{ 38 40 sage: g = graphs.RandomGNP(500,.5) 41 sage: %timeit g.triangles_count() 42 10 loops, best of 3: 162 ms per loop 39 43 }}}