Module org.jgrapht.core
Package org.jgrapht.alg.interfaces
Interface TreeToPathDecompositionAlgorithm.PathDecomposition<V,E>
- 
- Type Parameters:
- V- the graph vertex type
- E- the graph edge type
 - All Known Implementing Classes:
- TreeToPathDecompositionAlgorithm.PathDecompositionImpl
 - Enclosing interface:
- TreeToPathDecompositionAlgorithm<V,E>
 
 public static interface TreeToPathDecompositionAlgorithm.PathDecomposition<V,E>A path decomposition.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.util.Set<E>getEdges()Set of edges of the path decomposition.java.util.Set<GraphPath<V,E>>getPaths()Set of disjoint paths of the decompositiondefault intnumberOfPaths()
 
- 
- 
- 
Method Detail- 
getEdgesjava.util.Set<E> getEdges() Set of edges of the path decomposition.- Returns:
- edge set of the path decomposition
 
 - 
getPathsjava.util.Set<GraphPath<V,E>> getPaths() Set of disjoint paths of the decomposition- Returns:
- list of vertex paths
 
 - 
numberOfPathsdefault int numberOfPaths() - Returns:
- number of paths in the decomposition
 
 
- 
 
-