JuliaPOMDP / BasicPOMCP.jl

The PO-UCT algorithm (aka POMCP) implemented in Julia
Other
35 stars 17 forks source link

BasicPOMCP requirements? #4

Closed Shushman closed 6 years ago

Shushman commented 6 years ago

When I execute :

using POMDPs, POMDPModels, POMDPToolbox, BasicPOMCP
 @requirements_info POMCPSolver() TigerPOMDP()

I get the following :

INFO: POMDPs.jl requirements for solve(::POMCPSolver, ::TigerPOMDP) and dependencies. ([✔] = implemented correctly; [X] = missing)

For solve(::POMCPSolver, ::TigerPOMDP):
  [No requirements specified]

true

Is that what I should be seeing? Shouldn't it show me the generate_xyz methods?

zsunberg commented 6 years ago

Yes, you should be seeing some generate methods! It just means that the person who implemented it (me) never got around to specifying the requirements. Sorry about that. I'll fix it today

zsunberg commented 6 years ago

Should be fixed now if you do Pkg.update(). LMK if you run into any more problems.