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
It seems reasonable that someone might want to add visualization or something to their DiscreteExplicitPOMDP or MDP.
To do this, they might need to provide new methods for their specific problem. Perhaps we should provide a key to dispatch on.
struct DiscreteExplicitPOMDP{KEY, ...}
...
end
function DiscreteExplicitPOMDP(...; ..., typekey::Symbol=Symbol())
...
return DiscreteExplicitPOMDP{typekey, ...}(...)
end
Then someone can write
render(m::DiscreteExplicitPOMDP{:mykey}, step)
The text was updated successfully, but these errors were encountered:
It seems reasonable that someone might want to add visualization or something to their
DiscreteExplicitPOMDP
or MDP.To do this, they might need to provide new methods for their specific problem. Perhaps we should provide a key to dispatch on.
Then someone can write
The text was updated successfully, but these errors were encountered: