ccvisu
Class GraphEdgeInt

java.lang.Object
  extended byccvisu.GraphEdgeInt

public class GraphEdgeInt
extends java.lang.Object

Represents an edge between two vertices x and y (given as vertex ids) of weight w.

Version:
$Revision: 1.3 $; $Date: 2005/09/30 15:28:09 $
Author:
Dirk Beyer

Field Summary
 float w
          Edge weight.
 int x
          Source vertex of edge.
 int y
          Target vertex of edge.
 
Constructor Summary
GraphEdgeInt()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

x

public int x
Source vertex of edge.


y

public int y
Target vertex of edge.


w

public float w
Edge weight.

Constructor Detail

GraphEdgeInt

public GraphEdgeInt()