├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── chrysaora.nimble ├── src ├── bitboard.nim ├── board.nim ├── bootstrap.nim ├── chrysaora.nim ├── engine.nim ├── movegen.nim ├── net.nim ├── parselog.nim ├── perft.nim ├── train.nim └── uci.nim └── tests ├── KomodoMCTS 2221.00vsLCZero v19.1-11248 2018-12-15.pgn ├── LCZero v0.21.1-nT40.T8.610vsStockfish 19050918 2019.05.11 4.1.pgn ├── anderssen_kieseritzky_1851.pgn ├── test_all.nim ├── test_board.nim ├── test_eval.nim ├── test_movegen.nim └── test_net.nim /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/README.md -------------------------------------------------------------------------------- /chrysaora.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/chrysaora.nimble -------------------------------------------------------------------------------- /src/bitboard.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/bitboard.nim -------------------------------------------------------------------------------- /src/board.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/board.nim -------------------------------------------------------------------------------- /src/bootstrap.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/bootstrap.nim -------------------------------------------------------------------------------- /src/chrysaora.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/chrysaora.nim -------------------------------------------------------------------------------- /src/engine.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/engine.nim -------------------------------------------------------------------------------- /src/movegen.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/movegen.nim -------------------------------------------------------------------------------- /src/net.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/net.nim -------------------------------------------------------------------------------- /src/parselog.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/parselog.nim -------------------------------------------------------------------------------- /src/perft.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/perft.nim -------------------------------------------------------------------------------- /src/train.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/train.nim -------------------------------------------------------------------------------- /src/uci.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/src/uci.nim -------------------------------------------------------------------------------- /tests/KomodoMCTS 2221.00vsLCZero v19.1-11248 2018-12-15.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/tests/KomodoMCTS 2221.00vsLCZero v19.1-11248 2018-12-15.pgn -------------------------------------------------------------------------------- /tests/LCZero v0.21.1-nT40.T8.610vsStockfish 19050918 2019.05.11 4.1.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/tests/LCZero v0.21.1-nT40.T8.610vsStockfish 19050918 2019.05.11 4.1.pgn -------------------------------------------------------------------------------- /tests/anderssen_kieseritzky_1851.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/tests/anderssen_kieseritzky_1851.pgn -------------------------------------------------------------------------------- /tests/test_all.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/tests/test_all.nim -------------------------------------------------------------------------------- /tests/test_board.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/tests/test_board.nim -------------------------------------------------------------------------------- /tests/test_eval.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/tests/test_eval.nim -------------------------------------------------------------------------------- /tests/test_movegen.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/tests/test_movegen.nim -------------------------------------------------------------------------------- /tests/test_net.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanagreen/chrysaora/HEAD/tests/test_net.nim --------------------------------------------------------------------------------