Interface EasyScoreCalculator<Solution_,Score_ extends Score>
-
- Type Parameters:
Solution_- the solution type, the class with thePlanningSolutionannotationScore_- the score type to go with the solution
- All Known Subinterfaces:
EasyScoreCalculator<Solution_>
public interface EasyScoreCalculator<Solution_,Score_ extends Score>Used for easy javaScorecalculation. This is non-incremental calculation, which is slow.An implementation must be stateless.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Score_calculateScore(Solution_ solution)This method is only called if theScorecannot be predicted.
-