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.engine
import chess.pgn
from classic_mcts import ClassicMcts
import engine
import eval
import util
import simulation
from chesspp.classic_mcts import ClassicMcts
from chesspp import engine
from chesspp import eval
from chesspp import util
from chesspp import simulation
def test_simulate():