LICENSE.txt
MANIFEST.in
README.md
setup.py
resources/black_bishop.png
resources/black_circle_dark_square.png
resources/black_circle_k_dark_square.png
resources/black_king.png
resources/black_knight.png
resources/black_pawn.png
resources/black_queen.png
resources/black_rook.png
resources/blue_border.png
resources/dark_square.png
resources/light_square.png
resources/red_circle_dark_square.png
resources/red_circle_k_dark_square.png
resources/white_bishop.png
resources/white_circle_dark_square.png
resources/white_king.png
resources/white_knight.png
resources/white_pawn.png
resources/white_queen.png
resources/white_rook.png
resources/yellow_circle_dark_square.png
src/games/__init__.py
src/games/amazons.py
src/games/battleship.py
src/games/checkers.py
src/games/chess.py
src/games/connect4.py
src/games/dots_and_boxes.py
src/games/game.py
src/games/gomoku.py
src/games/king_of_the_hill_chess.py
src/games/monster_chess.py
src/games/multi_tic_tac_toe.py
src/games/othello.py
src/games/tic_tac_toe.py
src/heuristics/__init__.py
src/heuristics/network.py
src/heuristics/proxy_network.py
src/heuristics/utils.py
src/learning/__init__.py
src/learning/learning.py
src/learning/utils.py
src/move_selection/__init__.py
src/move_selection/mini_max.py
src/move_selection/move_chooser.py
src/move_selection/random_chooser.py
src/move_selection/raw_network.py
src/move_selection/tablebase_chooser.py
src/move_selection/iterative_deepening/__init__.py
src/move_selection/iterative_deepening/async_iterative_deepening.py
src/move_selection/iterative_deepening/deepening_node.py
src/move_selection/iterative_deepening/iterative_deepening.py
src/move_selection/mcts/__init__.py
src/move_selection/mcts/abstract_node.py
src/move_selection/mcts/async_mcts.py
src/move_selection/mcts/heuristic_node.py
src/move_selection/mcts/mcts.py
src/move_selection/mcts/rollout_node.py
src/perfect_information_game.egg-info/PKG-INFO
src/perfect_information_game.egg-info/SOURCES.txt
src/perfect_information_game.egg-info/dependency_links.txt
src/perfect_information_game.egg-info/requires.txt
src/perfect_information_game.egg-info/top_level.txt
src/scripts/__init__.py
src/scripts/ai_battleground.py
src/scripts/benchmark.py
src/scripts/explore_tablebase.py
src/scripts/generate_tablebases.py
src/scripts/model_converter.py
src/scripts/play_vs_ai.py
src/scripts/search_tablebases.py
src/scripts/start_tensorboard.py
src/scripts/training.py
src/scripts/view_game_file.py
src/tablebases/__init__.py
src/tablebases/symmetry_transform.py
src/tablebases/tablebase_generator.py
src/tablebases/tablebase_manager.py
src/tablebases/utils.py
src/ui/__init__.py
src/ui/pygame_ui.py
src/utils/__init__.py
src/utils/active_game.py
src/utils/utils.py
tests/games/chess_test_cases.json
tests/games/test_checkers.py
tests/games/test_chess.py
tests/move_selection/test_mini_max.py
tests/move_selection/test_random_chooser.py
tests/tablebases/test_tablebase_generator.py