Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2014-01-27 10:59:04
Size: 729
Editor: XmlRpcBot
Comment:
Revision 7 as of 2016-04-25 11:53:51
Size: 927
Editor: XmlRpcBot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
Returns the current g-value of the search. Returns the g-value (path cost) of the search node.
Line 11: Line 11:
== Max evaluator ==

Calculates the maximum of the sub-evaluators.

{{{
max(evals)
}}}

 * ''evals'' (list of [[Doc/ScalarEvaluator|ScalarEvaluator]]): at least one scalar evaluator
Line 12: Line 21:
Line 14: Line 22:
Line 18: Line 25:

g-value evaluator

Returns the g-value (path cost) of the search node.

g()

Max evaluator

Calculates the maximum of the sub-evaluators.

max(evals)

Preference evaluator

Returns 0 if preferred is true and 1 otherwise.

pref()

Sum evaluator

Calculates the sum of the sub-evaluators.

sum(evals)

Weighted evaluator

Multiplies the value of the scalar evaluator with the given weight.

weight(eval, weight)