You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run game.py with either arthur or random_agent, I get the following error :
Traceback (most recent call last):
File "game.py", line 237, in <module>
status = main()
File "game.py", line 168, in main
B.make_move(cpu_1.make_move(B))
File "C:\Users\julro\Desktop\Coding\DeepCheckers\checkers-master\checkers.py", line 66, in make_move
taken_piece = int(1 << sum(i for (i, b) in enumerate(bin(move)[::-1]) if b == '1')/2)
TypeError: unsupported operand type(s) for <<: 'int' and 'float'
It doesn't always occur on the same line but it's always that same TypeError
The text was updated successfully, but these errors were encountered:
When I run game.py with either
arthur
orrandom_agent
, I get the following error :It doesn't always occur on the same line but it's always that same
TypeError
The text was updated successfully, but these errors were encountered: