This commit is contained in:
narawat lamaiin
2024-05-03 10:40:07 +07:00
parent ef940b6ada
commit bd934b22b5

View File

@@ -181,18 +181,20 @@ tion and backpropagation. This value effectively quantifies the agents progre
serving as a heuristic to steer the search algorithm towards the most promising regions of the tree. serving as a heuristic to steer the search algorithm towards the most promising regions of the tree.
# Arguments # Arguments
- `a::T1`
one of Yiem's agent
- `state::T2`
a game state
# Return # Return
- `evaluation::Tuple{String, Integer}`
evaluation and score
# Example # Example
```jldoctest ```jldoctest
julia> julia>
``` ```
# TODO
- [] update docstring
- [x] implement the function
# Signature # Signature
""" """
function progressValueEstimator(a::T1, state::T2)::Tuple{String, Integer} where {T1<:agent, T2<:AbstractDict} function progressValueEstimator(a::T1, state::T2)::Tuple{String, Integer} where {T1<:agent, T2<:AbstractDict}