SNAP Library 2.2, Developer Reference
2014-03-11 19:15:55
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
|
#include <network.h>
Public Member Functions | |
TNode () | |
TNode (const int &NId) | |
TNode (const int &NId, const TNodeData &NodeData) | |
TNode (const TNode &Node) | |
TNode (TSIn &SIn) | |
void | Save (TSOut &SOut) const |
int | GetId () const |
int | GetDeg () const |
int | GetInDeg () const |
int | GetOutDeg () const |
const TNodeData & | GetDat () const |
TNodeData & | GetDat () |
int | GetInNId (const int &NodeN) const |
int | GetOutNId (const int &NodeN) const |
int | GetNbrNId (const int &NodeN) const |
bool | IsInNId (const int &NId) const |
bool | IsOutNId (const int &NId) const |
bool | IsNbrNId (const int &NId) const |
bool | operator< (const TNode &Node) const |
Private Attributes | |
TInt | Id |
TNodeData | NodeDat |
TIntV | InNIdV |
TIntV | OutNIdV |
Friends | |
class | TNodeNet< TNodeData > |
TNodeNet< TNodeData >::TNode::TNode | ( | ) | [inline] |
TNodeNet< TNodeData >::TNode::TNode | ( | const int & | NId | ) | [inline] |
TNodeNet< TNodeData >::TNode::TNode | ( | const int & | NId, |
const TNodeData & | NodeData | ||
) | [inline] |
TNodeNet< TNodeData >::TNode::TNode | ( | const TNode & | Node | ) | [inline] |
TNodeNet< TNodeData >::TNode::TNode | ( | TSIn & | SIn | ) | [inline] |
const TNodeData& TNodeNet< TNodeData >::TNode::GetDat | ( | ) | const [inline] |
Definition at line 36 of file network.h.
References TNodeNet< TNodeData >::TNode::NodeDat.
{ return NodeDat; }
TNodeData& TNodeNet< TNodeData >::TNode::GetDat | ( | ) | [inline] |
Definition at line 37 of file network.h.
References TNodeNet< TNodeData >::TNode::NodeDat.
{ return NodeDat; }
int TNodeNet< TNodeData >::TNode::GetDeg | ( | ) | const [inline] |
Definition at line 33 of file network.h.
References TNodeNet< TNodeData >::TNode::GetInDeg(), and TNodeNet< TNodeData >::TNode::GetOutDeg().
int TNodeNet< TNodeData >::TNode::GetId | ( | ) | const [inline] |
Definition at line 32 of file network.h.
References TNodeNet< TNodeData >::TNode::Id.
Referenced by TNodeNet< TNodeData >::IsOk().
{ return Id; }
int TNodeNet< TNodeData >::TNode::GetInDeg | ( | ) | const [inline] |
Definition at line 34 of file network.h.
References TNodeNet< TNodeData >::TNode::InNIdV, and TVec< TVal, TSizeTy >::Len().
Referenced by TNodeNet< TNodeData >::DelNode(), TNodeNet< TNodeData >::TNode::GetDeg(), and TNodeNet< TNodeData >::IsOk().
int TNodeNet< TNodeData >::TNode::GetInNId | ( | const int & | NodeN | ) | const [inline] |
Definition at line 38 of file network.h.
References TNodeNet< TNodeData >::TNode::InNIdV.
Referenced by TNodeNet< TNodeData >::DelNode(), TNodeNet< TNodeData >::TNode::GetNbrNId(), and TNodeNet< TNodeData >::IsOk().
{ return InNIdV[NodeN]; }
int TNodeNet< TNodeData >::TNode::GetNbrNId | ( | const int & | NodeN | ) | const [inline] |
Definition at line 40 of file network.h.
References TNodeNet< TNodeData >::TNode::GetInNId(), TNodeNet< TNodeData >::TNode::GetOutDeg(), and TNodeNet< TNodeData >::TNode::GetOutNId().
int TNodeNet< TNodeData >::TNode::GetOutDeg | ( | ) | const [inline] |
Definition at line 35 of file network.h.
References TVec< TVal, TSizeTy >::Len(), and TNodeNet< TNodeData >::TNode::OutNIdV.
Referenced by TNodeNet< TNodeData >::DelNode(), TNodeNet< TNodeData >::TNode::GetDeg(), TNodeNet< TNodeData >::TNode::GetNbrNId(), and TNodeNet< TNodeData >::IsOk().
int TNodeNet< TNodeData >::TNode::GetOutNId | ( | const int & | NodeN | ) | const [inline] |
Definition at line 39 of file network.h.
References TNodeNet< TNodeData >::TNode::OutNIdV.
Referenced by TNodeNet< TNodeData >::DelNode(), TNodeNet< TNodeData >::TNode::GetNbrNId(), and TNodeNet< TNodeData >::IsOk().
{ return OutNIdV[NodeN]; }
bool TNodeNet< TNodeData >::TNode::IsInNId | ( | const int & | NId | ) | const [inline] |
Definition at line 41 of file network.h.
References TNodeNet< TNodeData >::TNode::InNIdV, and TVec< TVal, TSizeTy >::SearchBin().
Referenced by TNodeNet< TNodeData >::TNode::IsNbrNId().
bool TNodeNet< TNodeData >::TNode::IsNbrNId | ( | const int & | NId | ) | const [inline] |
Definition at line 43 of file network.h.
References TNodeNet< TNodeData >::TNode::IsInNId(), and TNodeNet< TNodeData >::TNode::IsOutNId().
bool TNodeNet< TNodeData >::TNode::IsOutNId | ( | const int & | NId | ) | const [inline] |
Definition at line 42 of file network.h.
References TNodeNet< TNodeData >::TNode::OutNIdV, and TVec< TVal, TSizeTy >::SearchBin().
Referenced by TNodeNet< TNodeData >::TNode::IsNbrNId().
bool TNodeNet< TNodeData >::TNode::operator< | ( | const TNode & | Node | ) | const [inline] |
Definition at line 44 of file network.h.
References TNodeNet< TNodeData >::TNode::NodeDat.
{ return NodeDat < Node.NodeDat; }
void TNodeNet< TNodeData >::TNode::Save | ( | TSOut & | SOut | ) | const [inline] |
Definition at line 31 of file network.h.
References TNodeNet< TNodeData >::TNode::Id, TNodeNet< TNodeData >::TNode::InNIdV, TNodeNet< TNodeData >::TNode::NodeDat, TNodeNet< TNodeData >::TNode::OutNIdV, TVec< TVal, TSizeTy >::Save(), and TInt::Save().
friend class TNodeNet< TNodeData > [friend] |
Definition at line 22 of file network.h.
Referenced by TNodeNet< TNodeData >::TNode::GetId(), and TNodeNet< TNodeData >::TNode::Save().
TIntV TNodeNet< TNodeData >::TNode::InNIdV [private] |
Definition at line 24 of file network.h.
Referenced by TNodeNet< TNodeData >::Defrag(), TNodeNet< TNodeData >::DelNode(), TNodeNet< TNodeData >::TNode::GetInDeg(), TNodeNet< TNodeData >::TNode::GetInNId(), TNodeNet< TNodeData >::TNode::IsInNId(), TNodeNet< TNodeData >::IsOk(), and TNodeNet< TNodeData >::TNode::Save().
TNodeData TNodeNet< TNodeData >::TNode::NodeDat [private] |
Definition at line 23 of file network.h.
Referenced by TNodeNet< TNodeData >::TNode::GetDat(), TNodeNet< TSecTm >::GetNDat(), TNodeNet< TNodeData >::TNode::operator<(), and TNodeNet< TNodeData >::TNode::Save().
TIntV TNodeNet< TNodeData >::TNode::OutNIdV [private] |
Definition at line 24 of file network.h.
Referenced by TNodeNet< TNodeData >::Defrag(), TNodeNet< TNodeData >::DelNode(), TNodeNet< TNodeData >::TNode::GetOutDeg(), TNodeNet< TNodeData >::TNode::GetOutNId(), TNodeNet< TNodeData >::IsOk(), TNodeNet< TNodeData >::TNode::IsOutNId(), and TNodeNet< TNodeData >::TNode::Save().