Skip to content

Commit

Permalink
Increase draw movecount to 8
Browse files Browse the repository at this point in the history
  • Loading branch information
glinscott committed May 13, 2013
1 parent 1d9fe54 commit 745418d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fishtest/fishtest/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,4 @@ def request_version(request):
token = authenticate(request)
if 'error' in token: return json.dumps(token)

return json.dumps({'version': 24})
return json.dumps({'version': 25})
2 changes: 1 addition & 1 deletion worker/games.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def run_games(worker_info, password, remote, run, task_id):
# Run cutechess-cli binary
cmd = [ cutechess, '-repeat', '-rounds', str(games_to_play), '-tournament', 'gauntlet',
'-pgnout', 'results.pgn', '-resign', 'movecount=3', 'score=400', '-draw', 'movenumber=34',
'movecount=2', 'score=20', '-concurrency', str(games_concurrency)] + pgn_cmd + \
'movecount=8', 'score=20', '-concurrency', str(games_concurrency)] + pgn_cmd + \
['-engine', 'name=stockfish', 'cmd=stockfish'] + new_options + clop['fcp'] + \
['-engine', 'name=base', 'cmd=base'] + base_options + clop['scp'] + \
['-each', 'proto=uci', 'option.Threads=%d' % (threads), 'tc=%s' % (scaled_tc)] + book_cmd
Expand Down
2 changes: 1 addition & 1 deletion worker/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from games import run_games
from updater import update

WORKER_VERSION = 24
WORKER_VERSION = 25
ALIVE = True

def setup_config_file(config_file):
Expand Down

0 comments on commit 745418d

Please sign in to comment.