Module org.jgrapht.core
Package org.jgrapht.alg.interfaces
Interface TreeToPathDecompositionAlgorithm<V,E>
- Type Parameters:
- V- the graph vertex type
- E- the graph edge type
- All Known Implementing Classes:
- HeavyPathDecomposition
public interface TreeToPathDecompositionAlgorithm<V,E>
An algorithm which computes a decomposition into disjoint paths for a given tree/forest
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static interfaceTreeToPathDecompositionAlgorithm.PathDecomposition<V,E>A path decomposition.static classTreeToPathDecompositionAlgorithm.PathDecompositionImpl<V,E>Default implementation of the path decomposition interface.
- 
Method SummaryModifier and Type Method Description TreeToPathDecompositionAlgorithm.PathDecomposition<V,E>getPathDecomposition()Computes a path decomposition.
- 
Method Details- 
getPathDecompositionTreeToPathDecompositionAlgorithm.PathDecomposition<V,E> getPathDecomposition()Computes a path decomposition.- Returns:
- a path decomposition
 
 
-