OptaPlanner core 6.0.1.Final

Uses of Interface
org.optaplanner.core.api.score.Score

Packages that use Score
org.optaplanner.core.api.score   
org.optaplanner.core.api.score.buildin.bendable   
org.optaplanner.core.api.score.buildin.hardmediumsoft   
org.optaplanner.core.api.score.buildin.hardsoft   
org.optaplanner.core.api.score.buildin.hardsoftbigdecimal   
org.optaplanner.core.api.score.buildin.hardsoftdouble   
org.optaplanner.core.api.score.buildin.hardsoftlong   
org.optaplanner.core.api.score.buildin.simple   
org.optaplanner.core.api.score.buildin.simplebigdecimal   
org.optaplanner.core.api.score.buildin.simpledouble   
org.optaplanner.core.api.score.buildin.simplelong   
org.optaplanner.core.api.score.comparator   
org.optaplanner.core.api.score.holder   
org.optaplanner.core.impl.constructionheuristic.decider.forager   
org.optaplanner.core.impl.constructionheuristic.scope   
org.optaplanner.core.impl.localsearch.decider.acceptor.greatdeluge   
org.optaplanner.core.impl.localsearch.decider.acceptor.lateacceptance   
org.optaplanner.core.impl.localsearch.decider.acceptor.latesimulatedannealing   
org.optaplanner.core.impl.localsearch.decider.acceptor.simulatedannealing   
org.optaplanner.core.impl.localsearch.decider.acceptor.stepcountinghillclimbing   
org.optaplanner.core.impl.localsearch.decider.deciderscorecomparator   
org.optaplanner.core.impl.localsearch.decider.forager   
org.optaplanner.core.impl.localsearch.scope   
org.optaplanner.core.impl.phase   
org.optaplanner.core.impl.phase.step   
org.optaplanner.core.impl.score   
org.optaplanner.core.impl.score.buildin.bendable   
org.optaplanner.core.impl.score.buildin.hardmediumsoft   
org.optaplanner.core.impl.score.buildin.hardsoft   
org.optaplanner.core.impl.score.buildin.hardsoftbigdecimal   
org.optaplanner.core.impl.score.buildin.hardsoftdouble   
org.optaplanner.core.impl.score.buildin.hardsoftlong   
org.optaplanner.core.impl.score.buildin.simple   
org.optaplanner.core.impl.score.buildin.simplebigdecimal   
org.optaplanner.core.impl.score.buildin.simpledouble   
org.optaplanner.core.impl.score.buildin.simplelong   
org.optaplanner.core.impl.score.comparator   
org.optaplanner.core.impl.score.definition   
org.optaplanner.core.impl.score.director   
org.optaplanner.core.impl.score.director.drools   
org.optaplanner.core.impl.score.director.incremental   
org.optaplanner.core.impl.score.director.simple   
org.optaplanner.core.impl.solution   
org.optaplanner.core.impl.solver.scope   
org.optaplanner.core.impl.termination   
 

Uses of Score in org.optaplanner.core.api.score
 

Classes in org.optaplanner.core.api.score with type parameters of type Score
 class AbstractScore<S extends Score>
          Abstract superclass for Score.
 interface Score<S extends Score>
          A Score is result of the score function (AKA fitness function) on a single possible solution.
 

Subinterfaces of Score in org.optaplanner.core.api.score
 interface FeasibilityScore<S extends FeasibilityScore>
          A Score that supports FeasibilityScore.isFeasible().
 

Classes in org.optaplanner.core.api.score that implement Score
 class AbstractScore<S extends Score>
          Abstract superclass for Score.
 

Uses of Score in org.optaplanner.core.api.score.buildin.bendable
 

Classes in org.optaplanner.core.api.score.buildin.bendable that implement Score
 class BendableScore
          This Score is based on n levels of int constraints.
 

Methods in org.optaplanner.core.api.score.buildin.bendable that return Score
 Score BendableScoreHolder.extractScore()
           
 

Uses of Score in org.optaplanner.core.api.score.buildin.hardmediumsoft
 

Classes in org.optaplanner.core.api.score.buildin.hardmediumsoft that implement Score
 class HardMediumSoftScore
          This Score is based on 3 levels of int constraints: hard, medium and soft.
 

Methods in org.optaplanner.core.api.score.buildin.hardmediumsoft that return Score
 Score HardMediumSoftScoreHolder.extractScore()
           
 

Uses of Score in org.optaplanner.core.api.score.buildin.hardsoft
 

Classes in org.optaplanner.core.api.score.buildin.hardsoft that implement Score
 class HardSoftScore
          This Score is based on 2 levels of int constraints: hard and soft.
 

Methods in org.optaplanner.core.api.score.buildin.hardsoft that return Score
 Score HardSoftScoreHolder.extractScore()
           
 

Uses of Score in org.optaplanner.core.api.score.buildin.hardsoftbigdecimal
 

Classes in org.optaplanner.core.api.score.buildin.hardsoftbigdecimal that implement Score
 class HardSoftBigDecimalScore
          This Score is based on 2 levels of BigDecimal constraints: hard and soft.
 

Methods in org.optaplanner.core.api.score.buildin.hardsoftbigdecimal that return Score
 Score HardSoftBigDecimalScoreHolder.extractScore()
           
 

Uses of Score in org.optaplanner.core.api.score.buildin.hardsoftdouble
 

Classes in org.optaplanner.core.api.score.buildin.hardsoftdouble that implement Score
 class HardSoftDoubleScore
          This Score is based on 2 levels of double constraints: hard and soft.
 

Methods in org.optaplanner.core.api.score.buildin.hardsoftdouble that return Score
 Score HardSoftDoubleScoreHolder.extractScore()
           
 

Uses of Score in org.optaplanner.core.api.score.buildin.hardsoftlong
 

Classes in org.optaplanner.core.api.score.buildin.hardsoftlong that implement Score
 class HardSoftLongScore
          This Score is based on 2 levels of long constraints: hard and soft.
 

Methods in org.optaplanner.core.api.score.buildin.hardsoftlong that return Score
 Score HardSoftLongScoreHolder.extractScore()
           
 

Uses of Score in org.optaplanner.core.api.score.buildin.simple
 

Classes in org.optaplanner.core.api.score.buildin.simple that implement Score
 class SimpleScore
          This Score is based on 1 level of int constraints.
 

Methods in org.optaplanner.core.api.score.buildin.simple that return Score
 Score SimpleScoreHolder.extractScore()
           
 

Uses of Score in org.optaplanner.core.api.score.buildin.simplebigdecimal
 

Classes in org.optaplanner.core.api.score.buildin.simplebigdecimal that implement Score
 class SimpleBigDecimalScore
          This Score is based on 1 level of BigDecimal constraints.
 

Methods in org.optaplanner.core.api.score.buildin.simplebigdecimal that return Score
 Score SimpleBigDecimalScoreHolder.extractScore()
           
 

Uses of Score in org.optaplanner.core.api.score.buildin.simpledouble
 

Classes in org.optaplanner.core.api.score.buildin.simpledouble that implement Score
 class SimpleDoubleScore
          This Score is based on 1 level of double constraints.
 

Methods in org.optaplanner.core.api.score.buildin.simpledouble that return Score
 Score SimpleDoubleScoreHolder.extractScore()
           
 

Uses of Score in org.optaplanner.core.api.score.buildin.simplelong
 

Classes in org.optaplanner.core.api.score.buildin.simplelong that implement Score
 class SimpleLongScore
          This Score is based on 1 level of long constraints.
 

Methods in org.optaplanner.core.api.score.buildin.simplelong that return Score
 Score SimpleLongScoreHolder.extractScore()
           
 

Uses of Score in org.optaplanner.core.api.score.comparator
 

Methods in org.optaplanner.core.api.score.comparator with parameters of type Score
 int NaturalScoreComparator.compare(Score score1, Score score2)
           
 int NaturalScoreComparator.compare(Score score1, Score score2)
           
 

Uses of Score in org.optaplanner.core.api.score.holder
 

Methods in org.optaplanner.core.api.score.holder that return Score
 Score ScoreHolder.extractScore()
          Extracts the Score, calculated by the KieSession for DroolsScoreDirector.
 

Uses of Score in org.optaplanner.core.impl.constructionheuristic.decider.forager
 

Fields in org.optaplanner.core.impl.constructionheuristic.decider.forager with type parameters of type Score
protected  Comparator<Score> DefaultConstructionHeuristicForager.scoreComparator
           
 

Uses of Score in org.optaplanner.core.impl.constructionheuristic.scope
 

Methods in org.optaplanner.core.impl.constructionheuristic.scope that return Score
 Score ConstructionHeuristicMoveScope.getScore()
           
 

Methods in org.optaplanner.core.impl.constructionheuristic.scope with parameters of type Score
 void ConstructionHeuristicMoveScope.setScore(Score score)
           
 

Uses of Score in org.optaplanner.core.impl.localsearch.decider.acceptor.greatdeluge
 

Fields in org.optaplanner.core.impl.localsearch.decider.acceptor.greatdeluge declared as Score
protected  Score GreatDelugeAcceptor.waterLevelScore
           
 

Uses of Score in org.optaplanner.core.impl.localsearch.decider.acceptor.lateacceptance
 

Fields in org.optaplanner.core.impl.localsearch.decider.acceptor.lateacceptance declared as Score
protected  Score[] LateAcceptanceAcceptor.previousScores
           
 

Uses of Score in org.optaplanner.core.impl.localsearch.decider.acceptor.latesimulatedannealing
 

Fields in org.optaplanner.core.impl.localsearch.decider.acceptor.latesimulatedannealing declared as Score
protected  Score[] LateSimulatedAnnealingAcceptor.previousScores
           
 

Uses of Score in org.optaplanner.core.impl.localsearch.decider.acceptor.simulatedannealing
 

Fields in org.optaplanner.core.impl.localsearch.decider.acceptor.simulatedannealing declared as Score
protected  Score SimulatedAnnealingAcceptor.startingTemperature
           
 

Methods in org.optaplanner.core.impl.localsearch.decider.acceptor.simulatedannealing with parameters of type Score
 void SimulatedAnnealingAcceptor.setStartingTemperature(Score startingTemperature)
           
 

Uses of Score in org.optaplanner.core.impl.localsearch.decider.acceptor.stepcountinghillclimbing
 

Fields in org.optaplanner.core.impl.localsearch.decider.acceptor.stepcountinghillclimbing declared as Score
protected  Score StepCountingHillClimbingAcceptor.thresholdScore
           
 

Uses of Score in org.optaplanner.core.impl.localsearch.decider.deciderscorecomparator
 

Methods in org.optaplanner.core.impl.localsearch.decider.deciderscorecomparator that return types with arguments of type Score
 Comparator<Score> ShiftingHardPenaltyDeciderScoreComparatorFactory.createDeciderScoreComparator()
           
 Comparator<Score> DeciderScoreComparatorFactory.createDeciderScoreComparator()
           
 Comparator<Score> NaturalDeciderScoreComparatorFactory.createDeciderScoreComparator()
           
 

Uses of Score in org.optaplanner.core.impl.localsearch.decider.forager
 

Fields in org.optaplanner.core.impl.localsearch.decider.forager declared as Score
protected  Score AcceptedForager.maxAcceptedScore
           
protected  Score AcceptedForager.maxUnacceptedScore
           
 

Fields in org.optaplanner.core.impl.localsearch.decider.forager with type parameters of type Score
protected  Comparator<Score> AcceptedForager.scoreComparator
           
 

Uses of Score in org.optaplanner.core.impl.localsearch.scope
 

Methods in org.optaplanner.core.impl.localsearch.scope that return Score
 Score LocalSearchMoveScope.getScore()
           
 

Methods in org.optaplanner.core.impl.localsearch.scope with parameters of type Score
 void LocalSearchMoveScope.setScore(Score score)
           
 

Uses of Score in org.optaplanner.core.impl.phase
 

Fields in org.optaplanner.core.impl.phase declared as Score
protected  Score AbstractSolverPhaseScope.startingScore
           
 

Methods in org.optaplanner.core.impl.phase that return Score
 Score AbstractSolverPhaseScope.calculateScore()
           
 Score AbstractSolverPhaseScope.getBestScore()
           
 Score AbstractSolverPhaseScope.getStartingScore()
           
 

Methods in org.optaplanner.core.impl.phase with parameters of type Score
 void AbstractSolverPhaseScope.assertExpectedWorkingScore(Score expectedWorkingScore, Object completedAction)
           
 void AbstractSolverPhaseScope.assertWorkingScoreFromScratch(Score workingScore, Object completedAction)
           
 

Uses of Score in org.optaplanner.core.impl.phase.step
 

Fields in org.optaplanner.core.impl.phase.step declared as Score
protected  Score AbstractStepScope.score
           
 

Methods in org.optaplanner.core.impl.phase.step that return Score
 Score AbstractStepScope.getScore()
           
 

Methods in org.optaplanner.core.impl.phase.step with parameters of type Score
 void AbstractStepScope.setScore(Score score)
           
 

Uses of Score in org.optaplanner.core.impl.score
 

Methods in org.optaplanner.core.impl.score with parameters of type Score
static double[] ScoreUtils.extractLevelDoubles(Score score)
           
 

Uses of Score in org.optaplanner.core.impl.score.buildin.bendable
 

Methods in org.optaplanner.core.impl.score.buildin.bendable that return Score
 Score BendableScoreDefinition.parseScore(String scoreString)
           
 

Uses of Score in org.optaplanner.core.impl.score.buildin.hardmediumsoft
 

Methods in org.optaplanner.core.impl.score.buildin.hardmediumsoft that return Score
 Score HardMediumSoftScoreDefinition.parseScore(String scoreString)
           
 

Uses of Score in org.optaplanner.core.impl.score.buildin.hardsoft
 

Methods in org.optaplanner.core.impl.score.buildin.hardsoft that return Score
 Score HardSoftScoreDefinition.parseScore(String scoreString)
           
 

Uses of Score in org.optaplanner.core.impl.score.buildin.hardsoftbigdecimal
 

Methods in org.optaplanner.core.impl.score.buildin.hardsoftbigdecimal that return Score
 Score HardSoftBigDecimalScoreDefinition.parseScore(String scoreString)
           
 

Uses of Score in org.optaplanner.core.impl.score.buildin.hardsoftdouble
 

Methods in org.optaplanner.core.impl.score.buildin.hardsoftdouble that return Score
 Score HardSoftDoubleScoreDefinition.parseScore(String scoreString)
           
 

Uses of Score in org.optaplanner.core.impl.score.buildin.hardsoftlong
 

Methods in org.optaplanner.core.impl.score.buildin.hardsoftlong that return Score
 Score HardSoftLongScoreDefinition.parseScore(String scoreString)
           
 

Uses of Score in org.optaplanner.core.impl.score.buildin.simple
 

Methods in org.optaplanner.core.impl.score.buildin.simple that return Score
 Score SimpleScoreDefinition.parseScore(String scoreString)
           
 

Uses of Score in org.optaplanner.core.impl.score.buildin.simplebigdecimal
 

Methods in org.optaplanner.core.impl.score.buildin.simplebigdecimal that return Score
 Score SimpleBigDecimalScoreDefinition.parseScore(String scoreString)
           
 

Uses of Score in org.optaplanner.core.impl.score.buildin.simpledouble
 

Methods in org.optaplanner.core.impl.score.buildin.simpledouble that return Score
 Score SimpleDoubleScoreDefinition.parseScore(String scoreString)
           
 

Uses of Score in org.optaplanner.core.impl.score.buildin.simplelong
 

Methods in org.optaplanner.core.impl.score.buildin.simplelong that return Score
 Score SimpleLongScoreDefinition.parseScore(String scoreString)
           
 

Uses of Score in org.optaplanner.core.impl.score.comparator
 

Methods in org.optaplanner.core.impl.score.comparator with parameters of type Score
 int FlatteningHardSoftScoreComparator.compare(Score s1, Score s2)
           
 int FlatteningHardSoftScoreComparator.compare(Score s1, Score s2)
           
 

Uses of Score in org.optaplanner.core.impl.score.definition
 

Classes in org.optaplanner.core.impl.score.definition with type parameters of type Score
 class AbstractScoreDefinition<S extends Score>
          Abstract superclass for ScoreDefinition.
 interface ScoreDefinition<S extends Score>
          A ScoreDefinition knows how to compare Scores and what the perfect maximum/minimum Score is.
 

Methods in org.optaplanner.core.impl.score.definition that return Score
 Score ScoreDefinition.parseScore(String scoreString)
          Parses the String and returns a Score.
 

Methods in org.optaplanner.core.impl.score.definition with parameters of type Score
 String ScoreDefinition.formatScore(Score score)
          Returns a String representation of the Score.
 String AbstractScoreDefinition.formatScore(Score score)
           
 

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

Methods in org.optaplanner.core.impl.score.director that return Score
 Score ScoreDirector.calculateScore()
          Calculates the Score and updates the workingSolution accordingly.
 

Methods in org.optaplanner.core.impl.score.director with parameters of type Score
 void AbstractScoreDirector.assertExpectedWorkingScore(Score expectedWorkingScore, Object completedAction)
           
 void ScoreDirector.assertExpectedWorkingScore(Score expectedWorkingScore, Object completedAction)
          Asserts that if the Score is calculated for the current workingSolution in the current ScoreDirector (with possibly incremental calculation residue), it is equal to the parameter expectedWorkingScore.
 void AbstractScoreDirector.assertWorkingScoreFromScratch(Score workingScore, Object completedAction)
           
 void ScoreDirector.assertWorkingScoreFromScratch(Score workingScore, Object completedAction)
          Asserts that if the Score is calculated for the current workingSolution in a fresh ScoreDirector (with no incremental calculation residue), it is equal to the parameter workingScore.
protected  void AbstractScoreDirector.setCalculatedScore(Score score)
           
 

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

Methods in org.optaplanner.core.impl.score.director.drools that return Score
 Score DroolsScoreDirector.calculateScore()
           
 

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

Methods in org.optaplanner.core.impl.score.director.incremental that return Score
 Score IncrementalScoreCalculator.calculateScore()
           
 Score IncrementalScoreDirector.calculateScore()
           
 

Uses of Score in org.optaplanner.core.impl.score.director.simple
 

Methods in org.optaplanner.core.impl.score.director.simple that return Score
 Score SimpleScoreDirector.calculateScore()
           
 Score SimpleScoreCalculator.calculateScore(Sol solution)
           
 

Uses of Score in org.optaplanner.core.impl.solution
 

Classes in org.optaplanner.core.impl.solution with type parameters of type Score
 interface Solution<S extends Score>
          A Solution represents a problem and a possible solution of that problem.
 

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

Fields in org.optaplanner.core.impl.solver.scope declared as Score
protected  Score DefaultSolverScope.bestScore
           
protected  Score DefaultSolverScope.startingInitializedScore
           
 

Methods in org.optaplanner.core.impl.solver.scope that return Score
 Score DefaultSolverScope.calculateScore()
           
 Score DefaultSolverScope.getBestScore()
           
 Score DefaultSolverScope.getStartingInitializedScore()
           
 

Methods in org.optaplanner.core.impl.solver.scope with parameters of type Score
 void DefaultSolverScope.assertExpectedWorkingScore(Score expectedWorkingScore, Object completedAction)
           
 void DefaultSolverScope.assertWorkingScoreFromScratch(Score workingScore, Object completedAction)
           
 void DefaultSolverScope.setBestScore(Score bestScore)
           
 void DefaultSolverScope.setStartingInitializedScore(Score startingInitializedScore)
           
 

Uses of Score in org.optaplanner.core.impl.termination
 

Methods in org.optaplanner.core.impl.termination with parameters of type Score
 void ScoreAttainedTermination.setScoreAttained(Score scoreAttained)
           
 


OptaPlanner core 6.0.1.Final

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