Package com.jgalgo.alg
Interface MinimumSpanningTree.Result<V,E>
-
- Type Parameters:
V
- the vertices typeE
- the edges type
- All Known Subinterfaces:
MinimumSpanningTree.IResult
- Enclosing interface:
- MinimumSpanningTree
public static interface MinimumSpanningTree.Result<V,E>
A result object forMinimumSpanningTree
computation.- Author:
- Barak Ugav
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<E>
edges()
Get all the edges that form the spanning tree.
-