diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-04-04 03:01:03 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-04-04 03:01:03 +0200 |
commit | bfd9fcb734bea4c434d7da767f9fb0e9ce124a9d (patch) | |
tree | 4cef1ecde02cb3b0d9ff329421f457edc44eea0f /FICS/ratings.c | |
parent | 1a4382d704bbd3e6ae97bdbdbd92652c3a619adb (diff) |
Moved defines
Diffstat (limited to 'FICS/ratings.c')
-rw-r--r-- | FICS/ratings.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/FICS/ratings.c b/FICS/ratings.c index 9d1c256..4da0580 100644 --- a/FICS/ratings.c +++ b/FICS/ratings.c @@ -44,6 +44,9 @@ #define Gp 0.000010072398601964 // End of Glicko system variables +#define LOWESTHIST 800 +#define MAXHIST 30 + PRIVATE double Ratings_B_Average; PRIVATE double Ratings_B_StdDev; PRIVATE double Ratings_S_Average; @@ -82,8 +85,6 @@ PUBLIC rateStruct bestW[MAX_BEST]; PUBLIC int numW = 0; */ -#define MAXHIST 30 -#define LOWESTHIST 800 PUBLIC int sHist[MAXHIST]; PUBLIC int bHist[MAXHIST]; PUBLIC int wHist[MAXHIST]; |