fix: remove print unneeded statements
This commit is contained in:
parent
bbd31e92e2
commit
a7400f910e
1 changed files with 0 additions and 4 deletions
|
|
@ -25,10 +25,6 @@ public class ELO {
|
|||
Ra = Ra + K * (outcome - Pa);
|
||||
Rb = Rb + K * ((1 - outcome) - Pb);
|
||||
|
||||
// Print updated ratings
|
||||
System.out.println("Updated Ratings:-");
|
||||
System.out.println("Ra = " + Ra + " Rb = " + Rb);
|
||||
|
||||
return new int[] {
|
||||
(int) Ra, (int) Rb
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue