示例#1
0
 def test_chain_with_bad_chain_fails_on_access2(self):
     c = Chain(self.bad, self.p, self.n)
     with pytest.raises(AssertionError):
         c.get_data(self.p[0])
示例#2
0
 def test_chain_with_bad_weights3(self):
     with pytest.raises(AssertionError):
         w = self.w.copy()
         w[10] = np.nan
         Chain(self.d, self.p, self.n, weights=w)
示例#3
0
 def test_good_grid(self):
     Chain(self.d, self.p, self.n, grid=False)
示例#4
0
 def test_bad_grid3(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, grid="False")
示例#5
0
 def test_chain_with_bad_params3(self):
     with pytest.raises(AssertionError):
         Chain(self.d, None, self.n)
示例#6
0
 def test_chain_with_bad_chain_initial_success2(self):
     c = Chain(self.bad, self.p, self.n)
     c.get_data(1)
示例#7
0
 def test_bad_posterior5(self):
     posterior = np.ones(100)
     posterior[0] = -np.inf
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, posterior=posterior)
示例#8
0
 def test_chain_with_bad_params1(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p[:-1], self.n)
示例#9
0
 def test_bad_posterior2(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, posterior=np.ones(50))
示例#10
0
 def test_good_chain(self):
     Chain(self.d, self.p, self.n)
示例#11
0
 def test_good_posterior3(self):
     Chain(self.d, self.p, self.n, posterior=np.ones((1, 100)))
示例#12
0
 def test_good_posterior2(self):
     Chain(self.d, self.p, self.n, posterior=np.ones((100, 1)))
示例#13
0
 def test_bad_walkers4(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, walkers=2.5)
示例#14
0
 def test_chain_with_bad_weights4(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, weights=np.ones((50, 2)))
示例#15
0
 def test_good_num_free_params2(self):
     Chain(self.d, self.p, self.n, num_free_params=2.0)
示例#16
0
 def test_chain_with_bad_name2(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, None)
示例#17
0
 def test_bad_num_free_params4(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, num_free_params=-10)
示例#18
0
 def test_chain_with_bad_params2(self):
     with pytest.raises(AssertionError):
         Chain(self.d, ["A", "B", 0], self.n)
示例#19
0
 def test_good_chain_weights1(self):
     Chain(self.d, self.p, self.n, self.w)
示例#20
0
 def test_chain_with_bad_chain_initial_success1(self):
     Chain(self.bad, self.p, self.n)
示例#21
0
 def test_good_num_eff_data_points2(self):
     Chain(self.d, self.p, self.n, num_eff_data_points=20.4)
示例#22
0
 def test_chain_with_bad_chain_fails_on_access2(self):
     c = Chain(self.bad, self.p, self.n)
     with pytest.raises(AssertionError):
         c.get_data(self.p[0])
示例#23
0
 def test_bad_num_eff_data_points3(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, num_eff_data_points=-100)
示例#24
0
 def test_bad_grid2(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, grid=None)
示例#25
0
 def test_good_chain_weights3(self):
     Chain(self.d, self.p, self.n, self.w[None].T)
示例#26
0
 def test_good_walkers1(self):
     Chain(self.d, self.p, self.n, walkers=10)
示例#27
0
 def test_chain_with_bad_chain_initial_success2(self):
     c = Chain(self.bad, self.p, self.n)
     c.get_data(1)