UCT avg_score: Track avg score of last move search explicitly in the tree
[pachi.git] / tools / autobook / autobook.sh
blobd41e675a77c99cc3ea9c92f3ead3f32cb03d81d6
1 #!/bin/sh
3 if [ $# -ne 3 ]; then
4 echo "Usage: $0 PLAYER1 PLAYER2 BOOKDIR" >&2
5 exit 1
6 fi
8 export CMDDIR=$(pwd)
9 export SEQDIR=$(mktemp -d)
11 if [ ! -d "$3" ]; then
12 mkdir "$3"
13 { echo 12; echo 24; } >"$3"/stats
16 while true; do
17 (cd "$3"; "$CMDDIR"/walk.sh "$1" "$2")
18 sleep 5
19 done