Nathann Cohen wrote:
> Got it !
> 
> I knew nothing about all this, sorry :-)
> 
> I was just growing impatient because I only wrote the interface
> between GLPK/Coin and Sage to add new functions to the Graph class,
> whose docstrings I am currently writing... I already wrote :
> 
> def min_dominating_set(g, value_only=False):
> def min_independant_dominating_set(g, value_only=False):
> def min_vertex_cover(g,value_only=False):
> def max_matching(g,value_only=False, use_edge_labels=True):
> def max_flow(g,x,y,value_only=True,integer=False,
> use_edge_labels=True):
> def min_edge_cut(g,s,t,value_only=True,use_edge_labels=True):
> def min_vertex_cut(g,s,t,value_only=True):
> def edge_connectivity(g,value_only=True,use_edge_labels=True):
> def vertex_connectivity(g,value_only=True):
> def coloring(g,k=None):
> 


This is a fantastic addition of functionality to the Graph class. 
Thanks!!  I could have used some of these functions before, but had to 
do without because I didn't have time to write them.

Jason



--~--~---------~--~----~------------~-------~--~----~
To post to this group, send an email to [email protected]
To unsubscribe from this group, send an email to 
[email protected]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to