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

com.github.tommyettinger.gand.utils.SearchProcessor Maven / Gradle / Ivy

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