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