Skip to content

Commit

Permalink
EpsGreedyPolicy documentation update (#458)
Browse files Browse the repository at this point in the history
* EpsGreedyPolicy documentation update

* update version number
  • Loading branch information
NeroBlackstone authored Feb 6, 2023
1 parent 8fab730 commit 46c49f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/POMDPTools/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "POMDPTools"
uuid = "7588e00f-9cae-40de-98dc-e0c70c48cdd7"
authors = ["Zachary Sunberg <[email protected]> and contributors"]
version = "0.1.2"
version = "0.1.3"

[deps]
CommonRLInterface = "d842c3ba-07a1-494f-bbec-f5741b0a3e98"
Expand Down
2 changes: 1 addition & 1 deletion lib/POMDPTools/src/Policies/exploration_policies.jl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ If a function is passed for `eps`, `eps(k)` is called to compute the value of ep
- `eps::Function`
- `rng::AbstractRNG`
- `actions::A` an indexable list of action
- `m::M` POMDPs or MDPs problem
"""
struct EpsGreedyPolicy{T<:Function, R<:AbstractRNG, M<:Union{MDP,POMDP}} <: ExplorationPolicy
eps::T
Expand Down

2 comments on commit 46c49f9

@zsunberg
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register subdir=lib/POMDPTools

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/77112

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a POMDPTools-v0.1.3 -m "<description of version>" 46c49f941f7d06f780cd736120d5a0c5e197524d
git push origin POMDPTools-v0.1.3

Please sign in to comment.