LICENSE.txt
MANIFEST.in
README.md
setup.py
perfect_information_game/games/__init__.py
perfect_information_game/games/amazons.py
perfect_information_game/games/battleship.py
perfect_information_game/games/checkers.py
perfect_information_game/games/chess.py
perfect_information_game/games/connect4.py
perfect_information_game/games/dots_and_boxes.py
perfect_information_game/games/game.py
perfect_information_game/games/gomoku.py
perfect_information_game/games/king_of_the_hill_chess.py
perfect_information_game/games/monster_chess.py
perfect_information_game/games/multi_tic_tac_toe.py
perfect_information_game/games/othello.py
perfect_information_game/games/tic_tac_toe.py
perfect_information_game/heuristics/__init__.py
perfect_information_game/heuristics/network.py
perfect_information_game/heuristics/proxy_network.py
perfect_information_game/heuristics/utils.py
perfect_information_game/learning/__init__.py
perfect_information_game/learning/learning.py
perfect_information_game/learning/utils.py
perfect_information_game/move_selection/__init__.py
perfect_information_game/move_selection/mini_max.py
perfect_information_game/move_selection/move_chooser.py
perfect_information_game/move_selection/random_chooser.py
perfect_information_game/move_selection/raw_network.py
perfect_information_game/move_selection/tablebase_chooser.py
perfect_information_game/move_selection/iterative_deepening/__init__.py
perfect_information_game/move_selection/iterative_deepening/async_iterative_deepening.py
perfect_information_game/move_selection/iterative_deepening/deepening_node.py
perfect_information_game/move_selection/iterative_deepening/iterative_deepening.py
perfect_information_game/move_selection/mcts/__init__.py
perfect_information_game/move_selection/mcts/abstract_node.py
perfect_information_game/move_selection/mcts/async_mcts.py
perfect_information_game/move_selection/mcts/heuristic_node.py
perfect_information_game/move_selection/mcts/mcts.py
perfect_information_game/move_selection/mcts/rollout_node.py
perfect_information_game/perfect_information_game.egg-info/PKG-INFO
perfect_information_game/perfect_information_game.egg-info/SOURCES.txt
perfect_information_game/perfect_information_game.egg-info/dependency_links.txt
perfect_information_game/perfect_information_game.egg-info/requires.txt
perfect_information_game/perfect_information_game.egg-info/top_level.txt
perfect_information_game/scripts/__init__.py
perfect_information_game/scripts/ai_battleground.py
perfect_information_game/scripts/benchmark.py
perfect_information_game/scripts/explore_tablebase.py
perfect_information_game/scripts/generate_tablebases.py
perfect_information_game/scripts/model_converter.py
perfect_information_game/scripts/play_vs_ai.py
perfect_information_game/scripts/search_tablebases.py
perfect_information_game/scripts/start_tensorboard.py
perfect_information_game/scripts/training.py
perfect_information_game/scripts/view_game_file.py
perfect_information_game/tablebases/__init__.py
perfect_information_game/tablebases/symmetry_transform.py
perfect_information_game/tablebases/tablebase_generator.py
perfect_information_game/tablebases/tablebase_manager.py
perfect_information_game/tablebases/utils.py
perfect_information_game/ui/__init__.py
perfect_information_game/ui/pygame_ui.py
perfect_information_game/utils/__init__.py
perfect_information_game/utils/active_game.py
perfect_information_game/utils/utils.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
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