
com.github.tommyettinger.gand.utils.SearchProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gand Show documentation
Show all versions of gand Show documentation
Pathfinding and other graph algorithms. Based on simple-graphs.
The newest version!
package com.github.tommyettinger.gand.utils;
import com.github.tommyettinger.gand.algorithms.SearchStep;
/**
* Essentially the same as a {@code Consumer>}, this is a functional interface that is typically run by
* search algorithms at each step. Its functional method is {@link #accept(Object)}, where accept is given a SearchStep
* of type V.
* @param the type parameter for each SearchStep; the vertex type
*/
public interface SearchProcessor extends ObjectConsumer> {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy