We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 500703e commit e895b22Copy full SHA for e895b22
1 file changed
tests/test_Wrappers.py
@@ -59,6 +59,10 @@ def clean(self):
59
Ainv = WrappedClass(A)
60
assert Ainv.A is A
61
assert Ainv.solver.A is A
62
+
63
+ rhs = np.array([0.9, 1.0])
64
+ npt.assert_equal(Ainv @ rhs, rhs)
65
66
Ainv.clean()
67
assert Ainv.solver.A is None
68
0 commit comments