In RatingCalculator.calculateNewRating, sometimes the loop for convergence:
while (Math.abs(B - A) > CONVERGENCE_TOLERANCE)
fails to terminate. This possibility is also mentioned in the paper. It would be good if there is a maxiConvergenceIterations variable that can be used to control it.
In RatingCalculator.calculateNewRating, sometimes the loop for convergence:
while (Math.abs(B - A) > CONVERGENCE_TOLERANCE)fails to terminate. This possibility is also mentioned in the paper. It would be good if there is a maxiConvergenceIterations variable that can be used to control it.