summaryrefslogtreecommitdiff
path: root/networkx/algorithms/bipartite/basic.py
Commit message (Expand)AuthorAgeFilesLines
* plugin based backend infrastructure to use multiple computation backends (#6000)Mridul Seth2022-11-081-0/+1
* Remove redundant py2 numeric conversions (#5661)Mridul Seth2022-05-311-2/+2
* Fixes #5403: Errors on non-distinct bipartite node sets (#5442)Aaron Z2022-05-081-0/+12
* Fix docstrings and remove unused variables (#4501)Andrea Tomassilli2021-01-091-2/+2
* Format w/ black==20.8b1Jarrod Millman2020-10-061-1/+1
* Format python in docstrings (#4168)Jarrod Millman2020-08-191-13/+13
* Format w/ blackJarrod Millman2020-07-101-11/+14
* Remove superfluous encoding informationJarrod Millman2019-11-111-1/+0
* Remove boiler plate from top of modulesJarrod Millman2019-11-111-8/+1
* Fix more documentation issues with exceptionsJarrod Millman2019-11-091-2/+3
* Finalize release notesJarrod Millman2019-10-151-6/+7
* Fix some warningsJarrod Millman2019-10-121-1/+2
* Fix sphinx errors And add links to single_source_dijkstra in docs for dijkstr...Dan Schult2019-10-071-1/+1
* Fix Sphinx warningsJarrod Millman2019-09-161-6/+3
* Update copyrightJarrod Millman2019-03-301-1/+1
* Replacing `Return` to `Returns` in docs for functions (#3301)Moradnejad2019-02-181-2/+2
* Pep8 fixesJarrod Millman2018-01-201-29/+33
* Update copyrightJarrod Millman2018-01-201-1/+1
* Simplify base classes. (#2604)Dan Schult2017-08-121-2/+2
* Refactor set_node_attributes() and set_edge_attributes() (#2553)Michael E. Rose2017-07-261-1/+1
* Update copyrightJarrod Millman2017-07-251-1/+1
* Improve bipartite documentation.Jordi Torrents2017-03-261-2/+20
* Improve variable names and remove comments in bipartite.sets.Jordi Torrents2017-03-081-2/+2
* Raise an Exception for disconnected Graphs in bipartite.setsJordi Torrents2017-03-021-5/+37
* Use :exc: for referring to exceptions in docstringDan Schult2016-03-071-1/+1
* Update copyrightsMridul Seth2016-01-011-1/+1
* Remove degree_iter(),now degree() returns an integer for single node and iter...Mridul Seth2015-06-271-1/+1
* Merge pull request #1589 from MridulS/succprediterDan Schult2015-06-171-2/+2
|\
| * Remove successors_iter() and predecessors_iter(). G.successors() and G.predec...Mridul Seth2015-06-121-2/+2
* | Remove neighbors_iter, G.neighbors() now returns an iterator instead of listMridul Seth2015-06-121-1/+1
|/
* Merge bipartite reader/writer, adj matrixAric Hagberg2015-03-081-83/+2
* Skip tests if numpy not installed.Aric Hagberg2012-05-141-0/+9
* Use shorter names and count().Aric Hagberg2012-02-241-13/+8
* Update doc text.Aric Hagberg2012-02-241-4/+4
* fix author, header, and whitespace cleanupAric Hagberg2012-02-241-23/+24
* Add biadjacnecy matrix.Aric Hagberg2012-02-241-3/+85
* Handle directed graphs in bipartite functions.Aric Hagberg2011-07-301-1/+9
* Update bipartite algorithms to use weight keywordDan Schult2011-06-181-2/+7
* Update documentation for bipartite functionsAric Hagberg2011-05-191-4/+4
* Put all bipartite functions in biparite/ package and don't import that into t...Aric Hagberg2011-05-181-22/+28
* Handle out-degree zero nodes.Aric Hagberg2011-05-091-1/+3
* Add "bipartite" node attribute to indicate which set the node belongs to.Aric Hagberg2011-03-191-0/+8
* Move bipartite functions to package and split files. Add new functions for p...Aric Hagberg2011-03-061-0/+219