Learn R Programming

pomdp (version 0.9.2)

solver_output: Display the Output of the POMDP Solver

Description

Displays the output generated by the solver 'pomdp-solve'. This includes used parameters, and iterations (i.e., epochs). This produces the same output as running solve_POMDP with the argument verbose = TRUE.

Usage

solver_output(x)

Arguments

x

object of class POMDP returned by solve_POMDP.

Value

returns invisibly a character string vector with the output of 'pomdp-solve'.

See Also

solve_POMDP

Examples

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

## solver output
solver_output(sol)
# }

Run the code above in your browser using DataLab