JuliaPOMDP / POMDPModels.jl

Problem models for testing POMDPs.jl
Other
31 stars 28 forks source link

Added option to specify min and max reward when rendering SimpleGridworld #72

Closed ancorso closed 3 years ago

ancorso commented 3 years ago

The minimum reward and maximum reward were hard-coded to be -10 and 10. This change adds optional arguments to the render function to specify those values.

zsunberg commented 3 years ago

Thanks @ancorso ! the tests are not passing because of a dependency problem in BeliefUpdaters, which should be fixed with https://github.com/JuliaPOMDP/BeliefUpdaters.jl/commit/6989df3916f408fc3c4f0c11454463bb503bf96a

zsunberg commented 3 years ago

Could we change the keyword argument names to colormin and colormax since the color function might be something other than reward?

ancorso commented 3 years ago

Sounds good! I just pushed that change.