Module org.jgrapht.core
Package org.jgrapht.alg.interfaces
Interface SteinerTreeAlgorithm.SteinerTree<E>
-
- Type Parameters:
E
- the graph edge type
- All Superinterfaces:
Iterable<E>
- All Known Implementing Classes:
SteinerTreeAlgorithm.SteinerTreeImpl
- Enclosing interface:
- SteinerTreeAlgorithm<V,E>
public static interface SteinerTreeAlgorithm.SteinerTree<E> extends Iterable<E>
A Steiner tree.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Set<E>
getEdges()
Set of edges of the Steiner tree.double
getWeight()
Returns the weight of the Steiner tree.default Iterator<E>
iterator()
Returns an iterator over the edges in the Steiner tree.-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-