Move files into chesspp module

This commit is contained in:
2024-01-27 21:08:37 +01:00
parent 17e5bebd88
commit 69aa9ce2d9
10 changed files with 9 additions and 9 deletions

0
chesspp/__init__.py Normal file
View File

10
main.py
View File

@@ -1,11 +1,11 @@
import chess import chess
import chess.engine import chess.engine
import chess.pgn import chess.pgn
from classic_mcts import ClassicMcts from chesspp.classic_mcts import ClassicMcts
import engine from chesspp import engine
import eval from chesspp import eval
import util from chesspp import util
import simulation from chesspp import simulation
def test_simulate(): def test_simulate():