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

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

Go to download

AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.

The newest version!
package aima.core.search.framework.evalfunc;

import aima.core.search.framework.Node;

/**
 * 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