Package | Description |
---|---|
edu.uci.ics.jung.graph |
Specifies the interfaces for and capabilities of the JUNG vertex, edge, and graph classes.
|
edu.uci.ics.jung.graph.impl |
Implementations of the JUNG vertex, edge, and graph interfaces.
|
Modifier and Type | Method and Description |
---|---|
Hypervertex |
Hypergraph.addVertex(Hypervertex v)
Adds
v to this graph, and returns
a reference to the added vertex. |
Modifier and Type | Method and Description |
---|---|
Hypervertex |
Hypergraph.addVertex(Hypervertex v)
Adds
v to this graph, and returns
a reference to the added vertex. |
boolean |
Hyperedge.connectVertex(Hypervertex hv1)
Connects
hv1 to this hyperedge and vice versa. |
boolean |
Hyperedge.disconnectVertex(Hypervertex hv1)
Disconnects
hv1 from this hyperedge and vice versa. |
void |
Hypergraph.removeVertex(Hypervertex v)
Removes
v from this graph. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractHypervertex
This class provides a skeletal implementation of the
Hypervertex
interface to minimize the effort required to implement this interface. |
class |
CollectionHypervertex |
class |
HypervertexBPG
A Hypervertex has zero or more hyperEdges attached to it, and
is a member of a Hypergraph.
|
class |
ListHypervertex
An implementation of
Hypervertex that stores its
incident edges as a List internally. |
class |
SetHypervertex
An implementation of
Hypervertex that maintains
independent Set s of incident edges and neighbors. |
Modifier and Type | Method and Description |
---|---|
Hypervertex |
HypergraphBPG.addVertex(Hypervertex v)
Deprecated.
Adds
v to this graph. |
Hypervertex |
SetHypergraph.addVertex(Hypervertex v) |
Modifier and Type | Method and Description |
---|---|
Hypervertex |
HypergraphBPG.addVertex(Hypervertex v)
Deprecated.
Adds
v to this graph. |
Hypervertex |
SetHypergraph.addVertex(Hypervertex v) |
boolean |
AbstractHyperedge.connectVertex(Hypervertex hv1)
Connects
hv1 to this edge and vice versa. |
boolean |
HyperedgeBPG.connectVertex(Hypervertex hv3_x)
Deprecated.
Registers an additional vertex
hv3_x onto this Edge. |
boolean |
AbstractHyperedge.disconnectVertex(Hypervertex hv1)
Disconnects
hv1 from this edge and vice versa. |
boolean |
HyperedgeBPG.disconnectVertex(Hypervertex v)
Deprecated.
|
void |
HypergraphBPG.removeVertex(Hypervertex v)
Deprecated.
|
void |
SetHypergraph.removeVertex(Hypervertex v)
Removes the vertex from this graph.
|