gov.sns.tools.optimization
Interface SolutionMonitor

All Known Implementing Classes:
SearchAlgorithm

Deprecated. The optimization package has been replaced by the optimizer package.

public interface SolutionMonitor

SolutionMonitor is an interface for a listener of new solutions that have been scored and found to be more optimal than previous solutions.


Method Summary
 void newTopSolution(java.lang.Object sender, Solution solution)
          Deprecated. An event indicating that a new solution has been found which is better than the previous best solution according to the score given by the evaluator.
 

Method Detail

newTopSolution

public void newTopSolution(java.lang.Object sender,
                           Solution solution)
Deprecated. 
An event indicating that a new solution has been found which is better than the previous best solution according to the score given by the evaluator.

Parameters:
sender - The object that has posted this solution.
solution - The best solution found so far.