Skip to content

Commit

Permalink
Adjust adjudication rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Viren6 committed Jan 11, 2025
1 parent 33a148e commit 94bb097
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion server/montytest/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
according to the route/URL mapping defined in `__init__.py`.
"""

WORKER_VERSION = 31
WORKER_VERSION = 32


@exception_view_config(HTTPException)
Expand Down
7 changes: 4 additions & 3 deletions worker/games.py
Original file line number Diff line number Diff line change
Expand Up @@ -1262,12 +1262,13 @@ def make_player(arg):
+ (
[
"-resign",
"movecount=3",
"score=600",
"movecount=5",
"score=900",
"twosided=true",
"-draw",
"movenumber=34",
"movecount=8",
"score=20",
"score=10",
]
if run["args"].get("adjudication", True)
else []
Expand Down
2 changes: 1 addition & 1 deletion worker/sri.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"__version": 31, "updater.py": "gSJX/HbsPwsZnUZaFbAgF0zwWPWXv+LEw9jBhJkxFOrCH9CZS0+4U4nE2fJdeNze", "worker.py": "28ONfiLoQI+0AElKjhYEbB/mt2Q0kfOfPJfg8oAwZjnVk4g2qgyC6GW5ipj5DBMV", "games.py": "bLB1+XEHedzIBascjWrnNVO036FH9mAMucn2/OIboDLEw8mnwNgHYvO0J2QK3s3u"}
{"__version": 32, "updater.py": "gSJX/HbsPwsZnUZaFbAgF0zwWPWXv+LEw9jBhJkxFOrCH9CZS0+4U4nE2fJdeNze", "worker.py": "he47LgHCDjpiZXEt9K28ZnQwpMFDLO2AOBIyuXt+8nituAJ4gQFelj9kDPxR4v6A", "games.py": "RwKgvR25srZT6VXyJ2Fi2CNYX2OxKvfCHFDNk8Hb5eDAzTDqNLomsJxYHth60l7q"}
2 changes: 1 addition & 1 deletion worker/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
MIN_CARGO_MAJOR = 1
MIN_CARGO_MINOR = 77

WORKER_VERSION = 31
WORKER_VERSION = 32
FILE_LIST = ["updater.py", "worker.py", "games.py"]
HTTP_TIMEOUT = 30.0
INITIAL_RETRY_TIME = 15.0
Expand Down

0 comments on commit 94bb097

Please sign in to comment.