Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flow, Matching, Connectivity, and some Hard problems #6680

Closed
nathanncohen mannequin opened this issue Aug 6, 2009 · 13 comments
Closed

Flow, Matching, Connectivity, and some Hard problems #6680

nathanncohen mannequin opened this issue Aug 6, 2009 · 13 comments

Comments

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented Aug 6, 2009

Hello everybody !!!

Here are several new functions for the Graph class in Sage :

  • def min_dominating_set(g, value_only=False,log=0):
  • def min_independent_dominating_set(g, value_only=False,log=0):
  • def min_vertex_cover(g,value_only=False,log=0):
  • 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):

If you have no LP Solver installed, you can download GLPK or CBC from this address : http://www.sagemath.org/packages/optional/

CC: @sagetrac-tombuc

Component: graph theory

Issue created by migration from https://trac.sagemath.org/ticket/6680

@nathanncohen nathanncohen mannequin added this to the sage-4.3 milestone Aug 6, 2009
@nathanncohen nathanncohen mannequin assigned rlmill Aug 6, 2009
@nathanncohen

This comment has been minimized.

@williamstein
Copy link
Contributor

comment:2

test

@nathanncohen nathanncohen mannequin changed the title (uses Linear Programming) Flow, Matching, Connectivity, and some Hard problems (uses Linear Programming) Aug 6, 2009
@nathanncohen

This comment has been minimized.

@nathanncohen

This comment has been minimized.

@nathanncohen

This comment has been minimized.

@nathanncohen nathanncohen mannequin changed the title Flow, Matching, Connectivity, and some Hard problems (uses Linear Programming) Flow, Matching, Connectivity, and some Hard problems Aug 27, 2009
@nathanncohen
Copy link
Mannequin Author

nathanncohen mannequin commented Aug 31, 2009

comment:8

As the functions dealing with LP have not been reviewed, I prefer to rewrite the MIP class for Sage to make it easier to use. I will post a new version of the MIP patch as soon as possible, along with all the patches for functions using it.

Sorry for the trouble, I'll try to make it quick !

Nathann

@nathanncohen

This comment has been minimized.

@nathanncohen
Copy link
Mannequin Author

nathanncohen mannequin commented Sep 4, 2009

comment:9

New version attached !! Will put some energy into Sage's graph library ! ;-)

@nathanncohen

This comment has been minimized.

@nathanncohen

This comment has been minimized.

@nathanncohen
Copy link
Mannequin Author

nathanncohen mannequin commented Dec 3, 2009

comment:13

Attachment: graphfunctions-1.patch.gz

I am splitting this ticket into smallers ones

@nathanncohen
Copy link
Mannequin Author

nathanncohen mannequin commented Dec 4, 2009

comment:14

Totally duplicated ! See :

#7592 Flow method using LP
#7593 Matching using LP
#7594 Dominating set and Independent dominating Set
#7599 vertex_cut and edge_cut ( minimum s-t cut )
#7600 Vertex cover
#7601 Graph.edge_connectivity
#7605 Graph.vertex_connectivity

Can be closed as duplicate.

@nathanncohen nathanncohen mannequin removed the s: needs review label Dec 4, 2009
@nathanncohen nathanncohen mannequin closed this as completed Dec 4, 2009
@nathanncohen nathanncohen mannequin added r: duplicate and removed p: major / 3 labels Dec 4, 2009
@nathanncohen
Copy link
Mannequin Author

nathanncohen mannequin commented Dec 4, 2009

comment:15

Let's say :

@sagetrac-mvngu sagetrac-mvngu mannequin removed this from the sage-4.3 milestone Dec 5, 2009
@nathanncohen nathanncohen mannequin mentioned this issue Dec 22, 2009
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant