From 3ae88127eee37995cf9cae64b6a4364aea92a2fc Mon Sep 17 00:00:00 2001 From: Nestor Demeure Date: Sat, 2 Nov 2019 18:27:01 +0100 Subject: [PATCH] rank update passed tests --- src/linalg/cholesky.rs | 43 ++++++++++++++++++++-------------------- tests/linalg/cholesky.rs | 12 +++-------- 2 files changed, 25 insertions(+), 30 deletions(-) diff --git a/src/linalg/cholesky.rs b/src/linalg/cholesky.rs index 4063b4ee..c4049504 100644 --- a/src/linalg/cholesky.rs +++ b/src/linalg/cholesky.rs @@ -8,7 +8,6 @@ use crate::base::{DefaultAllocator, Matrix, MatrixMN, MatrixN, SquareMatrix}; use crate::constraint::{SameNumberOfRows, ShapeConstraint}; use crate::dimension::{Dim, DimSub, Dynamic, U1}; use crate::storage::{Storage, StorageMut}; -use crate::RealField; /// The Cholesky decomposition of a symmetric-definite-positive matrix. #[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))] @@ -149,33 +148,35 @@ where /// Given the Cholesky decomposition of a matrix `M`, a scalar `sigma` and a vector `v`, /// performs a rank one update such that we end up with the decomposition of `M + sigma * v*v^*`. - /// TODO insures that code is correct for complex numbers, eigen uses abs2 and conj - /// https://eigen.tuxfamily.org/dox/LLT_8h_source.html - pub fn rank_one_update( - &mut self, - x: &Matrix, - sigma: N2, - ) where - N: From, + pub fn rank_one_update(&mut self, x: &Matrix, sigma: N::RealField) + where S2: Storage, DefaultAllocator: Allocator, ShapeConstraint: SameNumberOfRows, { - let sigma = ::from(sigma); + // 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 + // TODO use unsafe { *matrix.get_unchecked((j, j)) } let n = x.nrows(); let mut temp = x.clone_owned(); - for k in 0..n { - let lkk = self.chol[(k, k)]; // TODO unsafe { *matrix.get_unchecked((j, j)) } - let xk = temp[k]; - let r = (lkk * lkk + sigma * xk * xk).sqrt(); - let c = r / lkk; - let s = xk / lkk; - self.chol[(k, k)] = r; + let mut beta = crate::one::(); + for j in 0..n { + let ljj = N::real(self.chol[(j, j)]); + let dj = ljj * ljj; + let wj = temp[j]; + let swj2 = sigma * N::modulus_squared(wj); + let gamma = dj * beta + swj2; + let nljj = (dj + swj2 / beta).sqrt(); + self.chol[(j, j)] = N::from_real(nljj); + beta += swj2 / dj; // Update the terms of L - if k < n { - for k2 in (k + 1)..n { - self.chol[(k2, k)] = (self.chol[(k2, k)] + sigma * s * temp[k2]) / c; - temp[k2] = c * temp[k2] - s * self.chol[(k2, k)]; + if j < n { + for k in (j + 1)..n { + temp[k] -= (wj / N::from_real(ljj)) * self.chol[(k, j)]; + if gamma != crate::zero::() { + self.chol[(k, j)] = N::from_real(nljj / ljj) * self.chol[(k, j)] + + (N::from_real(nljj * sigma / gamma) * N::conjugate(wj)) * temp[k]; + } } } } diff --git a/tests/linalg/cholesky.rs b/tests/linalg/cholesky.rs index bef5de95..b04ed402 100644 --- a/tests/linalg/cholesky.rs +++ b/tests/linalg/cholesky.rs @@ -79,10 +79,8 @@ macro_rules! gen_tests( } fn cholesky_rank_one_update(_n: usize) -> bool { - use nalgebra::dimension::U3; - use nalgebra::Vector3; - let mut m = RandomSDP::new(U3, || random::<$scalar>().0).unwrap(); - let x = Vector3::<$scalar>::new_random().map(|e| e.0); + let mut m = RandomSDP::new(U4, || random::<$scalar>().0).unwrap(); + let x = Vector4::<$scalar>::new_random().map(|e| e.0); // TODO this is dirty but $scalar appears to not be a scalar type in this file let zero = random::<$scalar>().0 * 0.; @@ -96,11 +94,7 @@ macro_rules! gen_tests( let m_chol_updated = chol.l() * chol.l().adjoint(); // updates m manually - m.ger(sigma_scalar, &x, &x, one); // m += sigma * x * x.adjoint() - - println!("sigma : {}", sigma); - println!("m updated : {}", m); - println!("chol : {}", m_chol_updated); + m.gerc(sigma_scalar, &x, &x, one); // m += sigma * x * x.adjoint() relative_eq!(m, m_chol_updated, epsilon = 1.0e-7) }