Old engine for Continuous Time Bayesian Networks. Superseded by reCTBN. 🐍
https://github.com/madlabunimib/PyCTBN
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
476 B
21 lines
476 B
4 years ago
|
import numpy as np
|
||
|
from numpy.testing import assert_equal, assert_almost_equal
|
||
|
import scipy.special as sc
|
||
|
|
||
|
|
||
|
def test_ndtr():
|
||
|
assert_equal(sc.ndtr(0), 0.5)
|
||
|
assert_almost_equal(sc.ndtr(1), 0.84134474606)
|
||
|
|
||
|
|
||
|
class TestNdtri:
|
||
|
|
||
|
def test_zero(self):
|
||
|
assert sc.ndtri(0.5) == 0.0
|
||
|
|
||
|
def test_asymptotes(self):
|
||
|
assert_equal(sc.ndtri([0.0, 1.0]), [-np.inf, np.inf])
|
||
|
|
||
|
def test_outside_of_domain(self):
|
||
|
assert all(np.isnan(sc.ndtri([-1.5, 1.5])))
|