C# Class Smrf.NodeXL.Algorithms.VertexDegrees

Stores the degree metrics for one vertex.
Technically, in-degree and out-degree are valid only for directed graphs and degree is valid only for undirected graphs, but all three metrics are provided by this class anyway. Degree is the sum of in-degree and out-degree.
Inheritance: Object
Afficher le fichier Open project: 2014-sed-team3/term-project

Protected Properties

Свойство Type Description
m_iInDegree System.Int32
m_iOutDegree System.Int32

Méthodes publiques

Méthode Description
VertexDegrees ( Int32 inDegree, Int32 outDegree ) : System

Initializes a new instance of the VertexDegrees class.

Private Methods

Méthode Description
AssertValid ( ) : void

Method Details

VertexDegrees() public méthode

Initializes a new instance of the VertexDegrees class.
public VertexDegrees ( Int32 inDegree, Int32 outDegree ) : System
inDegree System.Int32 /// The vertex's in-degree. ///
outDegree System.Int32 /// The vertex's out-degree. ///
Résultat System

Property Details

m_iInDegree protected_oe property

protected Int32,System m_iInDegree
Résultat System.Int32

m_iOutDegree protected_oe property

protected Int32,System m_iOutDegree
Résultat System.Int32