Skip to content

Commit 0ee9f56

Browse files
committed
Run rustfmt
1 parent b4b689f commit 0ee9f56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ndarray-linalg/src/lobpcg/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
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
5-
//! eigenvalue problem
5+
//! eigenvalue problem
66
//! ```
77
//! A x = lambda x
88
//! ```

ndarray-linalg/src/lobpcg/svd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ impl<A: Float + PartialOrd + DivAssign<A> + 'static + MagnitudeCorrection> Trunc
9090
/// Truncated singular value decomposition
9191
///
9292
/// Wraps the LOBPCG algorithm and provides convenient builder-pattern access to
93-
/// parameter like maximal iteration, precision and contrain matrix.
93+
/// parameter like maximal iteration, precision and contrain matrix.
9494
pub struct TruncatedSvd<A: Scalar> {
9595
order: Order,
9696
problem: Array2<A>,

0 commit comments

Comments
 (0)