Esempio n. 1
0
 def test_slamch(self):
     for c in [b'e', b's', b'b', b'p', b'n', b'r', b'm', b'u', b'l', b'o']:
         assert_allclose(cython_lapack._test_slamch(c), lapack.slamch(c))
Esempio n. 2
0
 def test_slamch(self):
     for c in [b'e', b's', b'b', b'p', b'n', b'r', b'm', b'u', b'l', b'o']:
         assert_allclose(cython_lapack._test_slamch(c),
                         lapack.slamch(c))
Esempio n. 3
0
 def test_slamch(self):
     for c in b'esbpnrmulo':
         assert_allclose(cython_lapack._test_slamch(c),
                         lapack.slamch(c))