Module org.jgrapht.core
Package org.jgrapht.alg.interfaces
Interface CapacitatedSpanningTreeAlgorithm.CapacitatedSpanningTree<V,E>
- Type Parameters:
V
- the graph vertex typeE
- the graph edge type
- All Superinterfaces:
Iterable<E>
,SpanningTreeAlgorithm.SpanningTree<E>
- All Known Implementing Classes:
CapacitatedSpanningTreeAlgorithm.CapacitatedSpanningTreeImpl
- Enclosing interface:
- CapacitatedSpanningTreeAlgorithm<V,
E>
public static interface CapacitatedSpanningTreeAlgorithm.CapacitatedSpanningTree<V,E>
extends Iterable<E>, SpanningTreeAlgorithm.SpanningTree<E>
A spanning tree.
-
Method Summary
Modifier and TypeMethodDescriptionReturn the set of labels of the underlying partition of the capacitated spanning tree.Return the label-to-partition map of the underlying partition of capacitated spanning tree.boolean
Tests whethercmst
is a CMST ongraph
with rootroot
, capacitycapacity
and demand functiondemands
.Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface org.jgrapht.alg.interfaces.SpanningTreeAlgorithm.SpanningTree
getEdges, getWeight, iterator
-
Method Details
-
isCapacitatedSpanningTree
Tests whethercmst
is a CMST ongraph
with rootroot
, capacitycapacity
and demand functiondemands
.- Parameters:
graph
- the graphroot
- the expected root of cmstcapacity
- the expected capacity of cmstdemands
- the demand function- Returns:
- whether
cmst
is a CMST
-
getLabels
Return the set of labels of the underlying partition of the capacitated spanning tree. The labels are a key to the vertex sets of the partition.- Returns:
- the label set of the capacitated spanning tree.
-
getPartition
Return the label-to-partition map of the underlying partition of capacitated spanning tree.- Returns:
- map from labels to the subsets of the partition of the capacitated spanning tree.
-