#13503: Enhancement of `is_triangle_free' addition of `triangles_count' and a 
minor
change in `spanning_trees_count'
----------------------------------------------------------+-----------------
       Reporter:  azi                                     |         Owner:  
jason, ncohen, rlm
           Type:  enhancement                             |        Status:  
needs_work        
       Priority:  minor                                   |     Milestone:  
sage-5.4          
      Component:  graph theory                            |    Resolution:      
              
       Keywords:  triangles, graphs, number of triangles  |   Work issues:      
              
Report Upstream:  N/A                                     |     Reviewers:  
David Coudert     
        Authors:  Jernej Azarija                          |     Merged in:      
              
   Dependencies:                                          |      Stopgaps:      
              
----------------------------------------------------------+-----------------

Comment (by dcoudert):

 Two interesting (worst case) examples:
 {{{
 sage: G = graphs.CompleteBipartiteGraph(100,100); M = G.adjacency_matrix()
 sage: G.density()
 100/199
 sage: %timeit not (M*M*M).trace()
 5 loops, best of 3: 59.8 ms per loop
 sage: %timeit my_is_triangle_free(G)
 5 loops, best of 3: 5.66 s per loop
 sage:
 sage: G = graphs.RandomGNP(200,100/199); M = G.adjacency_matrix()
 sage: G.density()
 10009/19900
 sage: %timeit not (M*M*M).trace()
 5 loops, best of 3: 63.8 ms per loop
 sage: %timeit my_is_triangle_free(G)
 625 loops, best of 3: 300 µs per loop
 }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/13503#comment:14>
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 post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en.

Reply via email to