summaryrefslogtreecommitdiff
path: root/networkx/algorithms/approximation/connectivity.py
Commit message (Expand)AuthorAgeFilesLines
* Added an example in all_pairs_node_connectivity (#6126)Paula PĂ©rez Bianchi2022-11-011-0/+14
* Minor improvements from general code readthrough (#5414)Ross Barnowski2022-03-251-3/+1
* Format w/ black==20.8b1Jarrod Millman2020-10-061-1/+1
* Format w/ blackJarrod Millman2020-07-101-6/+10
* Upgrade to Py36 syntaxJarrod Millman2020-01-011-1/+1
* Convert %-format to fstringJarrod Millman2020-01-011-3/+3
* Remove boiler plate from top of modulesJarrod Millman2019-11-111-6/+0
* Fix more documentation issues with exceptionsJarrod Millman2019-11-091-1/+1
* PEP8 fixesJarrod Millman2019-10-181-29/+29
* Fix typo in doctring (#3568)Salim BELHADDAD2019-09-041-1/+1
* Replacing `Return` to `Returns` in docs for functions (#3301)Moradnejad2019-02-181-1/+1
* Misc. typos (#2872)luzpaz2018-02-141-2/+2
* Pep8 fixesJarrod Millman2018-01-201-13/+14
* Fixes for k-components tests and node connectivity approximation doctests (#5)Jordi Torrents2017-04-021-7/+7
* Uses chain instead of chain.from_iterable.Jeffrey Finkelstein2015-11-161-2/+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-4/+4
|\
| * Remove successors_iter() and predecessors_iter(). G.successors() and G.predec...Mridul Seth2015-06-121-4/+4
* | Remove neighbors_iter, G.neighbors() now returns an iterator instead of listMridul Seth2015-06-121-3/+3
|/
* Use a positional argument for the container of nodes to exclude.Jordi Torrents2015-03-151-8/+5
* Clarify cutoff parameter in the docstrings.Jordi Torrents2015-03-151-3/+6
* Add fast approximation for node connectivity.Jordi Torrents2015-03-141-0/+405