diff --git a/src/algorithms/linprogsolve.jl b/src/algorithms/linprogsolve.jl index 6cf906d..3c9961d 100644 --- a/src/algorithms/linprogsolve.jl +++ b/src/algorithms/linprogsolve.jl @@ -6,7 +6,7 @@ using JuMP """ -lp_solve(model, γ, lpm) + lp_solve(model, γ, lpm) Implements the linear program primal problem for an MDP `model` with a discount factor `γ`. It uses the JuMP model `lpm` as the linear program solver and returns the state values @@ -30,4 +30,4 @@ function lp_solve(model::TabMDP, γ::Number, lpm) end optimize!(lpm) (value = value.(v), policy = map(x->argmax(dual.(x)), π)) -end \ No newline at end of file +end