-
Notifications
You must be signed in to change notification settings - Fork 20
Description
Hello,
In trying to apply POMCPOW to my problem of interest, I am trying to use the solve function with the following two lines:
solver = POMCPOWSolver(criterion=MaxUCB(20.0))
planner = solve(solver, mdp)
I am able to implement MCTS with my MDP input, but when using it with POMCPOW I get the following error:
MethodError: no method matching solve(::POMCPOWSolver, ::laneChangeMDP) Closest candidates are: solve(!Matched::FunctionSolver, ::Union{MDP, POMDP}) at /Users/williambrannon/.julia/packages/POMDPPolicies/tAWHg/src/function.jl:23 solve(!Matched::RandomSolver, ::Union{MDP, POMDP}) at /Users/williambrannon/.julia/packages/POMDPPolicies/tAWHg/src/random.jl:48
I suppose there might be an error somewhere in the typing of the POMCPOWSolver
object?
Thanks!
William