Skip to content

Commit

Permalink
Increase number of test samples to make it pass
Browse files Browse the repository at this point in the history
  • Loading branch information
penelopeysm committed Jan 21, 2025
1 parent d98ba71 commit f7abf64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/linear-gaussian.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ end
@testset "linear-gaussian.jl" begin
T = 3
N_PARTICLES = 100
N_SAMPLES = 50
N_SAMPLES = 200

# Model dynamics
a = 0.5
Expand Down Expand Up @@ -100,12 +100,14 @@ end
@testset "PGAS" begin
pgas = AdvancedPS.PGAS(N_PARTICLES)
p = test_algorithm(rng, pgas, model, N_SAMPLES, Xf)
@info p
@test p > 0.05
end

@testset "PG" begin
pg = AdvancedPS.PG(N_PARTICLES)
p = test_algorithm(rng, pg, model, N_SAMPLES, Xf)
@info p
@test p > 0.05
end
end

0 comments on commit f7abf64

Please sign in to comment.