donkirkby / zero-play

Teach a computer to play any game.
https://donkirkby.github.io/zero-play/
MIT License
10 stars 1 forks source link

Add move log #6

Closed donkirkby closed 4 years ago

donkirkby commented 4 years ago

Sometimes, I think there's a bug in the game logic, but I can't remember exactly what the previous state was. It would be helpful to log which moves were made, so I can review it for bugs. I could also learn which moves I made were the weakest, to improve my playing. For now, just log to stderr.

Example log entry: Player X at A4 from A4 (0.9), A3 (0.1), B7 (0.0001)

donkirkby commented 4 years ago

Closed in 7e59c585280c7d878a7cd0a4eaa1ef1559a96822. Switched from log field to list of moves in review mode.