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

aima.core.search.framework.EvaluationFunction Maven / Gradle / Ivy

package aima.core.search.framework;

/**
 * Artificial Intelligence A Modern Approach (3rd Edition): page 92.
*
* The evaluation function is construed as a cost estimate, so the node with the * lowest evaluation is expanded first. * * @author Ciaran O'Reilly * */ public interface EvaluationFunction { double f(Node n); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy