Skip to content
Snippets Groups Projects
Unverified Commit 247c60ac authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge pull request #443 from jcarpent/topic/sparse

Fix function signature
parents efed7045 07bd200c
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ...@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed ### Fixed
- Fix unit test build in C++11 ([#442](https://github.com/stack-of-tasks/eigenpy/pull/442)) - Fix unit test build in C++11 ([#442](https://github.com/stack-of-tasks/eigenpy/pull/442))
- Fix unit test function signature [#443](https://github.com/stack-of-tasks/eigenpy/pull/443))
## [3.4.0] - 2024-02-26 ## [3.4.0] - 2024-02-26
......
...@@ -14,7 +14,7 @@ llt = eigenpy.CholmodSimplicialLDLT(A) ...@@ -14,7 +14,7 @@ llt = eigenpy.CholmodSimplicialLDLT(A)
assert llt.info() == eigenpy.ComputationInfo.Success assert llt.info() == eigenpy.ComputationInfo.Success
X = rng.rand((dim, 20)) X = rng.random((dim, 20))
B = A.dot(X) B = A.dot(X)
X_est = llt.solve(B) X_est = llt.solve(B)
assert eigenpy.is_approx(X, X_est) assert eigenpy.is_approx(X, X_est)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment