]> git.sesse.net Git - remoteglot/blob - config.pm
Support promotion when displaying lines.
[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";
10
11 our $engine_cmdline = "./stockfish";
12 our %engine_config = (
13 #       'NalimovPath' => '/srv/tablebase',
14         'NalimovUsage' => 'Rarely',
15         'Hash' => '1024',
16 #       'MultiPV' => '2'
17 );
18
19 # Separate engine for multi-PV; can be undef for none.
20 our $engine2_cmdline = undef;
21 our %engine2_config = (
22 #       'NalimovPath' => '/srv/tablebase',
23         'NalimovUsage' => 'Rarely',
24         'Hash' => '1024',
25         'Threads' => '8',
26 );
27
28 our $uci_assume_full_compliance = 0;                    # dangerous :-)
29 our $update_max_interval = 1.0;
30 our @masters = (
31         'Sesse',
32 );
33
34
35 eval {
36         require 'config.local.pm';
37 };