C# Class Smrf.NodeXL.Core.IntergroupEdgeInfo

Contains information about the edges that connect the vertices in one vertex group to the vertices in another vertex group.
The groups are assumed to be stored in some external indexed collection. This class stores the indexes of two groups, along with metrics for the edges that connect the groups.
Inheritance: Object
Datei anzeigen Open project: 2014-sed-team3/term-project Class Usage Examples

Protected Properties

Property Type Description
m_dEdgeWeightSum Double
m_iEdges System.Int32
m_iGroup1Index System.Int32
m_iGroup2Index System.Int32

Public Methods

Method Description
IntergroupEdgeInfo ( Int32 group1Index, Int32 group2Index, Int32 edges, Double edgeWeightSum ) : System

Initializes a new instance of the IntergroupEdgeInfo class.

Private Methods

Method Description
AssertValid ( ) : void

Method Details

IntergroupEdgeInfo() public method

Initializes a new instance of the IntergroupEdgeInfo class.
public IntergroupEdgeInfo ( Int32 group1Index, Int32 group2Index, Int32 edges, Double edgeWeightSum ) : System
group1Index System.Int32 /// The index of the first group. ///
group2Index System.Int32 /// The index of the second group. Note that this can be the same as /// , in which case the object contains /// information about the edges that connect the vertices within a single /// group. ///
edges System.Int32 /// The number of edges that connect the vertices in the first group with /// the vertices in the second group. Must be greater than zero. ///
edgeWeightSum Double /// The sum of the edge weights of the edges that connect the vertices in /// the first group with the vertices in the second group. Must be greater /// than zero. ///
return System

Property Details

m_dEdgeWeightSum protected_oe property

protected Double m_dEdgeWeightSum
return Double

m_iEdges protected_oe property

protected Int32,System m_iEdges
return System.Int32

m_iGroup1Index protected_oe property

protected Int32,System m_iGroup1Index
return System.Int32

m_iGroup2Index protected_oe property

protected Int32,System m_iGroup2Index
return System.Int32