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.
2 parents efed704 + 07bd200 commit 247c60aCopy full SHA for 247c60a
CHANGELOG.md
@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
8
9
### Fixed
10
- Fix unit test build in C++11 ([#442](https://github.com/stack-of-tasks/eigenpy/pull/442))
11
+- Fix unit test function signature [#443](https://github.com/stack-of-tasks/eigenpy/pull/443))
12
13
## [3.4.0] - 2024-02-26
14
unittest/python/decompositions/sparse/cholmod/test_CholmodSimplicialLDLT.py
@@ -14,7 +14,7 @@
15
assert llt.info() == eigenpy.ComputationInfo.Success
16
17
-X = rng.rand((dim, 20))
+X = rng.random((dim, 20))
18
B = A.dot(X)
19
X_est = llt.solve(B)
20
assert eigenpy.is_approx(X, X_est)
0 commit comments