We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4674ebd commit 6f18b8cCopy full SHA for 6f18b8c
src/arnoldi.rs
@@ -83,7 +83,7 @@ impl<A: Scalar> MGS<A> {
83
/// let coef = mgs.append(array![1.0, 1.0, 0.0], 1e-9).unwrap();
84
/// close_l2(&coef, &array![1.0, 1.0], 1e-9).unwrap();
85
///
86
- /// assert!(mgs.append(array![1.0, 1.0, 0.0], 1e-9).is_none()); // Cannot append dependent vector
+ /// assert!(mgs.append(array![1.0, 2.0, 0.0], 1e-9).is_none()); // Cannot append dependent vector
87
/// ```
88
pub fn append<S>(&mut self, a: ArrayBase<S, Ix1>, rtol: A::Real) -> Option<Coefficient<A>>
89
where
0 commit comments