From b2a50404b6577c5e9c4284e73b864a39e3f04338 Mon Sep 17 00:00:00 2001 From: Nestor Demeure Date: Sat, 2 Nov 2019 19:05:39 +0100 Subject: [PATCH] code cleaned --- src/linalg/cholesky.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/linalg/cholesky.rs b/src/linalg/cholesky.rs index d0a9918c..0f453975 100644 --- a/src/linalg/cholesky.rs +++ b/src/linalg/cholesky.rs @@ -154,8 +154,7 @@ where DefaultAllocator: Allocator, ShapeConstraint: SameNumberOfRows, { - // for a description of the operation, see https://en.wikipedia.org/wiki/Cholesky_decomposition#Updating_the_decomposition - // heavily inspired by Eigen's implementation https://eigen.tuxfamily.org/dox/LLT_8h_source.html + // heavily inspired by Eigen's `llt_rank_update_lower` implementation https://eigen.tuxfamily.org/dox/LLT_8h_source.html let n = x.nrows(); let mut x = x.clone_owned(); let mut beta = crate::one::();