While fixing the scrolling issue (#25 ), I think we may have messed up the part where the computer's move is printed out in text.
See bitboard.py, line 666:
print(
f"Board moves from {pos_to_coords[log2(best_move[0])]} to {pos_to_coords[log2(best_move[1])]}"
)
This Board moves from... line is never actually seen on stdout, probably because it's being cleared too early.
Example output on my terminal:
(As you can see, the line from the code snippet above cannot be seen on my terminal.)
While fixing the scrolling issue (#25 ), I think we may have messed up the part where the computer's move is printed out in text.
See
bitboard.py
, line 666:This
Board moves from...
line is never actually seen on stdout, probably because it's being cleared too early.Example output on my terminal:
(As you can see, the line from the code snippet above cannot be seen on my terminal.)