We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f0466b commit 451ed8eCopy full SHA for 451ed8e
ndarray-linalg/Cargo.toml
@@ -50,8 +50,8 @@ paste = "1.0.5"
50
criterion = "0.3.4"
51
# Keep the same version as ndarray's dependency!
52
approx = { version = "0.4", features = ["num-complex"] }
53
-rand_xoshiro = "0.4"
54
-ndarray-rand = "0.12"
+rand_xoshiro = "0.6"
+ndarray-rand = "0.14"
55
56
[[bench]]
57
name = "truncated_eig"
ndarray-linalg/src/lobpcg/mod.rs
@@ -3,7 +3,7 @@
3
//! Locally Optimal Block Preconditioned Conjugate Gradient (LOBPCG) is a matrix-free method for
4
//! finding the large (or smallest) eigenvalues and the corresponding eigenvectors of a symmetric
5
//! eigenvalue problem
6
-//! ```
+//! ```text
7
//! A x = lambda x
8
//! ```
9
//! where A is symmetric and (x, lambda) the solution. It has the following advantages:
0 commit comments