(a, b)
| 24 | |
| 25 | |
| 26 | def assert_sparse_equal(a, b): |
| 27 | assert isinstance(a, sparse_array_type) |
| 28 | assert isinstance(b, sparse_array_type) |
| 29 | np.testing.assert_equal(a.todense(), b.todense()) |
| 30 | |
| 31 | |
| 32 | def make_ndarray(shape): |
no test coverage detected
searching dependent graphs…