diff --git a/basicrta/tests/test_parametric.py b/basicrta/tests/test_parametric.py index c9fc129..7dec414 100644 --- a/basicrta/tests/test_parametric.py +++ b/basicrta/tests/test_parametric.py @@ -5,7 +5,7 @@ def test_parametric(): wts = np.array([0.89, 0.098, 0.008, 0.002, 0.00056]) wts = wts/wts.sum() - x = simulate_hn(1e5, wts, [4.7, 0.8, 0.2, 0.02, 0.003]) + x = simulate_hn(5e4, wts, [4.7, 0.8, 0.2, 0.02, 0.003]) G = newgibbs(x, 'X1', 0, 0.1, ncomp=5, niter=25000, sort=False) G.run() tmp = np.array([np.sort(G.results.weights[:,i]) for i in range(G.results.ncomp)])