Package com.jgalgo.alg
Interface SteinerTreeAlgo.IResult
-
- All Superinterfaces:
SteinerTreeAlgo.Result<Integer,Integer>
- Enclosing interface:
- SteinerTreeAlgo
public static interface SteinerTreeAlgo.IResult extends SteinerTreeAlgo.Result<Integer,Integer>
A result object forSteinerTreeAlgo
computation forIntGraph
.- Author:
- Barak Ugav
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntSet
edges()
Get all the edges that form the Steiner tree.
-
-
-
Method Detail
-
edges
IntSet edges()
Description copied from interface:SteinerTreeAlgo.Result
Get all the edges that form the Steiner tree.- Specified by:
edges
in interfaceSteinerTreeAlgo.Result<Integer,Integer>
- Returns:
- a collection of the Steiner tree edges.
-
-