| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Simplifies example function in documentation. | Jeffrey Finkelstein | 2015-05-19 | 1 | -4/+2 |
| | | |||||
| * | Simplifies utils.union_find code; PEP8 fixes | Jeffrey Finkelstein | 2015-05-08 | 1 | -8/+6 |
| | | |||||
| * | Fix copyrights | JGab | 2015-04-21 | 3 | -3/+3 |
| | | |||||
| * | Replaces cumulative_sum with accumulate. | Jeffrey Finkelstein | 2015-04-18 | 1 | -11/+22 |
| | | | | | | | | | | | | | | Python 3.2 introduces the `itertools.accumulate()`. Before, we were using less flexible custom code for performing the same task, in `networkx.utils.misc.cumulative_sum`. This commit replaces calls to `cumulative_sum` with calls to `itertools.accumulate()`. Since we currently still support Python 2.7, this commit adds a fallback equivalent definition of accumulate that matches the Python 3.2 implementation. Once support for Python 2.7 is dropped, all of this code can be removed, and calls to `networkx.utils.accumulate()` can be replaced by calls to `itertools.accumulate()`. | ||||
| * | Add a test for UnionFind fix. | chebee7i | 2015-01-19 | 1 | -0/+13 |
| | | |||||
| * | Make UnionFind handle mixed types better. | chebee7i | 2015-01-19 | 1 | -3/+5 |
| | | |||||
| * | Handle nondeterministic output in Cuthill-McKee ordering tests | ysitu | 2014-08-04 | 1 | -4/+5 |
| | | |||||
| * | Fix PEP8 issues in Cuthill-McKee ordering tests | ysitu | 2014-08-04 | 1 | -7/+10 |
| | | |||||
| * | Avoid quadratic behavior in connected_cuthill_mckee_ordering | ysitu | 2014-08-04 | 1 | -18/+11 |
| | | |||||
| * | Fix Cuthill-McKee ordering examples | ysitu | 2014-08-04 | 1 | -2/+2 |
| | | |||||
| * | Fix PEP8 issues in nx.utils.rcm | ysitu | 2014-08-04 | 1 | -4/+8 |
| | | |||||
| * | Include IronPython in .travis.yml | ysitu | 2014-07-03 | 1 | -2/+3 |
| | | |||||
| * | Remove bundled decorator package | ysitu | 2014-06-01 | 2 | -2/+1 |
| | | |||||
| * | Correct reversed docstring and add reference in documentation | ysitu | 2014-05-14 | 1 | -12/+4 |
| | | |||||
| * | Merge pull request #1156 from chebee7i/reversed_cm | chebee7i | 2014-05-13 | 4 | -0/+64 |
| |\ | | | | | Add context manager for reversing a graph. | ||||
| | * | Cleanup code a bit more. | chebee7i | 2014-05-13 | 2 | -10/+5 |
| | | | |||||
| | * | Make `reversed` always do a noncopy. | chebee7i | 2014-05-12 | 3 | -24/+24 |
| | | | |||||
| | * | Add context manager for reversing a graph. | chebee7i | 2014-05-12 | 4 | -0/+69 |
| | | | |||||
| * | | Add smoke test when there is no mapping. | chebee7i | 2014-05-13 | 1 | -1/+16 |
| | | | |||||
| * | | Missed one more. | chebee7i | 2014-05-13 | 2 | -2/+5 |
| | | | |||||
| * | | Fix hash randomization issue in unittest. | chebee7i | 2014-05-13 | 2 | -37/+27 |
| |/ | |||||
| * | Merge pull request #1113 from hagberg/rcm-order-bug | Jordi Torrents | 2014-04-26 | 2 | -40/+80 |
| |\ | | | | | Cuthill-Mckee - ordering heuristic, fixes #1073 and #1068. | ||||
| | * | Use generator and min for performance | Aric Hagberg | 2014-04-20 | 1 | -2/+2 |
| | | | |||||
| | * | Change interface to RCM | Aric Hagberg | 2014-04-20 | 2 | -37/+77 |
| | | | | | | | | | Allow a heuristic function to pick the start node for RCM instead of a specific node. Deprecate start= keyword for heuristic= | ||||
| | * | Doc, whitespace cleanup | Aric Hagberg | 2014-04-20 | 1 | -2/+2 |
| | | | |||||
| * | | Reduce constant factor in BinaryHeap | ysitu | 2014-04-20 | 1 | -16/+6 |
| | | | |||||
| * | | Fix python2.6 compatibility | ysitu | 2014-04-20 | 1 | -2/+9 |
| | | | |||||
| * | | Fix bug that capacity_scaling does not saturate negative selfloops | ysitu | 2014-04-20 | 2 | -206/+117 |
| | | | |||||
| * | | Allow BinaryHeap to handle incomparable keys | ysitu | 2014-04-16 | 1 | -6/+12 |
| | | | |||||
| * | | Comment implementation of BinaryHeap | ysitu | 2014-04-05 | 1 | -11/+18 |
| | | | |||||
| * | | Implement parent pointers in PairingHeap | ysitu | 2014-04-05 | 1 | -18/+30 |
| | | | |||||
| * | | Add Stoer-Wagner minimum cut algorithm | ysitu | 2014-04-03 | 3 | -0/+566 |
| |/ | |||||
| * | Merge pull request #1008 from hagberg/no-require | Aric Hagberg | 2013-11-12 | 2 | -61/+1 |
| |\ | | | | | Remove @require decorator | ||||
| | * | Remove @require decorator | Aric Hagberg | 2013-11-09 | 2 | -61/+1 |
| | | | |||||
| * | | Clean up the mess I left in #1006 | Aric Hagberg | 2013-11-09 | 1 | -7/+0 |
| |/ | | | | Remove a print statement and some commented out code. | ||||
| * | Force ordering in dict_to_numpy_array functions | Aric Hagberg | 2013-11-09 | 2 | -12/+30 |
| | | | | | | | Force ordering to be that of the provided mapping dictionary or else create a mapping using the input data dictionary ordering. Fix tests to determine ordering. | ||||
| * | Simplify make_str() for Py3. | chebee7i | 2013-10-22 | 1 | -9/+3 |
| | | |||||
| * | Make make_str() always return unicode, no matter the Python version. | chebee7i | 2013-10-22 | 2 | -0/+51 |
| | | |||||
| * | Revert "Merge pull request #812 from chebee7i/pydot". Addresses #812. | chebee7i | 2013-09-09 | 1 | -37/+1 |
| | | | | | | This reverts commit e736d4b4db44f45c59039d44f92013748cbef3f4, reversing changes made to ceb31d0f4f14556d4e804868efd23c11f2e6b776. | ||||
| * | Merge pull request #812 from chebee7i/pydot | chebee7i | 2013-09-08 | 1 | -1/+37 |
| |\ | | | | | Drawing with pydot/Graphviz and inline IPython displays. | ||||
| | * | Add get_fobj() to networkx.utils | chebee7i | 2013-01-08 | 1 | -1/+37 |
| | | | |||||
| * | | Deprecate create_degree_sequence. | Aric Hagberg | 2013-08-25 | 1 | -0/+3 |
| | | | |||||
| * | | Fix outdated/broken/error links in documentation. | Aric Hagberg | 2013-07-21 | 1 | -1/+0 |
| | | | |||||
| * | | Don't copy subgraphs in cuthill_mckee_ordering(). | Aric Hagberg | 2013-03-16 | 1 | -2/+2 |
| |/ | | | | The connected_component_subgraphs() function used in the cuthill_mckee_ordering() makes a copy. That causes new node objects to be created which might not be desirable when returning a node ordering if the hash changes when a new object is created. Fix by not copying nodes when forming a subgraph of connected nodes. | ||||
| * | Fix missing SkipTest import in utils tests | Aric Hagberg | 2013-01-05 | 1 | -0/+1 |
| | | | | | nose.SkipTest import needed for skipping numpy tests | ||||
| * | Add converter from dictionary of values to 1d numpy array. | Aric Hagberg | 2012-12-29 | 2 | -3/+62 |
| | | | | | | Modify dict_to_numpy_array to handle both dict of values and dict of dict of values. Addresses #787 | ||||
| * | Close file in decorator tests. | Aric Hagberg | 2012-08-05 | 1 | -2/+1 |
| | | | | | Fixes #746 | ||||
| * | Update some documentation/comments in open_file decorator. | Chris Ellison | 2012-01-06 | 1 | -26/+39 |
| | | | | | Addresses #672. | ||||
| * | Remove except clause from open_file decorator. Addresses #672 | Chris Ellison | 2012-01-06 | 1 | -3/+0 |
| | | |||||
| * | Add dectorator for NetworkXNotImplemnted exception. | Aric Hagberg | 2011-12-26 | 2 | -1/+79 |
| | | | | | | | use e.g. @not_implemented_for('multigraph') Addresses #660 | ||||
