Skip to content

Commit 451ed8e

Browse files
committed
Bump dependencies
1 parent 2f0466b commit 451ed8e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ndarray-linalg/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ paste = "1.0.5"
5050
criterion = "0.3.4"
5151
# Keep the same version as ndarray's dependency!
5252
approx = { version = "0.4", features = ["num-complex"] }
53-
rand_xoshiro = "0.4"
54-
ndarray-rand = "0.12"
53+
rand_xoshiro = "0.6"
54+
ndarray-rand = "0.14"
5555

5656
[[bench]]
5757
name = "truncated_eig"

ndarray-linalg/src/lobpcg/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! Locally Optimal Block Preconditioned Conjugate Gradient (LOBPCG) is a matrix-free method for
44
//! finding the large (or smallest) eigenvalues and the corresponding eigenvectors of a symmetric
55
//! eigenvalue problem
6-
//! ```
6+
//! ```text
77
//! A x = lambda x
88
//! ```
99
//! where A is symmetric and (x, lambda) the solution. It has the following advantages:

0 commit comments

Comments
 (0)