|
7 | 7 | sampler = AdvancedPS.SMC(15, 0.6) |
8 | 8 | @test sampler.nparticles == 15 |
9 | 9 | @test sampler.resampler === |
10 | | - AdvancedPS.ResampleWithESSThreshold(AdvancedPS.resample_systematic, 0.6) |
| 10 | + AdvancedPS.ResampleWithESSThreshold(AdvancedPS.resample_systematic, 0.6) |
11 | 11 |
|
12 | 12 | sampler = AdvancedPS.SMC(20, AdvancedPS.resample_multinomial, 0.6) |
13 | 13 | @test sampler.nparticles == 20 |
14 | 14 | @test sampler.resampler === |
15 | | - AdvancedPS.ResampleWithESSThreshold(AdvancedPS.resample_multinomial, 0.6) |
| 15 | + AdvancedPS.ResampleWithESSThreshold(AdvancedPS.resample_multinomial, 0.6) |
16 | 16 |
|
17 | 17 | sampler = AdvancedPS.SMC(25, AdvancedPS.resample_systematic) |
18 | 18 | @test sampler.nparticles == 25 |
|
112 | 112 | sampler = AdvancedPS.PG(60, 0.6) |
113 | 113 | @test sampler.nparticles == 60 |
114 | 114 | @test sampler.resampler === |
115 | | - AdvancedPS.ResampleWithESSThreshold(AdvancedPS.resample_systematic, 0.6) |
| 115 | + AdvancedPS.ResampleWithESSThreshold(AdvancedPS.resample_systematic, 0.6) |
116 | 116 |
|
117 | 117 | sampler = AdvancedPS.PG(80, AdvancedPS.resample_multinomial, 0.6) |
118 | 118 | @test sampler.nparticles == 80 |
119 | 119 | @test sampler.resampler === |
120 | | - AdvancedPS.ResampleWithESSThreshold(AdvancedPS.resample_multinomial, 0.6) |
| 120 | + AdvancedPS.ResampleWithESSThreshold(AdvancedPS.resample_multinomial, 0.6) |
121 | 121 |
|
122 | 122 | sampler = AdvancedPS.PG(100, AdvancedPS.resample_systematic) |
123 | 123 | @test sampler.nparticles == 100 |
|
0 commit comments