Usually we want to evaluate the optimal value, the optimal policy, and the residual at a state grid finer than the interpolation grid. The current design is that this is done by
set_eval_nodes!(res::CDPSolveResult, eval_nodes)
which modifies res.V (vector of optimal values), res.X (vector of optimal actions), and res.resid (vector of residuals).
Is this intuitive and Julian? Any alternatives?
Usually we want to evaluate the optimal value, the optimal policy, and the residual at a state grid finer than the interpolation grid. The current design is that this is done by
which modifies
res.V(vector of optimal values),res.X(vector of optimal actions), andres.resid(vector of residuals).Is this intuitive and Julian? Any alternatives?