Graph theory in python

Posted by Dan on Stack Overflow See other posts from Stack Overflow or by Dan
Published on 2010-03-25T15:49:06Z Indexed on 2010/03/25 15:53 UTC
Read the original article Hit count: 647

Filed under:
|
|

I was wondering how people deal with graph theory in python? How is a graph stored? Are there libraries for this?

For example how would I input a graph and then find its Chromatic polynomial? Or its girth? Or the number of unique spanning trees? How about problems that involve edge weight like salesman problems?

I don't need all of these answered, I'm just looking for a method or tool set that will be able to help me approach solve problems like this.

Thanks, Dan

© Stack Overflow or respective owner

Related posts about graph-theory

Related posts about python