|
template<class PGraph > |
void | TSnap::GetNodeWcc (const PGraph &Graph, const int &NId, TIntV &CnCom) |
| Returns (via output parameter CnCom) all nodes that are in the same connected component as node NId. More...
|
|
template<class PGraph > |
bool | TSnap::IsConnected (const PGraph &Graph) |
| Tests whether the Graph is (weakly) connected. More...
|
|
template<class PGraph > |
bool | TSnap::IsWeaklyConn (const PGraph &Graph) |
| Tests whether the Graph is weakly connected. More...
|
|
template<class PGraph > |
void | TSnap::GetWccSzCnt (const PGraph &Graph, TIntPrV &WccSzCnt) |
| Returns a distribution of weakly connected component sizes. More...
|
|
template<class PGraph > |
void | TSnap::GetWccs (const PGraph &Graph, TCnComV &CnComV) |
| Returns all weakly connected components in a Graph. More...
|
|
template<class PGraph > |
void | TSnap::GetSccSzCnt (const PGraph &Graph, TIntPrV &SccSzCnt) |
| Returns a distribution of strongly connected component sizes. More...
|
|
template<class PGraph > |
void | TSnap::GetSccs (const PGraph &Graph, TCnComV &CnComV) |
| Returns all strongly connected components in a Graph. More...
|
|
template<class PGraph > |
double | TSnap::GetMxWccSz (const PGraph &Graph) |
| Returns the fraction of nodes in the largest weakly connected component of a Graph. More...
|
|
template<class PGraph > |
double | TSnap::GetMxSccSz (const PGraph &Graph) |
| Returns the fraction of nodes in the largest strongly connected component of a Graph. More...
|
|
template<class PGraph > |
PGraph | TSnap::GetMxWcc (const PGraph &Graph) |
| Returns a graph representing the largest weakly connected component on an input Graph. More...
|
|
template<class PGraph > |
PGraph | TSnap::GetMxScc (const PGraph &Graph) |
| Returns a graph representing the largest strongly connected component on an input Graph. More...
|
|
template<class PGraph > |
PGraph | TSnap::GetMxBiCon (const PGraph &Graph) |
| Returns a graph representing the largest bi-connected component on an input Graph. More...
|
|
void | TSnap::GetBiConSzCnt (const PUNGraph &Graph, TIntPrV &SzCntV) |
| Returns a distribution of bi-connected component sizes. More...
|
|
void | TSnap::GetBiCon (const PUNGraph &Graph, TCnComV &BiCnComV) |
| Returns all bi-connected components of a Graph. More...
|
|
void | TSnap::GetArtPoints (const PUNGraph &Graph, TIntV &ArtNIdV) |
| Returns articulation points of a Graph. More...
|
|
void | TSnap::GetEdgeBridges (const PUNGraph &Graph, TIntPrV &EdgeV) |
| Returns bridge edges of a Graph. More...
|
|
void | TSnap::Get1CnComSzCnt (const PUNGraph &Graph, TIntPrV &SzCntV) |
| Distribution of sizes of 1-components, maximal number of components that can be disconnected from the Graph by removing a single edge. More...
|
|
void | TSnap::Get1CnCom (const PUNGraph &Graph, TCnComV &Cn1ComV) |
| Returns 1-components: maximal connected components of that can be disconnected from the Graph by removing a single edge. More...
|
|
PUNGraph | TSnap::GetMxBiCon (const PUNGraph &Graph, const bool &RenumberNodes=false) |
| Returns a graph representing the largest bi-connected component on an undirected Graph. More...
|
|