#13730: Speed up some graph iterations
--------------------------------+----------------------------------
       Reporter:  dcoudert      |        Owner:  jason, ncohen, rlm
           Type:  enhancement   |       Status:  needs_work
       Priority:  major         |    Milestone:  sage-5.11
      Component:  graph theory  |   Resolution:
       Keywords:                |    Merged in:
        Authors:                |    Reviewers:
Report Upstream:  N/A           |  Work issues:
         Branch:                |       Commit:
   Dependencies:                |     Stopgaps:
--------------------------------+----------------------------------

Comment (by azi):

 That may be interesting
 {{{
 sage: %timeit E = [(u,v) for u in G for v in G.neighbor_iterator(u)]
 1000 loops, best of 3: 1.65 ms per loop
 sage: H = Graph(G.graph6_string(), implementation='networkx')
 sage: %timeit E = [(u,v) for u in H for v in H.neighbor_iterator(u)]
 100 loops, best of 3: 1.35 ms per loop
 }}}

--
Ticket URL: <http://trac.sagemath.org/ticket/13730#comment:26>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to