Package | Description |
---|---|
org.jgrapht.graph |
Implementations of various graphs.
|
org.jgrapht.graph.builder |
Various builder for graphs.
|
Modifier and Type | Class and Description |
---|---|
class |
AsUnweightedDirectedGraph<V,E>
Deprecated.
In favor of
AsUnweightedGraph . |
class |
AsWeightedDirectedGraph<V,E>
Deprecated.
In favor of
AsWeightedGraph . |
class |
DefaultDirectedGraph<V,E>
A directed graph.
|
class |
DefaultDirectedWeightedGraph<V,E>
A directed weighted graph.
|
class |
DirectedAcyclicGraph<V,E>
A directed acyclic graph (DAG).
|
class |
DirectedGraphUnion<V,E>
Deprecated.
In favor of
AsGraphUnion . |
class |
DirectedMaskSubgraph<V,E>
Deprecated.
In favor of
MaskSubgraph . |
class |
DirectedMultigraph<V,E>
A directed multigraph.
|
class |
DirectedPseudograph<V,E>
A directed pseudograph.
|
class |
DirectedSubgraph<V,E>
Deprecated.
In favor of
AsSubgraph . |
class |
DirectedWeightedMultigraph<V,E>
A directed weighted multigraph.
|
class |
DirectedWeightedPseudograph<V,E>
A directed weighted pseudograph.
|
class |
DirectedWeightedSubgraph<V,E>
Deprecated.
In favor of
AsSubgraph . |
class |
EdgeReversedGraph<V,E>
Provides an edge-reversed view g' of a directed graph g.
|
class |
ListenableDirectedGraph<V,E>
Deprecated.
In favor of
DefaultListenableGraph . |
class |
ListenableDirectedWeightedGraph<V,E>
Deprecated.
In favor of
DefaultListenableGraph . |
class |
MixedGraphUnion<V,E>
Deprecated.
In favor of
AsGraphUnion . |
class |
SimpleDirectedGraph<V,E>
A simple directed graph.
|
class |
SimpleDirectedWeightedGraph<V,E>
A simple directed weighted graph.
|
class |
UnmodifiableDirectedGraph<V,E>
Deprecated.
In favor of
AsUnmodifiableGraph . |
Constructor and Description |
---|
AsUnweightedDirectedGraph(DirectedGraph<V,E> g)
Deprecated.
Constructor
|
AsWeightedDirectedGraph(DirectedGraph<V,E> g,
Map<E,Double> weightMap)
Deprecated.
Constructor
|
DirectedGraphUnion(DirectedGraph<V,E> g1,
DirectedGraph<V,E> g2)
Deprecated.
Construct a new directed graph union.
|
DirectedGraphUnion(DirectedGraph<V,E> g1,
DirectedGraph<V,E> g2)
Deprecated.
Construct a new directed graph union.
|
DirectedGraphUnion(DirectedGraph<V,E> g1,
DirectedGraph<V,E> g2,
WeightCombiner operator)
Deprecated.
Construct a new directed graph union.
|
DirectedGraphUnion(DirectedGraph<V,E> g1,
DirectedGraph<V,E> g2,
WeightCombiner operator)
Deprecated.
Construct a new directed graph union.
|
DirectedMaskSubgraph(DirectedGraph<V,E> base,
java.util.function.Predicate<V> vertexMask,
java.util.function.Predicate<E> edgeMask)
Deprecated.
Create a new directed
MaskSubgraph of another graph. |
DirectedWeightedSubgraph(DirectedGraph<V,E> base)
Deprecated.
Creates a new weighted directed induced subgraph with all vertices included.
|
DirectedWeightedSubgraph(DirectedGraph<V,E> base,
Set<? extends V> vertexSubset)
Deprecated.
Creates a new weighted directed induced subgraph.
|
DirectedWeightedSubgraph(DirectedGraph<V,E> base,
Set<? extends V> vertexSubset,
Set<? extends E> edgeSubset)
Deprecated.
Creates a new weighted directed subgraph.
|
ListenableDirectedGraph(DirectedGraph<V,E> base)
Deprecated.
Creates a new listenable directed graph.
|
ListenableDirectedWeightedGraph(DirectedGraph<V,E> base)
Deprecated.
Creates a new listenable directed weighted graph.
|
MixedGraphUnion(UndirectedGraph<V,E> g1,
DirectedGraph<V,E> g2)
Deprecated.
Construct a new graph union.
|
MixedGraphUnion(UndirectedGraph<V,E> g1,
DirectedGraph<V,E> g2,
WeightCombiner operator)
Deprecated.
Construct a new graph union.
|
UnmodifiableDirectedGraph(DirectedGraph<V,E> g)
Deprecated.
Creates a new unmodifiable directed graph based on the specified backing graph.
|
Modifier and Type | Class and Description |
---|---|
class |
DirectedGraphBuilder<V,E,G extends DirectedGraph<V,E>>
Deprecated.
In favor of
GraphBuilder . |
class |
DirectedGraphBuilderBase<V,E,G extends DirectedGraph<V,E>,B extends DirectedGraphBuilderBase<V,E,G,B>>
Deprecated.
In favor of
GraphBuilder . |
class |
DirectedWeightedGraphBuilder<V,E,G extends DirectedGraph<V,E>>
Deprecated.
In favor of
GraphBuilder . |
class |
DirectedWeightedGraphBuilderBase<V,E,G extends DirectedGraph<V,E>,B extends DirectedWeightedGraphBuilderBase<V,E,G,B>>
Deprecated.
In favor of
GraphBuilder . |
Copyright © 2017. All rights reserved.