summaryrefslogtreecommitdiff
path: root/networkx/algorithms/simple_paths.py
Commit message (Expand)AuthorAgeFilesLines
* Add note about checking for path existence to all_simple_paths. (#5059)Ross Barnowski2021-10-181-1/+6
* Change exception varname e to err (#5130)Dan Schult2021-10-151-2/+2
* Bug fix for issue #5023 : corner-case bug in single_source_dijkstra (#5033)Divyansh2021-09-121-0/+2
* Deprecate networkx.utils.empty_generator. (#4599)Ross Barnowski2021-02-131-3/+6
* Fix docstrings and remove unused variables (#4501)Andrea Tomassilli2021-01-091-0/+2
* DOC: Remove repeated words (#4410)Miroslav Šedivý2020-12-021-1/+1
* Format w/ black==20.8b1Jarrod Millman2020-10-061-3/+3
* Format python in docstrings (#4168)Jarrod Millman2020-08-191-4/+6
* Use dict instead of OrderedDict since dict is ordered by default from Python ...Karthikeyan Singaravelan2020-08-101-3/+2
* Format w/ blackJarrod Millman2020-07-101-33/+49
* Index edges for multi graph simple paths (#3358)Jorge Martín Pérez2020-07-071-5/+125
* return empty generator instead of empty list (#3967)muratgu2020-07-051-2/+3
* Fix exception causes and messages all over the codebase (#4015)Ram Rachum2020-07-051-3/+3
* Add weight function for shortest simple paths for #3948 (#3949)Harold Chan2020-05-191-19/+22
* Upgrade to Py36 syntaxJarrod Millman2020-01-011-1/+1
* Convert %-format to fstringJarrod Millman2020-01-011-8/+8
* Remove superfluous encoding informationJarrod Millman2019-11-111-1/+0
* Remove boiler plate from top of modulesJarrod Millman2019-11-111-9/+0
* PEP8 fixesJarrod Millman2019-10-181-1/+1
* Fix `simple_paths` targets parameter (#3208)last2sword2019-02-211-10/+21
* Replacing `Return` to `Returns` in docs for functions (#3301)Moradnejad2019-02-181-1/+1
* Fix naming of target and targets to be consistent with remaining codeWarren W. Kretzschmar2018-10-131-5/+5
* Add iterable of targets as input for all_simple_pathsWarren W. Kretzschmar2018-10-131-16/+50
* Fix typo in allowed (#3162)Benjamin M. Gyori2018-09-171-1/+1
* In all_simple_paths(). Replace list with OrderedDict for speedup (#3074)Winni Kretzschmar2018-07-191-20/+19
* Misc. typos (#2872)luzpaz2018-02-141-1/+1
* Adds prefix_tree, dag_to_branching, and example. (#2784)Dan Schult2017-12-021-0/+31
* all_simple_paths should not return cycles. Fix issue #2762 (#2770)ForFer2017-11-251-0/+2
* Fix for issue #2427 (#2712)md00002017-10-151-1/+5
* Update docsJarrod Millman2017-08-181-4/+4
* Comply with pep8Jarrod Millman2017-08-171-56/+56
* Move data structure to private names and replace with readonly structures (#2...Dan Schult2017-06-261-1/+1
* Adds example for getting all simple edge pathsJeffrey Finkelstein2016-09-221-12/+30
* Remove conflicts from #1894 (Update Exception Classes)Dan Schult2016-04-221-7/+7
|\
| * Add exception class NodeNotFoundMridul Seth2015-12-301-7/+7
* | Handles length zero or one lists in is_simple_pathJeffrey Finkelstein2016-04-141-7/+41
* | Replaces positional arguments with single list.Jeffrey Finkelstein2016-04-141-32/+12
* | Moves is_path from utils to simple_paths.Jeffrey Finkelstein2016-04-141-0/+56
|/
* 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
* | Merge pull request #1588 from MridulS/neigbhorsiterDan Schult2015-06-171-4/+4
|\ \
| * | Remove neighbors_iter, G.neighbors() now returns an iterator instead of listMridul Seth2015-06-121-4/+4
| |/
* | Merge remote-tracking branch 'upstream/iter_refactor' into iter_refactorMridul Seth2015-06-171-8/+8
|\ \
| * | Makes Graph.nodes() return iterator instead of listJeffrey Finkelstein2015-06-111-8/+8
| |/
* | Spelling error ExamplesAric Hagberg2015-06-131-2/+2
|/
* Improve documentation and add more tests.Jordi Torrents2015-04-171-10/+34
* Improve shortest_simple_paths implementation and add more tests.Jordi Torrents2015-04-171-16/+41
* Add shortest_simple_paths function.Jordi Torrents2015-04-171-2/+473
* bugfix per issue 797Seth Bromberger2012-12-181-1/+1
* Add better examples and docs for all_simple_paths.Aric Hagberg2012-06-181-10/+12