]> git.sesse.net Git - remoteglot/blob - config.pm
Fix 7-man tablebase mate length.
[remoteglot] / config.pm
1 # Default configuration. Copy this file to config.local.pm if you want
2 # to change anything instead of modifying this (so you won't have to make
3 # changes in git).
4
5 package remoteglotconf;
6
7 our $server = "freechess.org";
8 our $nick = "SesseBOT";
9 our $target = "GMCarlsen";  # FICS username or HTTP to a PGN file.
10 our $json_output = "/srv/analysis.sesse.net/www/analysis.json";
11
12 our $engine_cmdline = "./stockfish";
13 our %engine_config = (
14 #       'NalimovPath' => '/srv/tablebase',
15         'NalimovUsage' => 'Rarely',
16         'Hash' => '1024',
17 #       'MultiPV' => '2'
18 );
19
20 # Separate engine for multi-PV; can be undef for none.
21 our $engine2_cmdline = undef;
22 our %engine2_config = (
23 #       'NalimovPath' => '/srv/tablebase',
24         'NalimovUsage' => 'Rarely',
25         'Hash' => '1024',
26         'Threads' => '8',
27 );
28
29 our $uci_assume_full_compliance = 0;                    # dangerous :-)
30 our $update_max_interval = 1.0;
31 our @masters = (
32         'Sesse',
33 );
34
35 # ChessOK serial key (of the form NNNNN-NNNNN-NNNNN-NNNNN-NNNNN-NNNNN)
36 # for looking up 7-man tablebases; undef means no lookup. Note that
37 # you probably need specific prior permission to use this.
38 our $tb_serial_key = undef;
39
40 eval {
41         require 'config.local.pm';
42 };