nl.uu.cs.treewidth.graph
Class Vertex<Data>

java.lang.Object
  extended by nl.uu.cs.treewidth.graph.Vertex<Data>
Type Parameters:
Data -

Deprecated.

@Deprecated
public class Vertex<Data>
extends java.lang.Object

Deprecated! Use the NGraph instead.

A vertex in the standard Graph datastructure.

Author:
tw team
See Also:
Graph

Field Summary
 Data data
          Deprecated. User content for this vertex
 java.util.ArrayList<Edge<Data>> edges
          Deprecated. Adjacency list
 
Constructor Summary
Vertex()
          Deprecated. Default constructor for a vertex with no neighbors and unit value.
Vertex(Data data)
          Deprecated.  
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

data

public Data data
Deprecated. 
User content for this vertex


edges

public java.util.ArrayList<Edge<Data>> edges
Deprecated. 
Adjacency list

Constructor Detail

Vertex

public Vertex()
Deprecated. 
Default constructor for a vertex with no neighbors and unit value.


Vertex

public Vertex(Data data)
Deprecated.