Skip to content

Commit 247c60a

Browse files
authored
Merge pull request #443 from jcarpent/topic/sparse
Fix function signature
2 parents efed704 + 07bd200 commit 247c60a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88

99
### Fixed
1010
- 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))
1112

1213
## [3.4.0] - 2024-02-26
1314

unittest/python/decompositions/sparse/cholmod/test_CholmodSimplicialLDLT.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
assert llt.info() == eigenpy.ComputationInfo.Success
1616

17-
X = rng.rand((dim, 20))
17+
X = rng.random((dim, 20))
1818
B = A.dot(X)
1919
X_est = llt.solve(B)
2020
assert eigenpy.is_approx(X, X_est)

0 commit comments

Comments
 (0)