@@ -3,7 +3,7 @@ problem = BabyPOMDP()
33policy = RandomPolicy (problem, rng= MersenneTwister (2 ))
44steps= 10
55sim = HistoryRecorder (max_steps= steps, rng= MersenneTwister (3 ))
6- POMDPLinter. @show_requirements simulate (sim, problem, policy, updater (policy), initialstate (problem))
6+ @test_skip POMDPLinter. @show_requirements simulate (sim, problem, policy, updater (policy), initialstate (problem))
77r1 = simulate (sim, problem, policy, updater (policy), initialstate (problem))
88policy. rng = MersenneTwister (2 )
99Random. seed! (sim. rng, 3 )
@@ -58,7 +58,7 @@ problem = LegacyGridWorld()
5858policy = RandomPolicy (problem, rng= MersenneTwister (2 ))
5959steps= 10
6060sim = HistoryRecorder (max_steps= steps, rng= MersenneTwister (3 ))
61- POMDPLinter. @show_requirements simulate (sim, problem, policy, initialstate (problem, sim. rng))
61+ @test_skip POMDPLinter. @show_requirements simulate (sim, problem, policy, initialstate (problem, sim. rng))
6262r1 = simulate (sim, problem, policy, initialstate (problem, sim. rng))
6363
6464@test length (state_hist (r1)) <= steps + 1 # less than or equal because it may reach the goal too fast
0 commit comments