public class NeverSatisfiedDummyHardObjective extends BaseObjective
comparator, fitnessConstraint, fitnessConstraintComparator, isThereFitnessConstraint, level, name| Constructor and Description |
|---|
NeverSatisfiedDummyHardObjective() |
NeverSatisfiedDummyHardObjective(java.lang.String name) |
| Modifier and Type | Method and Description |
|---|---|
IObjective |
createNew()
Returns an instance of the
IObjective. |
java.lang.Double |
getFitness(ThreadContext context)
Calculates the value of the objective on a given solution (trajectory).
|
boolean |
isHardObjective()
Returns true if the objective is a hard objective.
|
boolean |
satisifiesHardObjective(java.lang.Double fitness)
Determines if the given fitness value satisfies the hard objective.
|
equals, getComparator, getLevel, getName, hashCode, init, setComparator, setLevel, toString, withComparator, withHardConstraintOnFitness, withHardConstraintOnFitness, withLevelpublic NeverSatisfiedDummyHardObjective()
public NeverSatisfiedDummyHardObjective(java.lang.String name)
public java.lang.Double getFitness(ThreadContext context)
IObjectivecontext - The ThreadContextpublic boolean isHardObjective()
IObjectiveIObjective.satisifiesHardObjective(Double) is called.isHardObjective in interface IObjectiveisHardObjective in class BaseObjectiveIObjective.satisifiesHardObjective(Double),
IObjectivepublic boolean satisifiesHardObjective(java.lang.Double fitness)
IObjectivesatisifiesHardObjective in interface IObjectivesatisifiesHardObjective in class BaseObjectivefitness - The fitness value of a solution.IObjectivepublic IObjective createNew()
IObjectiveIObjective. If it returns the same instance, all the methods has to be thread
save as they are called concurrently.