Package | Description |
---|---|
org.jgrapht.graph |
Implementations of various graphs.
|
org.jgrapht.util |
Non-graph-specific data structures, algorithms, and utilities used by JGraphT.
|
Constructor and Description |
---|
AsGraphUnion(Graph<V,E> g1,
Graph<V,E> g2,
WeightCombiner operator)
Construct a new graph union.
|
DirectedGraphUnion(DirectedGraph<V,E> g1,
DirectedGraph<V,E> g2,
WeightCombiner operator)
Deprecated.
Construct a new directed graph union.
|
GraphUnion(G g1,
G g2,
WeightCombiner operator)
Deprecated.
Construct a new graph union.
|
MixedGraphUnion(UndirectedGraph<V,E> g1,
DirectedGraph<V,E> g2,
WeightCombiner operator)
Deprecated.
Construct a new graph union.
|
Modifier and Type | Field and Description |
---|---|
static WeightCombiner |
WeightCombiner.FIRST
First weight.
|
static WeightCombiner |
WeightCombiner.MAX
Maximum weight.
|
static WeightCombiner |
WeightCombiner.MIN
Minimum weight.
|
static WeightCombiner |
WeightCombiner.MULT
Multiplication of weights.
|
static WeightCombiner |
WeightCombiner.SECOND
Second weight.
|
static WeightCombiner |
WeightCombiner.SUM
Sum of weights.
|
Copyright © 2017. All rights reserved.