User Tools

Site Tools


chess:programming:rating:conversions

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
chess:programming:rating:conversions [2021/12/08 11:49] – created peterchess:programming:rating:conversions [2021/12/08 11:58] (current) peter
Line 26: Line 26:
  
 <code> <code>
-if (elo <= 2000) 
-  return 180 + unsigned(0.94 * elo); 
-else  
 if (elo <= 1886) if (elo <= 1886)
   return unsigned(elo/0.75) - 570;   return unsigned(elo/0.75) - 570;
 +else
 +if (elo <= 2000)
 +  return 180 + unsigned(0.94 * elo);
 else else
   return 20 + unsigned(1.02 * elo);   return 20 + unsigned(1.02 * elo);
Line 53: Line 53:
  
 <code> <code>
 +if (uscf > 2060)
 +  return unsigned((uscf - 180) / 0.94);
 +else
 if (uscf > 1945) if (uscf > 1945)
   return unsigned((uscf - 20) / 1.02);   return unsigned((uscf - 20) / 1.02);
chess/programming/rating/conversions.1638964154.txt.gz · Last modified: 2021/12/08 11:49 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki