Skip to content

Commit b369d23

Browse files
committed
edit code
1 parent 9d8edbd commit b369d23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mdp/2048.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function MDP(mdp::TwentyFortyEight; γ::Float64=mdp.γ)
7575
nothing, # no ordered states
7676
DIRECTIONS,
7777
nothing, # no probabilistic transition function
78-
(s,a) -> reward(s, a)
78+
(s,a) -> reward(s, a),
7979
(s, a)->begin
8080
s′ = transition(s, a)
8181
r = reward(s, a)

0 commit comments

Comments
 (0)