All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hex.tree.PathResult Maven / Gradle / Ivy

package hex.tree;

class PathResult {
    StringBuilder path;
    int nodeId;

    PathResult(int nodeId) {
        path = new StringBuilder();
        this.nodeId = nodeId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy