summaryrefslogtreecommitdiff
path: root/networkx/algorithms/flow/tests
Commit message (Expand)AuthorAgeFilesLines
* Added spaces after commas.boothby2015-05-221-3/+3
* add test case for #1542Tom Boothby2015-05-221-0/+8
* Merge branch 'ns' of https://github.com/ysitu/networkx into ysitu-nschebee7i2014-11-032-4/+53
|\
| * Reimplement the network simplex method for min-cost flowsysitu2014-11-022-4/+53
* | Correct infeasibility detection in capacity scaling min-cost flowysitu2014-11-031-1/+24
|/
* Remove legacy ford_fulkerson maximum flow functionysitu2014-08-052-23/+7
* Add test for MultiGraph input.Jordi Torrents2014-05-231-0/+7
* Cosmetic changes in maximum flow tests on 'large' graphs.Jordi Torrents2014-05-231-22/+11
* Do not use ford_fulkerson in max flow tests for large graphs.Jordi Torrents2014-05-221-22/+27
* Remove flow functions from the base NetworkX namespace.Jordi Torrents2014-05-222-17/+11
* Merge pull request #1102 from jtorrents/refactor-flowAric Hagberg2014-04-282-148/+306
|\
| * Make edmonds_karp_core obey the cutoff parameter.Jordi Torrents2014-04-271-14/+28
| * Test all interface functions, add test reusing residual.Jordi Torrents2014-04-261-24/+53
| * Improve interface to flow algorithms.Jordi Torrents2014-04-242-17/+10
| * Kwargs sanity check for maximum_flow and minimum_cut.Jordi Torrents2014-04-241-14/+26
| * Return both flow_value and {flow_dict|partition} when value_only is False.Jordi Torrents2014-04-241-5/+6
| * Prevent use of cutoff in minimum_cutysitu2014-04-231-0/+2
| * Fix issues in minimum_cutysitu2014-04-231-11/+10
| * Add cutoff parameter to edmonds_karp and shortest_augmenting_pathysitu2014-04-231-0/+16
| * Fix bad grammar and typos in docstrings and comments.Jordi Torrents2014-04-211-1/+1
| * Store maximum flow value in 'flow_value' attribute of residual networksysitu2014-04-202-38/+32
| * Return the node patrition instead of the cut set in minimum_cut.Jordi Torrents2014-04-191-4/+18
| * Improve maximum flow and minimum cut tests.Jordi Torrents2014-04-191-38/+101
| * Keep refactoring. Implementation of ysitu's proposal in #1102.Jordi Torrents2014-04-192-80/+74
| * Add msg parameter to assert_* for keeping track of which function fails.Jordi Torrents2014-04-192-31/+46
| * Add edmonds_karp_residual function, and edmonds_karp* to tests.Jordi Torrents2014-04-191-6/+8
| * Refactor flow package.Jordi Torrents2014-04-192-82/+109
| * Add Edmonds-Karp maxflow algorithmysitu2014-04-192-62/+45
* | Fix bug that capacity_scaling does not saturate negative selfloopsysitu2014-04-201-0/+24
|/
* Add capacity scaling minimum cost flow algorithmysitu2014-04-161-1/+71
* Add test for two-phase shortest augmenting path maxflow algorithmysitu2014-04-071-0/+13
* Add two-phase option to shortest augmenting path maxflow algorithmysitu2014-04-072-11/+40
* Add shortest augmenting path maxflow algorithmysitu2014-04-062-11/+22
* Fix handling of global_relabel_freq of None in preflow-push maxflowysitu2014-03-261-0/+7
* Enhance preflow-push maxflow tests and fix discovered issuesysitu2014-03-252-4/+21
* Add testcases to test_maxflow_large_graphysitu2014-03-234-0/+54
* Fix python2.6 compat in preflow-push maxflow algorithm (cont'd)ysitu2014-03-231-2/+2
* Fix python2.6 compat in preflow-push maxflow algorithm (cont'd)ysitu2014-03-231-1/+3
* Fix python3 compat in preflow-push maxflow algorithmysitu2014-03-211-2/+2
* Add highest-label preflow-push algorithm for maximum flowysitu2014-03-212-14/+35
* Fix for negative cost digons of finite capacity. Fixes #749Loïc Séguin-C2012-08-061-0/+25
* Fix error in mincost example.Aric Hagberg2012-05-041-12/+12
* Move hierarchy out of flow directory.Aric Hagberg2011-12-021-30/+0
* Added flow_hierarchy measure and altered condensation_multigraph to copy edgeBen Edwards2011-12-011-0/+30
* Raise error for MultiDiGraph in network_simplex. Addresses #607Loïc Séguin-C.2011-09-262-0/+20
* Handle digons properly in network simplex. Fixes #618.Loïc Séguin-C.2011-08-131-0/+24
* Handle zero capacity edges in network simplex. Fixes #617Loïc Séguin-C.2011-08-111-1/+26
* Added test and fix for mincost flow.Loïc Séguin-C.2010-10-241-0/+24
* Fixed handling of digons in _create_flow_dict. Fixes #429Loïc Séguin-C.2010-09-201-0/+16
* Fixed bug in initialization of network_simplex. Fixes #430Loïc Séguin-C.2010-09-191-0/+31