Skip to content

Commit f7abf64

Browse files
committed
Increase number of test samples to make it pass
1 parent d98ba71 commit f7abf64

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/linear-gaussian.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ end
2626
@testset "linear-gaussian.jl" begin
2727
T = 3
2828
N_PARTICLES = 100
29-
N_SAMPLES = 50
29+
N_SAMPLES = 200
3030

3131
# Model dynamics
3232
a = 0.5
@@ -100,12 +100,14 @@ end
100100
@testset "PGAS" begin
101101
pgas = AdvancedPS.PGAS(N_PARTICLES)
102102
p = test_algorithm(rng, pgas, model, N_SAMPLES, Xf)
103+
@info p
103104
@test p > 0.05
104105
end
105106

106107
@testset "PG" begin
107108
pg = AdvancedPS.PG(N_PARTICLES)
108109
p = test_algorithm(rng, pg, model, N_SAMPLES, Xf)
110+
@info p
109111
@test p > 0.05
110112
end
111113
end

0 commit comments

Comments
 (0)