| Package | Description |
|---|---|
| edu.uci.ics.jung.graph.filters |
Provides for a filtering mechanism that produces subgraphs of an original graph.
|
| edu.uci.ics.jung.graph.filters.impl |
Provides sample implementations and generally useful filters.
|
| Modifier and Type | Field and Description |
|---|---|
protected UnassembledGraph |
UnassembledGraph.previousGraph |
| Modifier and Type | Method and Description |
|---|---|
UnassembledGraph |
Filter.filter(Graph g)
Filters a graph by returning an UnassembledGraph consisting
of nodes and edges that pass the filter.
|
UnassembledGraph |
GeneralEdgeAcceptFilter.filter(Graph g)
Returns an UnassembledGraph with the subset
of edges that pass acceptEdge.
|
UnassembledGraph |
GeneralVertexAcceptFilter.filter(Graph g)
This method does the actual filtering of the the graph.
|
UnassembledGraph |
SerialFilter.filter(Graph g)
Runs through the sequence of filters, one at a time.
|
UnassembledGraph |
EfficientFilter.filter(UnassembledGraph ug)
Filters a graph by returning an UnassembledGraph consisting
of nodes and edges that pass the filter.
|
UnassembledGraph |
GeneralEdgeAcceptFilter.filter(UnassembledGraph ug)
Returns an UnassembledGraph with the subset
of edges that pass acceptEdge.
|
UnassembledGraph |
GeneralVertexAcceptFilter.filter(UnassembledGraph g)
Returns an UnassembledGraph with the subset
of vertices that pass acceptEdge.
|
UnassembledGraph |
SerialFilter.filter(UnassembledGraph g)
Runs through the sequence of filters, one at a time.
|
| Modifier and Type | Method and Description |
|---|---|
UnassembledGraph |
EfficientFilter.filter(UnassembledGraph ug)
Filters a graph by returning an UnassembledGraph consisting
of nodes and edges that pass the filter.
|
UnassembledGraph |
GeneralEdgeAcceptFilter.filter(UnassembledGraph ug)
Returns an UnassembledGraph with the subset
of edges that pass acceptEdge.
|
UnassembledGraph |
GeneralVertexAcceptFilter.filter(UnassembledGraph g)
Returns an UnassembledGraph with the subset
of vertices that pass acceptEdge.
|
UnassembledGraph |
SerialFilter.filter(UnassembledGraph g)
Runs through the sequence of filters, one at a time.
|
| Constructor and Description |
|---|
UnassembledGraph(Filter f,
java.util.Set vertices,
java.util.Set edges,
UnassembledGraph previous) |
| Modifier and Type | Method and Description |
|---|---|
UnassembledGraph |
KNeighborhoodFilter.filter(Graph graph)
Constructs an unassembled graph containing the k-neighbhood around the root node(s)
|