Interface SolutionJudgeListener
- All Known Implementing Classes:
AlgorithmMarket
,AlgorithmPool
,DirectedStep
,InitialAlgorithm
,RandomSearch
,RandomShrinkSearch
,ScoreBoard
,SearchAlgorithm
,SimplexSearchAlgorithm
public interface SolutionJudgeListener
The interface implemented by listeners of solution judge events.
- Author:
- ky6
-
Method Summary
Modifier and TypeMethodDescriptionvoid
foundNewOptimalSolution
(SolutionJudge source, List<Trial> solutions, Trial solution) Handle a message that a new optimal solution has been found.
-
Method Details
-
foundNewOptimalSolution
Handle a message that a new optimal solution has been found.- Parameters:
source
- The source of the new optimal solution.solutions
- The list of solutions.solution
- The new optimal solution.
-