OptaPlanner distribution 6.2.1-SNAPSHOT

Uses of Interface
org.optaplanner.core.impl.score.director.InnerScoreDirector

Packages that use InnerScoreDirector
org.optaplanner.core.impl.domain.variable.anchor   
org.optaplanner.core.impl.domain.variable.custom   
org.optaplanner.core.impl.domain.variable.descriptor   
org.optaplanner.core.impl.domain.variable.inverserelation   
org.optaplanner.core.impl.domain.variable.listener   
org.optaplanner.core.impl.domain.variable.supply   
org.optaplanner.core.impl.phase.scope   
org.optaplanner.core.impl.score.director   
org.optaplanner.core.impl.score.director.drools   
org.optaplanner.core.impl.score.director.easy   
org.optaplanner.core.impl.score.director.incremental   
org.optaplanner.core.impl.solver.scope   
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.domain.variable.anchor
 

Methods in org.optaplanner.core.impl.domain.variable.anchor with parameters of type InnerScoreDirector
 VariableListener AnchorShadowVariableDescriptor.buildVariableListener(InnerScoreDirector scoreDirector)
           
 AnchorVariableSupply AnchorVariableDemand.createExternalizedSupply(InnerScoreDirector scoreDirector)
           
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.domain.variable.custom
 

Methods in org.optaplanner.core.impl.domain.variable.custom with parameters of type InnerScoreDirector
 VariableListener CustomShadowVariableDescriptor.buildVariableListener(InnerScoreDirector scoreDirector)
           
 SingletonInverseVariableSupply CustomShadowVariableDemand.createExternalizedSupply(InnerScoreDirector scoreDirector)
           
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.domain.variable.descriptor
 

Methods in org.optaplanner.core.impl.domain.variable.descriptor with parameters of type InnerScoreDirector
abstract  VariableListener ShadowVariableDescriptor.buildVariableListener(InnerScoreDirector scoreDirector)
           
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.domain.variable.inverserelation
 

Methods in org.optaplanner.core.impl.domain.variable.inverserelation with parameters of type InnerScoreDirector
 VariableListener InverseRelationShadowVariableDescriptor.buildVariableListener(InnerScoreDirector scoreDirector)
           
 SingletonInverseVariableSupply SingletonInverseVariableDemand.createExternalizedSupply(InnerScoreDirector scoreDirector)
           
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.domain.variable.listener
 

Fields in org.optaplanner.core.impl.domain.variable.listener declared as InnerScoreDirector
protected  InnerScoreDirector VariableListenerSupport.scoreDirector
           
 

Methods in org.optaplanner.core.impl.domain.variable.listener with parameters of type InnerScoreDirector
 void VariableListenerSupport.afterEntityAdded(InnerScoreDirector scoreDirector, EntityDescriptor entityDescriptor, Object entity)
           
 void VariableListenerSupport.afterEntityRemoved(InnerScoreDirector scoreDirector, EntityDescriptor entityDescriptor, Object entity)
           
 void VariableListenerSupport.afterVariableChanged(InnerScoreDirector scoreDirector, VariableDescriptor variableDescriptor, Object entity)
           
 void VariableListenerSupport.beforeEntityAdded(InnerScoreDirector scoreDirector, EntityDescriptor entityDescriptor, Object entity)
           
 void VariableListenerSupport.beforeEntityRemoved(InnerScoreDirector scoreDirector, EntityDescriptor entityDescriptor, Object entity)
           
 void VariableListenerSupport.beforeVariableChanged(InnerScoreDirector scoreDirector, VariableDescriptor variableDescriptor, Object entity)
           
 void VariableListenerSupport.clearWorkingSolution(InnerScoreDirector scoreDirector)
           
 void VariableListenerSupport.resetWorkingSolution(InnerScoreDirector scoreDirector)
           
 

Constructors in org.optaplanner.core.impl.domain.variable.listener with parameters of type InnerScoreDirector
VariableListenerSupport(InnerScoreDirector scoreDirector)
           
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.domain.variable.supply
 

Methods in org.optaplanner.core.impl.domain.variable.supply with parameters of type InnerScoreDirector
 S Demand.createExternalizedSupply(InnerScoreDirector scoreDirector)
          Only called if the domain model doesn't already support the demand (through a shadow variable usually).
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.phase.scope
 

Methods in org.optaplanner.core.impl.phase.scope that return InnerScoreDirector
 InnerScoreDirector AbstractStepScope.getScoreDirector()
           
 InnerScoreDirector AbstractPhaseScope.getScoreDirector()
           
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.score.director
 

Classes in org.optaplanner.core.impl.score.director that implement InnerScoreDirector
 class AbstractScoreDirector<F extends AbstractScoreDirectorFactory>
          Abstract superclass for ScoreDirector.
 

Methods in org.optaplanner.core.impl.score.director that return InnerScoreDirector
 InnerScoreDirector InnerScoreDirectorFactory.buildScoreDirector()
           
 InnerScoreDirector AbstractScoreDirectorFactory.buildScoreDirector()
           
 InnerScoreDirector InnerScoreDirectorFactory.buildScoreDirector(boolean constraintMatchEnabledPreference)
          Like InnerScoreDirectorFactory.buildScoreDirector(), but optionally disables ConstraintMatch tracking for more performance (presuming the ScoreDirector implementation actually supports it to begin with).
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.score.director.drools
 

Classes in org.optaplanner.core.impl.score.director.drools that implement InnerScoreDirector
 class DroolsScoreDirector
          Drools implementation of ScoreDirector, which directs the Rule Engine to calculate the Score of the Solution workingSolution.
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.score.director.easy
 

Classes in org.optaplanner.core.impl.score.director.easy that implement InnerScoreDirector
 class EasyScoreDirector
          Easy java implementation of ScoreDirector, which recalculates the Score of the Solution workingSolution every time.
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.score.director.incremental
 

Classes in org.optaplanner.core.impl.score.director.incremental that implement InnerScoreDirector
 class IncrementalScoreDirector
          Incremental java implementation of ScoreDirector, which only recalculates the Score of the part of the Solution workingSolution that changed, instead of the going through the entire Solution.
 

Uses of InnerScoreDirector in org.optaplanner.core.impl.solver.scope
 

Fields in org.optaplanner.core.impl.solver.scope declared as InnerScoreDirector
protected  InnerScoreDirector DefaultSolverScope.scoreDirector
           
 

Methods in org.optaplanner.core.impl.solver.scope that return InnerScoreDirector
 InnerScoreDirector DefaultSolverScope.getScoreDirector()
           
 

Methods in org.optaplanner.core.impl.solver.scope with parameters of type InnerScoreDirector
 void DefaultSolverScope.setScoreDirector(InnerScoreDirector scoreDirector)
           
 


OptaPlanner distribution 6.2.1-SNAPSHOT

Copyright © 2006-2015 JBoss by Red Hat. All Rights Reserved.