summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Schult <dschult@colgate.edu>2015-10-03 00:49:28 -0400
committerDan Schult <dschult@colgate.edu>2015-10-03 00:49:28 -0400
commit2a696d237bd20639d108753933f68000e86e83f1 (patch)
treede0241f49c31602162a036f84e0a528ef866113b
parent2c796990abcfc2e2884813643f67a2e0c19dc7aa (diff)
downloadnetworkx-2a696d237bd20639d108753933f68000e86e83f1.tar.gz
Add flow functions from utils to __all__
-rw-r--r--networkx/algorithms/flow/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/networkx/algorithms/flow/__init__.py b/networkx/algorithms/flow/__init__.py
index 9b12a5e7..5ce83109 100644
--- a/networkx/algorithms/flow/__init__.py
+++ b/networkx/algorithms/flow/__init__.py
@@ -9,6 +9,7 @@ __all__ = sum([maxflow.__all__,
shortestaugmentingpath.__all__,
capacityscaling.__all__,
networksimplex.__all__,
+ ['build_flow_dict', 'build_residual_network']
], [])
from .maxflow import *