C# Class Smrf.NodeXL.Adapters.PajekGraphAdapter.PajekEdgeData

Stores information about one edge in a Pajek file.
This structure is embedded within the PajekGraphAdapter class and is meant for use only within the class.
Show file Open project: 2014-sed-team3/term-project

Public Methods

Method Description
PajekEdgeData ( Int32 firstVertexNumber, Int32 secondVertexNumber, Double weight ) : System

Initializes a new instance of the PajekEdgeData class.

Private Methods

Method Description
AssertValid ( ) : void

Method Details

PajekEdgeData() public method

Initializes a new instance of the PajekEdgeData class.
public PajekEdgeData ( Int32 firstVertexNumber, Int32 secondVertexNumber, Double weight ) : System
firstVertexNumber System.Int32 /// Vertex number of the edge's first vertex. The vertex number is the /// first field of the lines within the *vertices section and ranges from /// 1 to the number of vertices. ///
secondVertexNumber System.Int32 /// Vertex number of the edge's second vertex. ///
weight Double /// Edge weight. ///
return System