SNAP Library 6.0, Developer Reference  2020-12-09 16:24:20
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
flow.h
Go to the documentation of this file.
1 namespace TSnap {
2 
3 // Mandatory name of edge capacity attribute for flow networks.
4 const TStr CapAttrName = "capacity";
5 
7 
11 int GetMaxFlowIntEK (PNEANet &Net, const int &SrcNId, const int &SnkNId);
13 
17 int GetMaxFlowIntPR (PNEANet &Net, const int &SrcNId, const int &SnkNId);
18 
19 };
Main namespace for all the Snap global entities.
Definition: alg.h:1
const TStr CapAttrName
Definition: flow.h:4
int GetMaxFlowIntEK(PNEANet &Net, const int &SrcNId, const int &SnkNId)
Returns the maximum integer valued flow in the network Net from source SrcNId to sink SnkNId...
Definition: flow.cpp:105
int GetMaxFlowIntPR(PNEANet &Net, const int &SrcNId, const int &SnkNId)
Returns the maximum integer valued flow in the network Net from source SrcNId to sink SnkNId...
Definition: flow.cpp:410
Definition: dt.h:412
Definition: bd.h:196