|
SNAP Library 4.1, Developer Reference
2018-07-26 16:30:42
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
|
Node iterator. Only forward iteration (operator++) is supported. More...
#include <network.h>


Public Member Functions | |
| TNodeI () | |
| TNodeI (const THashIter &NodeHIter, const TNEANet *GraphPt) | |
| TNodeI (const TNodeI &NodeI) | |
| TNodeI & | operator= (const TNodeI &NodeI) |
| TNodeI & | operator++ (int) |
| Increment iterator. More... | |
| bool | operator< (const TNodeI &NodeI) const |
| bool | operator== (const TNodeI &NodeI) const |
| int | GetId () const |
| Returns ID of the current node. More... | |
| int | GetDeg () const |
| Returns degree of the current node, the sum of in-degree and out-degree. More... | |
| int | GetInDeg () const |
| Returns in-degree of the current node. More... | |
| int | GetOutDeg () const |
| Returns out-degree of the current node. More... | |
| int | GetInNId (const int &EdgeN) const |
| Returns ID of EdgeN-th in-node (the node pointing to the current node). More... | |
| int | GetOutNId (const int &EdgeN) const |
| Returns ID of EdgeN-th out-node (the node the current node points to). More... | |
| int | GetNbrNId (const int &EdgeN) const |
| Returns ID of EdgeN-th neighboring node. More... | |
| bool | IsInNId (const int &NId) const |
| Tests whether node with ID NId points to the current node. More... | |
| bool | IsOutNId (const int &NId) const |
| Tests whether the current node points to node with ID NId. More... | |
| bool | IsNbrNId (const int &NId) const |
| Tests whether node with ID NId is a neighbor of the current node. More... | |
| int | GetInEId (const int &EdgeN) const |
| Returns ID of EdgeN-th in-edge. More... | |
| int | GetOutEId (const int &EdgeN) const |
| Returns ID of EdgeN-th out-edge. More... | |
| int | GetNbrEId (const int &EdgeN) const |
| Returns ID of EdgeN-th in or out-edge. More... | |
| bool | IsInEId (const int &EId) const |
| Tests whether the edge with ID EId is an in-edge of current node. More... | |
| bool | IsOutEId (const int &EId) const |
| Tests whether the edge with ID EId is an out-edge of current node. More... | |
| bool | IsNbrEId (const int &EId) const |
| Tests whether the edge with ID EId is an in or out-edge of current node. More... | |
| void | GetAttrNames (TStrV &Names) const |
| Gets vector of attribute names. More... | |
| void | GetAttrVal (TStrV &Val) const |
| Gets vector of attribute values. More... | |
| void | GetIntAttrNames (TStrV &Names) const |
| Gets vector of int attribute names. More... | |
| void | GetIntAttrVal (TIntV &Val) const |
| Gets vector of int attribute values. More... | |
| void | GetIntVAttrNames (TStrV &Names) const |
| Gets vector of int attribute names. More... | |
| void | GetIntVAttrVal (TVec< TIntV > &Val) const |
| Gets vector of int attribute values. More... | |
| void | GetStrAttrNames (TStrV &Names) const |
| Gets vector of str attribute names. More... | |
| void | GetStrAttrVal (TStrV &Val) const |
| Gets vector of str attribute values. More... | |
| void | GetFltAttrNames (TStrV &Names) const |
| Gets vector of flt attribute names. More... | |
| void | GetFltAttrVal (TFltV &Val) const |
| Gets vector of flt attribute values. More... | |
Protected Types | |
| typedef THash< TInt, TNode >::TIter | THashIter |
Protected Attributes | |
| THashIter | NodeHI |
| const TNEANet * | Graph |
Friends | |
| class | TNEANet |
Node iterator. Only forward iteration (operator++) is supported.
|
protected |
|
inline |
Gets vector of attribute names.
Definition at line 1845 of file network.h.
|
inline |
Gets vector of attribute values.
Definition at line 1847 of file network.h.
|
inline |
Returns degree of the current node, the sum of in-degree and out-degree.
Definition at line 1809 of file network.h.
Referenced by TSnap::PushRelabel().

|
inline |
Gets vector of flt attribute names.
Definition at line 1861 of file network.h.
Referenced by TTable::GetNodeTable().

|
inline |
Gets vector of flt attribute values.
Definition at line 1863 of file network.h.
|
inline |
Returns ID of the current node.
Definition at line 1807 of file network.h.
Referenced by TNEANet::AddFltAttrDatN(), TNEANet::AddIntAttrDatN(), TNEANet::AddIntVAttrDatN(), TNEANet::AddNode(), TNEANet::AddSAttrDatN(), TNEANet::AddStrAttrDatN(), TNEANet::AppendIntVAttrDatN(), TNEANet::DelAttrDatN(), TNEANet::DelFromIntVAttrDatN(), TNEANet::DelSAttrDatN(), TNEANet::GetFltAttrDatN(), TNEANet::GetFltAttrIndDatN(), TNEANet::GetIntAttrDatN(), TNEANet::GetIntAttrIndDatN(), TNEANet::GetIntVAttrDatN(), TModeNet::TNodeI::GetNeighborsByCrossNet(), TTable::GetNodeTable(), TNEANet::GetSAttrDatN(), TNEANet::GetSAttrVN(), TNEANet::GetStrAttrDatN(), TNEANet::GetStrAttrIndDatN(), TSnap::GetWeightedPageRankMP(), and TNEANet::GetWeightOutEdges().

|
inline |
Returns in-degree of the current node.
Definition at line 1811 of file network.h.
Referenced by TSnap::GetWeightedPageRankMP(), TSnap::GlobalRelabel(), TSnap::IntFlowBiDBFS(), TSnap::PushRelabel(), and TSnap::Relabel().

|
inline |
Returns ID of EdgeN-th in-edge.
Definition at line 1833 of file network.h.
Referenced by TSnap::GlobalRelabel(), TSnap::IntFlowBiDBFS(), TSnap::PushRelabel(), and TSnap::Relabel().

|
inline |
Returns ID of EdgeN-th in-node (the node pointing to the current node).
Range of NodeN: 0 <= NodeN < GetInDeg().
Definition at line 1817 of file network.h.
Referenced by TSnap::GetWeightedPageRankMP(), TSnap::GlobalRelabel(), TSnap::IntFlowBiDBFS(), TSnap::PushRelabel(), and TSnap::Relabel().

|
inline |
Gets vector of int attribute names.
Definition at line 1849 of file network.h.
Referenced by TTable::GetNodeTable().

|
inline |
Gets vector of int attribute values.
Definition at line 1851 of file network.h.
|
inline |
Gets vector of int attribute names.
Definition at line 1853 of file network.h.
Gets vector of int attribute values.
Definition at line 1855 of file network.h.
|
inline |
|
inline |
Returns ID of EdgeN-th neighboring node.
Range of NodeN: 0 <= NodeN < GetNbrDeg().
Definition at line 1825 of file network.h.
References TNEANet::TEdge::GetDstNId(), and TNEANet::TEdge::GetSrcNId().

|
inline |
Returns out-degree of the current node.
Definition at line 1813 of file network.h.
Referenced by TSnap::GetMaxFlowIntPR(), TSnap::GlobalRelabel(), TSnap::IntFlowBiDBFS(), and TSnap::Relabel().

|
inline |
Returns ID of EdgeN-th out-edge.
Definition at line 1835 of file network.h.
Referenced by TSnap::GetMaxFlowIntPR(), TSnap::GlobalRelabel(), TSnap::IntFlowBiDBFS(), TSnap::PushRelabel(), and TSnap::Relabel().

|
inline |
Returns ID of EdgeN-th out-node (the node the current node points to).
Range of NodeN: 0 <= NodeN < GetOutDeg().
Definition at line 1821 of file network.h.
Referenced by TSnap::GetMaxFlowIntPR(), TSnap::GlobalRelabel(), TSnap::IntFlowBiDBFS(), TSnap::PushRelabel(), and TSnap::Relabel().

|
inline |
Gets vector of str attribute names.
Definition at line 1857 of file network.h.
Referenced by TTable::GetNodeTable().

|
inline |
Gets vector of str attribute values.
Definition at line 1859 of file network.h.
|
inline |
| bool TNEANet::TNodeI::IsInNId | ( | const int & | NId | ) | const |
Tests whether node with ID NId points to the current node.
Definition at line 50 of file network.cpp.
References edge, TNEANet::GetEdge(), TNEANet::TNode::GetInDeg(), TNEANet::TNode::GetInEId(), Graph, and NodeHI.

|
inline |
Tests whether the edge with ID EId is an in or out-edge of current node.
Definition at line 1843 of file network.h.
|
inline |
Tests whether node with ID NId is a neighbor of the current node.
Definition at line 1831 of file network.h.
|
inline |
| bool TNEANet::TNodeI::IsOutNId | ( | const int & | NId | ) | const |
Tests whether the current node points to node with ID NId.
Definition at line 59 of file network.cpp.
References edge, TNEANet::TNode::GetOutDeg(), and TNEANet::TNode::GetOutEId().

|
inline |
|
inline |
|
inline |
|
protected |
Definition at line 1796 of file network.h.
Referenced by TModeNet::TNodeI::GetCrossNetNames(), TModeNet::TNodeI::GetNeighborsByCrossNet(), IsInNId(), TModeNet::TNodeI::operator=(), and operator=().
|
protected |
Definition at line 1795 of file network.h.
Referenced by IsInNId(), TModeNet::TNodeI::operator++(), TModeNet::TNodeI::operator<(), operator<(), TModeNet::TNodeI::operator=(), operator=(), TModeNet::TNodeI::operator==(), and operator==().