public class NoRuleActivationsHardObjective extends BaseObjective
| Modifier and Type | Field and Description |
|---|---|
protected static java.lang.String |
DEFAULT_NAME |
comparator, fitnessConstraint, fitnessConstraintComparator, isThereFitnessConstraint, level, name| Constructor and Description |
|---|
NoRuleActivationsHardObjective() |
NoRuleActivationsHardObjective(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).
|
void |
init(ThreadContext context)
Initializes the objective.
|
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, setComparator, setLevel, toString, withComparator, withHardConstraintOnFitness, withHardConstraintOnFitness, withLevelprotected static final java.lang.String DEFAULT_NAME
public NoRuleActivationsHardObjective(java.lang.String name)
public NoRuleActivationsHardObjective()
public java.lang.Double getFitness(ThreadContext context)
IObjectivecontext - The ThreadContextpublic void init(ThreadContext context)
IObjectiveinit in interface IObjectiveinit in class BaseObjectivecontext - The ThreadContext.public IObjective createNew()
IObjectiveIObjective. If it returns the same instance, all the methods has to be thread
save as they are called concurrently.public 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.IObjective