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.2 $; $Date: 2005/08/22 12:42:46 $
Author:
Dirk Beyer

Field Summary
(package private)  float w
          Edge weight.
(package private)  int x
          Source vertex of edge.
(package private)  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

int x
Source vertex of edge.


y

int y
Target vertex of edge.


w

float w
Edge weight.

Constructor Detail

GraphEdgeInt

public GraphEdgeInt()