Exemple #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="processId">process identifier for the vertex</param>
 /// <param name="threadId">thread identifier for the vertex</param>
 public SingleVertex(int processId, int threadId)
 {
     this.location = new VertexLocation(0, processId, threadId);
 }
Exemple #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 public SingleVertex()
 {
     this.location = new VertexLocation(0, 0, 0);
 }