Solution - the solution evaluatedValue - the type of value used to evaluate the solution (Double,
BigDecimal, enum, ...)public class LastEvaluationMeasure<Solution,Value> extends SimplePushMeasure<LastEvaluationMeasure.Evaluation<Solution,Value>>
LastEvaluationMeasure is a PushMeasure providing the last
evaluation made in an algorithm. It extends SimplePushMeasure and add
the method push(Object, Object) for simplicity.| Modifier and Type | Class and Description |
|---|---|
static class |
LastEvaluationMeasure.Evaluation<Solution,Value>
This structure represent an atomic evaluation of a given solution.
|
| Constructor and Description |
|---|
LastEvaluationMeasure() |
| Modifier and Type | Method and Description |
|---|---|
void |
push(Solution solution,
Value value)
This method is equivalent to
SimplePushMeasure.push(Object) excepted that it
automatically create the LastEvaluationMeasure.Evaluation instance. |
push, register, unregistergetDescription, getName, setDescription, setName, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetDescription, getNamepublic void push(Solution solution, Value value)
SimplePushMeasure.push(Object) excepted that it
automatically create the LastEvaluationMeasure.Evaluation instance.solution - the solution evaluatedvalue - the value of this solutionCopyright © 2015. All rights reserved.