summaryrefslogtreecommitdiff
path: root/networkx/algorithms/tests/test_cycles.py
Commit message (Expand)AuthorAgeFilesLines
* Make cycle_basis() deterministic (#6654)Efrem Braun2023-04-211-0/+11
* add simple cycle enumerator for undirected class (#6461)Kelly Boothby2023-03-291-13/+522
* Update pre-commit (#6545)Jarrod Millman2023-03-231-1/+1
* Improve test coverage for cycles.py (#6152)Jefter Santiago2022-11-011-0/+9
* Use isort with pre-commit to enforce import guidelines (#5659)Mridul Seth2022-06-021-3/+2
* Add Mypy type checking infrastructure (#5127)Ross Barnowski2021-11-171-3/+1
* Format w/ blackJarrod Millman2020-07-101-19/+39
* Upgrade to Py36 syntaxJarrod Millman2020-01-011-2/+2
* Remove shebang from non-executablesJarrod Millman2019-11-111-1/+0
* PEP8 fixesJarrod Millman2019-10-181-2/+2
* PEP8 fixes to testsJarrod Millman2019-10-181-1/+1
* Replace nose.raises with pytest.raises context managerJarrod Millman2019-10-121-10/+9
* Replace nose.assert_raises with pytest.raisesJarrod Millman2019-10-121-7/+8
* Fix deprecated use of add_path/star/cycleDan Schult2019-10-121-1/+1
* Convert nose.tools.assert_* functions into assertsJarrod Millman2019-10-121-45/+45
* Use class methods for class setup/teardownStefan van der Walt2019-10-121-7/+10
* Restore checking PyPy3 (#3514)Omer Katz2019-08-021-2/+2
* Speed up simple_cycles (#3193)last2sword2018-10-221-1/+3
* Fix up edge_dfs and add edge_bfs (#3043)Dan Schult2018-07-021-1/+40
* Misc. typos (#2872)luzpaz2018-02-141-1/+1
* Deleted a duplicated test_random_graph in bipartite.tests.test_genera… (#2790)Mads Jensen2018-02-021-1/+1
* Pep8 fixesJarrod Millman2018-01-201-14/+14
* Minimum cycle basis (#2823)Dan Schult2018-01-101-0/+43
* find_cycle. Fixes #2323 and #2324 by fixing #2439 (#2473)Dan Schult2017-06-131-98/+113
* Fix bug in find_cycle.chebee7i2016-12-011-0/+15
* Change all X.add_path yp nx.add_path(X,Dan Schult2016-02-021-7/+7
* Raise NetworkXNoCycle when no cycles are found.chebee7i2014-08-201-8/+5
* Update docstrings and unit tests.chebee7i2014-07-221-4/+10
* Docstring updates.chebee7i2014-07-221-2/+2
* Add find_cycle()chebee7i2014-07-221-4/+76
* Fix issue #1041 in simple_cycles. Add test.dschult2013-12-301-0/+17
* Format cycles from simple_cycles w/o last nodeDan Schult2013-07-111-14/+14
* Slight speedup in simple_cycles. Order differs from recursive now.Dan Schult2013-07-111-4/+3
* Revert cycles to repeat starting node at the end.Dan Schult2013-07-111-5/+7
* Create nonrecursive function for simple_cyclesDan Schult2013-06-171-10/+19
* Example of @not_implemented_for() decorator and exception.Aric Hagberg2011-12-261-1/+12
* Fixes for pypy compatibility.Aric Hagberg2011-09-111-3/+13
* Simple cycles algorithm.Aric Hagberg2010-10-121-0/+59
* Merging py3k-1.2 branch into trunk. Addresses #348loicseguin2010-08-021-1/+1
* Fix cycle_basis, make work for disconnected graphsdschult2010-02-261-1/+10
* Add an algorithm for finding cycles (at least adschult2010-02-251-0/+23