18
I Use This!
High Activity

Commits : Listings

Analyzed about 11 hours ago. based on code collected about 24 hours ago.
Jun 16, 2023 — Jun 16, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Image on front page News for 0.25 release More... over 18 years ago
don't need foo function More... over 18 years ago
ommit __file__ call so we can package better with setuptools More... over 18 years ago
now can run tests.all() without installing setuptools but currently won't work as import networkx.tests networkx.tests.run() without setuptools More... over 18 years ago
ignore autogenerated files More... over 18 years ago
Clarify drawing info re pydot and pygraphviz More... over 18 years ago
Update links to reflect moved sources in Menu and Examples at direct download link to Readme More... over 18 years ago
doc edit to stop warnings in epydoc More... over 18 years ago
Readme now includes information on svn and easy_install More... over 18 years ago
Update README and Makefile to reflect new test infrastructure More... over 18 years ago
update testing infrastructure More... over 18 years ago
spurious spaces in first line More... over 18 years ago
update keywords and classifiers More... over 18 years ago
MANIFEST will be built from svn repository data no need for MANIFEST.in More... over 18 years ago
now using setuptools don't need setupext.py more pesky .cvsignore files removed More... over 18 years ago
modify test hooks for new locations __init__.py in test directories More... over 18 years ago
subdirectories for tests new test.py More... over 18 years ago
tools->scripts More... over 18 years ago
Move tests to into networkx package directory More... over 18 years ago
moved to doc More... over 18 years ago
change to .txt extension don't need COPYING, .cvsignore, README_epydoc examples directory moved to doc More... over 18 years ago
Email example shows how to use XDiGraph with Python objects as edge data. More... over 18 years ago
Fixed reference to networkx.lanl.gov
Dan Schult
as dschult
More... over 18 years ago
Configuration model now uses XGraph(multiedges=True, selfloops=True) (that is returns a pseudograph). The resulting graph will have the exact degree sequence as input sequence. Fixes #20. More... over 18 years ago
This is in response to trac report # 19 which suggests a speedup for dijkstra().
Dan Schult
as dschult
More... over 18 years ago
When I flattened the queue, I didn't check for duplicates so top_sort listed same nodes more than once sometimes. This change fixes that issue and adds some tests.
Dan Schult
as dschult
More... over 18 years ago
Tests to go with r63 -- correlation of 1.0 should be allowed.
Dan Schult
as dschult
More... over 18 years ago
The code for topo sort is much cleaner now and easier to read at the expense of agreeing with its recursive partner. The two algorithms read the successors list in opposite directions now (which let me flatten an ugly list of lists). Since successors' order is arbitrary, both algorithms give correct sorts, but now disagree (topo sort is not unique).
Dan Schult
as dschult
More... over 18 years ago
Correction to Threshold Graph calculuation of degree-degree correlation to accomodate r=1.
Dan Schult
as dschult
More... over 18 years ago
Fixes bug #18. Two bugs found..... This nonrecursive code is pretty ugly. I'll try to check it again tomorrow. Maybe try to make it readable. :}
Dan Schult
as dschult
More... over 18 years ago