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
Currently collect(stepthrough(...)) returns a Vector{Any}. It might be nice to return something more concrete. This involves implementing eltype(::(PO)MDPSimIterator).
This should be pretty straightforward for states, actions, observations, reward, and time. It is a bit more complex for beliefs and info. It might require something like belief_type(updater, pomdp), which would not be too hard to make.
The text was updated successfully, but these errors were encountered:
Currently
collect(stepthrough(...))
returns aVector{Any}
. It might be nice to return something more concrete. This involves implementingeltype(::(PO)MDPSimIterator)
.This should be pretty straightforward for states, actions, observations, reward, and time. It is a bit more complex for beliefs and info. It might require something like
belief_type(updater, pomdp)
, which would not be too hard to make.The text was updated successfully, but these errors were encountered: