Package com.chemaxon.clustering.util
Interface SimpleDfsVisitor
-
@PublicAPI @Beta public interface SimpleDfsVisitor
Simple DFS traversal visitor.Please note that this interface is marked with
Beta
annotation, so it can be subject of incompatible changes or removal in later releases.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visit(List<IDBasedHierarchicCluster> path, IDBasedHierarchicCluster visitedCluster)
Visit cluster.
-
-
-
Method Detail
-
visit
void visit(List<IDBasedHierarchicCluster> path, IDBasedHierarchicCluster visitedCluster)
Visit cluster. Visits a path in the clustering hierarchy. This visit method is invoked for every descend or ascend step. Only clusters are visited, their immediate children are not.- Parameters:
path
- Path from root to the visited cluster. Last element of the path is the visited cluster.visitedCluster
- Last element of the path for convenience
-
-