Uses of Interface
io.openml.gearbox.algorithms.bfs.NodeVisitor
Packages that use NodeVisitor
-
Uses of NodeVisitor in io.openml.gearbox.algorithms.bfs
Methods in io.openml.gearbox.algorithms.bfs with parameters of type NodeVisitorModifier and TypeMethodDescriptiondefault voidNode.accept(NodeVisitor<T> visitor) The operation allows aNodeVisitorto "visit" the node.static <T> voidBfs.traverse(Node<T> startNode, NodeVisitor<T> visitor) Performs a Breadth-First Search (BFS) traversal starting from a given node.static <T> voidBfs.traverseLeveled(Node<T> startNode, NodeVisitor<T> visitor) Performs a leveled Breadth-First Search (BFS) traversal, i.e.