Learn R Programming

pomdp (version 0.9.2)

solution: Extract the Solution of a POMDP

Description

The function extracts the solution of a POMDP as an object of class POMDP_solution which is a list containing, e.g., the policy graph (pg) and the hyper-plane coefficients (alpha).

Usage

solution(x)

Arguments

x

object of class POMDP returned by solve_POMDP.

Value

returns an object is of class POMDP_solution, i.e., a list of all solution elements.

See Also

solve_POMDP

Examples

Run this code
# NOT RUN {
data("TigerProblem")
tiger_solved <- solve_POMDP(model = TigerProblem)
tiger_solved

solution(tiger_solved)
# }

Run the code above in your browser using DataLab