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
A call to state(env::TicTacToeEnv, Observation{BitArray{3}}())
does not result in the correct style.
The error can be "seen" using:
env =TicTacToeEnv()
display(state(env, Observation{String}(), current_player(env))) # works as expecteddisplay(state(env, Observation{String}())) # works as expecteddisplay(state(env, Observation{BitArray{3}}(), current_player(env))) # works as expecteddisplay(state(env, Observation{BitArray{3}}())) # reports state default style: Observation{Int}
A simple fix is to the following line to TicTacToeEnv.jl
A call to
state(env::TicTacToeEnv, Observation{BitArray{3}}())
does not result in the correct style.
The error can be "seen" using:
A simple fix is to the following line to TicTacToeEnv.jl
The text was updated successfully, but these errors were encountered: