OSDN Git Service

Bumped up GAME_LIMIT
authorbeatles <beatles@b8c68f68-1e22-0410-b08e-880e1f8202b4>
Sat, 16 Jun 2007 09:16:19 +0000 (09:16 +0000)
committerbeatles <beatles@b8c68f68-1e22-0410-b08e-880e1f8202b4>
Sat, 16 Jun 2007 09:16:19 +0000 (09:16 +0000)
changelog
mk_rate

index 40e9ddd..ec1d277 100644 (file)
--- 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 <daigo at debian dot org>
 
@@ -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 <daigo at debian dot org>
 
diff --git a/mk_rate b/mk_rate
index 396d237..919a7c5 100755 (executable)
--- 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"