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

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

Deprecated.

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

Deprecated! Use the NGraph instead.

An edge in the standard Graph datastructure.

Author:
tw team
See Also:
Graph

Field Summary
 NeighborHashSetVertex<Data> a
          Deprecated. An endpoint of the edge.
 NeighborHashSetVertex<Data> b
          Deprecated. An endpoint of the edge.
 
Constructor Summary
NeighborHashSetEdge(NeighborHashSetVertex<Data> v1, NeighborHashSetVertex<Data> v2)
          Deprecated. An edge from v1 to v2.
 
Method Summary
 NeighborHashSetVertex<Data> other(NeighborHashSetVertex<Data> from)
          Deprecated. Useful for `getting to the other side' of an edge.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

a

public NeighborHashSetVertex<Data> a
Deprecated. 
An endpoint of the edge. The difference between a and b has no meaning.

See Also:
Edge.other(nl.uu.cs.treewidth.graph.Vertex)

b

public NeighborHashSetVertex<Data> b
Deprecated. 
An endpoint of the edge. The difference between a and b has no meaning.

See Also:
Edge.other(nl.uu.cs.treewidth.graph.Vertex)
Constructor Detail

NeighborHashSetEdge

public NeighborHashSetEdge(NeighborHashSetVertex<Data> v1,
                           NeighborHashSetVertex<Data> v2)
Deprecated. 
An edge from v1 to v2.

Parameters:
v1 -
v2 -
Method Detail

other

public NeighborHashSetVertex<Data> other(NeighborHashSetVertex<Data> from)
Deprecated. 
Useful for `getting to the other side' of an edge.
(TODO maybe give an example.)

Parameters:
from - Should be one of the two endpoints of the edge.
Returns:
An endpoint of the edge which is not from.