# Default configuration. Copy this file to config.local.pm if you want # to change anything instead of modifying this (so you won't have to make # changes in git). package remoteglotconf; our $server = "freechess.org"; our $nick = "SesseBOT"; our $target = "GMCarlsen"; our $engine_cmdline = "./stockfish"; our %engine_config = ( # 'NalimovPath' => '/srv/tablebase', 'NalimovUsage' => 'Rarely', 'Hash' => '1024', # 'MultiPV' => '2' ); # Separate engine for multi-PV; can be undef for none. our $engine2_cmdline = undef; our %engine2_config = ( # 'NalimovPath' => '/srv/tablebase', 'NalimovUsage' => 'Rarely', 'Hash' => '1024', 'Threads' => '8', ); our $uci_assume_full_compliance = 0; # dangerous :-) our $update_max_interval = 1.0; our @masters = ( 'Sesse', ); eval { require 'config.local.pm'; };