TTitcombe / AlphaDraughts

A PyTorch implementation of AlphaGo Zero applied to Draughts
MIT License
3 stars 2 forks source link

Track game score #15

Closed TTitcombe closed 5 years ago

TTitcombe commented 5 years ago

Adds logic for keeping track of number of pieces remaining on the board for each side. Adds code for determining if the game is over based on number of pieces left on the board (does not yet take stalemates into account)

To test: CI builds pass

Fixes #5