18
I Use This!
High Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 2 days ago.
May 17, 2023 — May 17, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Change edges_iter and friends to raise an exception if argument nbunch is neither a node nor iterable.
Dan Schult
as dschult
More... almost 18 years ago
Turn of ticks before drawing to prevent rescaling on redraw. Fixes #46 More... almost 18 years ago
Fixes #45. Add asarray wrappers to data from layout positions. Ensures nx_pylab will consistently use the array package specified by the matplotlib configuration. More... almost 18 years ago
Fix for ticket 44-- take Graph() out of the keyword default argument for create_using (put in None) and then add code to process None at the beginning of the routine.
Dan Schult
as dschult
More... almost 18 years ago
Unittest now completes on Windows XP. - xbase: dictionary iteritems misspelled as itemsiter. - io test code failed to close files before removing. - spectrum and threshold testcode misspelled eiegenvals import from numpy - infinity (in patths.py: 1e3000) results in 1.0 value. More... almost 18 years ago
Update xbase.py subgraph() to use prepare_nbunch() and to create the adj dicts directly (for clarity-I hope- and speed) I didn't inline prepare_nbunch because it's call is probably a small portion of the subgraph runtime.
Dan Schult
as dschult
More... almost 18 years ago
update date More... almost 18 years ago
changed x == None to x is None More... almost 18 years ago
update credits More... almost 18 years ago
bug fixes and typos More... almost 18 years ago
update date in tutorial and mailing list link More... almost 18 years ago
Add a method to process nbunch. This could be used within base.py at the cost of a (local) function lookup and benefit of more readable code. +1 from me, but won't do unless others agree.
Dan Schult
as dschult
More... almost 18 years ago
Fix bug in XDiGraph.subgraph add test to at least make sure it runs.
Dan Schult
as dschult
More... almost 18 years ago
Fixes #42. More... almost 18 years ago
Fixed documentation errors re edges. More... almost 18 years ago
Fixed documentation errors re edges. More... almost 18 years ago
nbunch changes for degree and edges.
Dan Schult
as dschult
More... almost 18 years ago
Fixed a few serious errors in Tutorial. More... almost 18 years ago
Updated degree methods to treat nbunch in friendly way. My proposal didn't work because the returned value of degree is different for degree(v) and degree([v]). I hacked it to work, but I'm going to think more before continuing.
Dan Schult
as dschult
More... almost 18 years ago
Update to treatment of nbunch in edges_iter() and its in_edges_iter and out_edges_iter This is a prototype which returns an empty list if nbunch is a non-sequence non-node.
Dan Schult
as dschult
More... almost 18 years ago
Actually, this "small bug" is a feature... Using elif eliminates the case nbunch==None from ever getting to the second if. That's what we want.
Dan Schult
as dschult
More... almost 18 years ago
Removed old bidirectional_shortest_path and replaced with new from Aric. More... almost 18 years ago
Added Floyd-Warshall algorithm for all pairs shortest paths. More... almost 18 years ago
Small bugfix to edges_iter More... almost 18 years ago
Remove unnecessary exception testing. Most of this was made obsolete by our long ago change to "n in G" so it returns False instead of throwing an exception.
Dan Schult
as dschult
More... almost 18 years ago
Remove with_labels keyword from neighbors, edges and similar methods. This removes the ability to return a dict of neighbors and/ a list of tuples of neighbors with edge_data. That ambiguity seemed to be causing confusion and each can easily be obtained in other ways.
Dan Schult
as dschult
More... almost 18 years ago
Replace tabs with spaces in base.py
Dan Schult
as dschult
More... almost 18 years ago
comments added, dead_code removed in bidirectional_shortest_path2 More... about 18 years ago
Minor doc changes and removing **kwds unless needed (as per style guide). Also rewrite of cluster.py to discontinue neighbors(...,with_label=True)
Dan Schult
as dschult
More... about 18 years ago
Rewrite code that uses neighbors(...,with_labels=True) to see how much of a pain it is to use edges instead of neighbors. I don't see any deficiency created by getting rid of the with_labels keyword on neighbors(). I'll start working on doing that in base.py and xbase.py if no one objects.
Dan Schult
as dschult
More... about 18 years ago