code cleaned

This commit is contained in:
Nestor Demeure 2019-11-02 19:05:39 +01:00 committed by Sébastien Crozet
parent 516155025a
commit b2a50404b6
1 changed files with 1 additions and 2 deletions

View File

@ -154,8 +154,7 @@ where
DefaultAllocator: Allocator<N, R2, U1>,
ShapeConstraint: SameNumberOfRows<R2, D>,
{
// 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::<N::RealField>();