You are on page 1of 1

# Initialization script for the chess engine.

#
# This file is parsed by Chess Titans and each line that is not commented nor
# empty is sent verbatim to the chess engine at the beginning of each game,
# right after engine initialization, prior to any move command. You can put
# here every engine-specific initialization command you want.

# only one thread max (the computer will look like hung if all CPU is taken)
mt=1

# clean thread management


smpnice=1

# disable logging
log=off

# memory consumption of the engine is roughly the sum of these. If your


# system is low on memory, or if you've got plenty, you may halve or double
# these values. Please only divide and multiply by a factor of two.
hash=192M
hashp=64M
cache=16M

# ignore forfeits on time


flag=off

# don't learn anything (our opponent may be dumber than us)


learn=0

# use long algebraic output


output=long

# put ourselves in xboard mode for easier parsing


xboard

You might also like