Skip to content

Commit

Permalink
Make test work allegedly
Browse files Browse the repository at this point in the history
  • Loading branch information
GersiD committed Jun 26, 2024
1 parent 4ce748a commit f59156f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions test/src/domains/gridworld.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
using MDPs
using Test
using MDPs.Domains

@testset "Solve Gridworld" begin
reward = Gridworld.reward([0.1, 0.1, 0.2, -10, -15, 100, 1, 0.5])
max_side_length = Gridworld.max_side_length(3)
wind = Gridworld.wind(0.2)
reward = [0.1, 0.1, 0.2, -10, -15, 100, 1, 0.5]
max_side_length = 3
wind = 0.2
params = Gridworld.Parameters(reward, max_side_length, wind)

# Initialize flags for tests
Expand Down

0 comments on commit f59156f

Please sign in to comment.