We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaf905b commit 7137caaCopy full SHA for 7137caa
tests/test_iterative_solvers.py
@@ -17,7 +17,7 @@
17
18
@pytest.mark.parametrize("cls", _clazzes)
19
def test_solver(cls):
20
- Q = np.random.randn(dim, dim)
+ Q = rng.standard_normal((dim, dim))
21
A = 0.5 * (Q.T + Q)
22
solver = cls(A)
23
solver.setMaxIterations(MAX_ITER)
@@ -41,7 +41,7 @@ def test_solver(cls):
41
42
43
def test_solver_with_guess(cls):
44
45
46
47
0 commit comments