From: beatles Date: Sat, 16 Jun 2007 09:16:19 +0000 (+0000) Subject: Bumped up GAME_LIMIT X-Git-Tag: 20170902~328 X-Git-Url: http://git.sourceforge.jp/view?p=shogi-server%2Fshogi-server.git;a=commitdiff_plain;h=0b30a645a7f898b6f8808cb8586e8fb75b426dda Bumped up GAME_LIMIT --- diff --git a/changelog b/changelog index 40e9ddd..ec1d277 100644 --- a/changelog +++ b/changelog @@ -2,8 +2,11 @@ * [webserver] - Initial version. This web server is an interface between HTTP and - shogi-server. Shogi-server commands are available over HTTP. As of - now %%LIST and %%WHO commands are supported. + shogi-server. Shogi-server commands will be available over HTTP. As + of now %%LIST and %%WHO commands are supported. + * [mk_rate] + - Bumped up GAME_LIMIT (from 10) to 15 because the calculation of + rates sometimes went wrong (infinite values). 2007-04-21 Daigo Moriwaki @@ -13,7 +16,7 @@ because it is only available for CSA's official testing server and does not belong to the CSA standard protocol. Therefor, when clients receive `CHALLENGE ACCEPTED' from this server, they must ignore it. - - Show revision in a start up messeage. + - Show revision in a start up message. 2007-04-01 Daigo Moriwaki diff --git a/mk_rate b/mk_rate index 396d237..919a7c5 100755 --- a/mk_rate +++ b/mk_rate @@ -28,7 +28,7 @@ # * Rated games, which were played by both rated players. # * Rated players, who logged in the server with a name followed by a trip: # "name,trip". -# * (Rated) players, who played more than $GAMES_LIMIT [ten] (rated) games. +# * (Rated) players, who played more than $GAMES_LIMIT [15] (rated) games. # # # PREREQUIRE @@ -60,7 +60,7 @@ require 'rgl/connected_components' # # Count out players who play less games than $GAMES_LIMIT -$GAMES_LIMIT = $DEBUG ? 0 : 10 +$GAMES_LIMIT = $DEBUG ? 0 : 15 WIN_MARK = "win" LOSS_MARK = "lose" DRAW_MARK = "draw"