| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix copyrights | JGab | 2015-04-21 | 1 | -1/+1 |
| * | Comments in configuration model about multi-edges | Aric Hagberg | 2013-10-19 | 1 | -2/+11 |
| * | Add docs for directed Havel-Hakimi generator and small doc fixes. | Aric Hagberg | 2013-01-13 | 1 | -8/+5 |
| * | Faster Havel-Hakimi generator and directed version too. | Brian Cloteaux | 2013-01-13 | 1 | -30/+172 |
| * | Use list() and values() for Python3 | Aric Hagberg | 2012-01-06 | 1 | -2/+2 |
| * | Whitespace housekeeping | Aric Hagberg | 2011-12-30 | 1 | -59/+59 |
| * | Add more tests for degree sequence generators. | Aric Hagberg | 2011-12-30 | 1 | -3/+3 |
| * | Handle corner cases in generator. | Aric Hagberg | 2011-11-14 | 1 | -4/+8 |
| * | Add more tests. Fix potential Python3 issue. | Aric Hagberg | 2011-11-05 | 1 | -1/+1 |
| * | Update docs for random degre sequence graph generator. | Aric Hagberg | 2011-11-05 | 1 | -9/+15 |
| * | Add random degree sequence graph. | Aric Hagberg | 2011-11-03 | 1 | -6/+169 |
| * | Refactor large degree_seq.py into pieces and put non-generator pieces in algo... | Aric Hagberg | 2011-11-03 | 1 | -692/+4 |
| * | Use mapping to correlate node id's with input sequence in expected degree gra... | Aric Hagberg | 2011-08-03 | 1 | -2/+10 |
| * | Better notation and some documentation fixes. | Aric Hagberg | 2011-06-01 | 1 | -23/+15 |
| * | Update documentation for expected degree graph | Aric Hagberg | 2011-05-31 | 1 | -10/+44 |
| * | Fix off-by-one in loop. | Aric Hagberg | 2011-05-25 | 1 | -1/+4 |
| * | Allow self loops in expected degree graph | Aric Hagberg | 2011-05-21 | 1 | -2/+10 |
| * | More small doc fixes. | Aric Hagberg | 2011-05-21 | 1 | -14/+21 |
| * | Add fast expected degree generator. | Aric Hagberg | 2011-05-14 | 1 | -33/+33 |
| * | Remove statements that do nothing. | Loïc Séguin-C. | 2011-02-11 | 1 | -1/+0 |
| * | Change default method to 'hh'. Add some tests. Addresses #323 | Chris Ellison | 2011-02-06 | 1 | -1/+1 |
| * | Some spelling changes. | Aric Hagberg | 2011-02-06 | 1 | -10/+13 |
| * | Adding Erdos-Gallai algorithm. Addresses #323 | Chris Ellison | 2011-02-06 | 1 | -12/+104 |
| * | Removing redundent reverse call. Addresses #323 | Chris Ellison | 2011-02-06 | 1 | -3/+3 |
| * | Force exact number of double edge swaps. Return graph instead of number of sw... | Aric Hagberg | 2010-10-11 | 1 | -23/+49 |
| * | Fix deg_seq tests and bugs. smax_graph() seems broken. | aric | 2010-08-09 | 1 | -4/+3 |
| * | Minor fixes to documentation, mainly to help Sphinx with one line descriptions. | loicseguin | 2010-08-09 | 1 | -4/+2 |
| * | Merging py3k-1.2 branch into trunk. Addresses #348 | loicseguin | 2010-08-02 | 1 | -11/+14 |
| * | Simpler s_max, fixes #358 | aric | 2010-07-23 | 1 | -107/+143 |
| * | Use standard "import networkx as nx" in all modules | aric | 2010-04-17 | 1 | -38/+38 |
| * | Remove with_labels keyword from *degree() methods. | aric | 2010-04-15 | 1 | -7/+7 |
| * | Remove bogus elif for checking digraphs and fix documentation | aric | 2010-04-09 | 1 | -6/+4 |
| * | Directed configuration model | aric | 2010-04-09 | 1 | -1/+136 |
| * | Moving s_metric out of generators and into algorithms | cellison | 2010-03-22 | 1 | -28/+1 |
| * | Revert connected_double_edge_swap() and fix typos. | aric | 2010-03-09 | 1 | -17/+9 |
| * | Clearer version using has_path. | aric | 2010-03-09 | 1 | -4/+10 |
| * | Speed up connected_double_edge_swap by using shortest path test | aric | 2010-03-09 | 1 | -2/+6 |
| * | Add checks/tests for create_using in bipartite.py,random.py,degree_seq.py | dschult | 2009-10-11 | 1 | -25/+37 |
| * | Fix docstrings. | aric | 2009-10-04 | 1 | -55/+55 |
| * | Add create_using parameter to every generator function. | cellison | 2009-09-09 | 1 | -41/+77 |
| * | License change to BSD. | aric | 2009-08-26 | 1 | -2/+2 |
| * | Removing svn:executable property so nose doesn't print 'skip' messages. | cellison | 2009-08-14 | 1 | -0/+0 |
| * | change delete_* to remove_* and has_neighbor to has_edge | dschult | 2009-08-13 | 1 | -7/+7 |
| * | Add random clustered graph. | aric | 2009-07-11 | 1 | -3/+98 |
| * | Start counting degrees from 0 | aric | 2009-07-11 | 1 | -1/+1 |
| * | Reformat and improve configuration_model() documentation. | aric | 2009-07-04 | 1 | -36/+54 |
| * | Merged revisions 741-766,769-770,794-797,799,804-829,845-848,858-885 via svnm... | aric | 2008-11-03 | 1 | -44/+30 |
| * | havel_hakimi_graph generator doesn't need random seed parameter | aric | 2008-02-16 | 1 | -4/+1 |
| * | Use random.shuffle to greatly improve speed of configuration_model. | aric | 2007-12-16 | 1 | -8/+6 |
| * | clean up documentation for epydoc/rst parsing | aric | 2007-04-13 | 1 | -53/+58 |