2008-04-27 18:57:32 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
2009-05-23 02:25:33 +08:00
|
|
|
// for linear algebra.
|
2008-04-27 18:57:32 +08:00
|
|
|
//
|
2010-06-25 05:21:58 +08:00
|
|
|
// Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr>
|
2008-04-27 18:57:32 +08:00
|
|
|
//
|
2012-07-14 02:42:47 +08:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2009-01-15 21:30:50 +08:00
|
|
|
|
2009-11-04 00:34:45 +08:00
|
|
|
#ifndef EIGEN_NO_ASSERTION_CHECKING
|
2009-01-22 01:10:23 +08:00
|
|
|
#define EIGEN_NO_ASSERTION_CHECKING
|
2009-11-04 00:34:45 +08:00
|
|
|
#endif
|
|
|
|
|
2010-06-05 05:17:57 +08:00
|
|
|
static int nb_temporaries;
|
|
|
|
|
2010-12-26 06:01:01 +08:00
|
|
|
#define EIGEN_DENSE_STORAGE_CTOR_PLUGIN { if(size!=0) nb_temporaries++; }
|
2010-06-05 05:17:57 +08:00
|
|
|
|
2008-04-27 18:57:32 +08:00
|
|
|
#include "main.h"
|
|
|
|
#include <Eigen/Cholesky>
|
2009-03-31 05:45:45 +08:00
|
|
|
#include <Eigen/QR>
|
2008-04-27 18:57:32 +08:00
|
|
|
|
2010-06-05 05:17:57 +08:00
|
|
|
#define VERIFY_EVALUATION_COUNT(XPR,N) {\
|
|
|
|
nb_temporaries = 0; \
|
|
|
|
XPR; \
|
|
|
|
if(nb_temporaries!=N) std::cerr << "nb_temporaries == " << nb_temporaries << "\n"; \
|
|
|
|
VERIFY( (#XPR) && nb_temporaries==N ); \
|
|
|
|
}
|
|
|
|
|
2012-01-24 00:28:23 +08:00
|
|
|
template<typename MatrixType,template <typename,int> class CholType> void test_chol_update(const MatrixType& symm)
|
|
|
|
{
|
|
|
|
typedef typename MatrixType::Scalar Scalar;
|
|
|
|
typedef typename MatrixType::RealScalar RealScalar;
|
|
|
|
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
|
|
|
|
|
|
|
|
MatrixType symmLo = symm.template triangularView<Lower>();
|
|
|
|
MatrixType symmUp = symm.template triangularView<Upper>();
|
|
|
|
MatrixType symmCpy = symm;
|
|
|
|
|
|
|
|
CholType<MatrixType,Lower> chollo(symmLo);
|
|
|
|
CholType<MatrixType,Upper> cholup(symmUp);
|
|
|
|
|
|
|
|
for (int k=0; k<10; ++k)
|
|
|
|
{
|
|
|
|
VectorType vec = VectorType::Random(symm.rows());
|
|
|
|
RealScalar sigma = internal::random<RealScalar>();
|
|
|
|
symmCpy += sigma * vec * vec.adjoint();
|
|
|
|
|
|
|
|
// we are doing some downdates, so it might be the case that the matrix is not SPD anymore
|
|
|
|
CholType<MatrixType,Lower> chol(symmCpy);
|
|
|
|
if(chol.info()!=Success)
|
|
|
|
break;
|
|
|
|
|
|
|
|
chollo.rankUpdate(vec, sigma);
|
|
|
|
VERIFY_IS_APPROX(symmCpy, chollo.reconstructedMatrix());
|
|
|
|
|
|
|
|
cholup.rankUpdate(vec, sigma);
|
|
|
|
VERIFY_IS_APPROX(symmCpy, cholup.reconstructedMatrix());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-27 18:57:32 +08:00
|
|
|
template<typename MatrixType> void cholesky(const MatrixType& m)
|
|
|
|
{
|
2010-06-20 23:37:56 +08:00
|
|
|
typedef typename MatrixType::Index Index;
|
2008-04-27 18:57:32 +08:00
|
|
|
/* this test covers the following files:
|
2008-10-13 23:53:27 +08:00
|
|
|
LLT.h LDLT.h
|
2008-04-27 18:57:32 +08:00
|
|
|
*/
|
2010-06-20 23:37:56 +08:00
|
|
|
Index rows = m.rows();
|
|
|
|
Index cols = m.cols();
|
2008-04-27 18:57:32 +08:00
|
|
|
|
|
|
|
typedef typename MatrixType::Scalar Scalar;
|
2008-08-23 01:48:36 +08:00
|
|
|
typedef typename NumTraits<Scalar>::Real RealScalar;
|
2008-06-29 07:07:14 +08:00
|
|
|
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
|
|
|
|
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
|
2008-04-27 18:57:32 +08:00
|
|
|
|
2008-09-02 01:31:21 +08:00
|
|
|
MatrixType a0 = MatrixType::Random(rows,cols);
|
2008-10-13 23:53:27 +08:00
|
|
|
VectorType vecB = VectorType::Random(rows), vecX(rows);
|
|
|
|
MatrixType matB = MatrixType::Random(rows,cols), matX(rows,cols);
|
2008-08-23 23:14:20 +08:00
|
|
|
SquareMatrixType symm = a0 * a0.adjoint();
|
|
|
|
// let's make sure the matrix is not singular or near singular
|
2009-08-02 05:42:51 +08:00
|
|
|
for (int k=0; k<3; ++k)
|
|
|
|
{
|
|
|
|
MatrixType a1 = MatrixType::Random(rows,cols);
|
|
|
|
symm += a1 * a1.adjoint();
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:15:32 +08:00
|
|
|
SquareMatrixType symmUp = symm.template triangularView<Upper>();
|
|
|
|
SquareMatrixType symmLo = symm.template triangularView<Lower>();
|
2008-08-23 23:14:20 +08:00
|
|
|
|
2009-03-31 05:45:45 +08:00
|
|
|
// to test if really Cholesky only uses the upper triangular part, uncomment the following
|
|
|
|
// FIXME: currently that fails !!
|
2010-01-08 04:15:32 +08:00
|
|
|
//symm.template part<StrictlyLower>().setZero();
|
2009-03-31 05:45:45 +08:00
|
|
|
|
2008-08-23 23:14:20 +08:00
|
|
|
{
|
2010-01-08 04:15:32 +08:00
|
|
|
LLT<SquareMatrixType,Lower> chollo(symmLo);
|
2010-02-25 02:16:10 +08:00
|
|
|
VERIFY_IS_APPROX(symm, chollo.reconstructedMatrix());
|
2009-10-30 09:11:05 +08:00
|
|
|
vecX = chollo.solve(vecB);
|
2008-10-13 23:53:27 +08:00
|
|
|
VERIFY_IS_APPROX(symm * vecX, vecB);
|
2009-10-30 09:11:05 +08:00
|
|
|
matX = chollo.solve(matB);
|
2008-10-13 23:53:27 +08:00
|
|
|
VERIFY_IS_APPROX(symm * matX, matB);
|
2009-07-07 21:32:21 +08:00
|
|
|
|
|
|
|
// test the upper mode
|
2010-01-08 04:15:32 +08:00
|
|
|
LLT<SquareMatrixType,Upper> cholup(symmUp);
|
2010-02-25 02:16:10 +08:00
|
|
|
VERIFY_IS_APPROX(symm, cholup.reconstructedMatrix());
|
2009-10-30 09:11:05 +08:00
|
|
|
vecX = cholup.solve(vecB);
|
2009-07-07 21:32:21 +08:00
|
|
|
VERIFY_IS_APPROX(symm * vecX, vecB);
|
2009-10-30 09:11:05 +08:00
|
|
|
matX = cholup.solve(matB);
|
2009-07-07 21:32:21 +08:00
|
|
|
VERIFY_IS_APPROX(symm * matX, matB);
|
2010-06-12 16:12:22 +08:00
|
|
|
|
|
|
|
MatrixType neg = -symmLo;
|
|
|
|
chollo.compute(neg);
|
|
|
|
VERIFY(chollo.info()==NumericalIssue);
|
2012-04-10 21:40:36 +08:00
|
|
|
|
|
|
|
VERIFY_IS_APPROX(MatrixType(chollo.matrixL().transpose().conjugate()), MatrixType(chollo.matrixU()));
|
|
|
|
VERIFY_IS_APPROX(MatrixType(chollo.matrixU().transpose().conjugate()), MatrixType(chollo.matrixL()));
|
|
|
|
VERIFY_IS_APPROX(MatrixType(cholup.matrixL().transpose().conjugate()), MatrixType(cholup.matrixU()));
|
|
|
|
VERIFY_IS_APPROX(MatrixType(cholup.matrixU().transpose().conjugate()), MatrixType(cholup.matrixL()));
|
2008-08-23 23:14:20 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 20:01:06 +08:00
|
|
|
// LDLT
|
2009-03-31 05:45:45 +08:00
|
|
|
{
|
2010-10-25 22:15:22 +08:00
|
|
|
int sign = internal::random<int>()%2 ? 1 : -1;
|
2010-06-09 20:01:06 +08:00
|
|
|
|
|
|
|
if(sign == -1)
|
|
|
|
{
|
|
|
|
symm = -symm; // test a negative matrix
|
|
|
|
}
|
|
|
|
|
|
|
|
SquareMatrixType symmUp = symm.template triangularView<Upper>();
|
|
|
|
SquareMatrixType symmLo = symm.template triangularView<Lower>();
|
2009-03-31 05:45:45 +08:00
|
|
|
|
2010-06-09 19:18:10 +08:00
|
|
|
LDLT<SquareMatrixType,Lower> ldltlo(symmLo);
|
2010-06-04 04:22:14 +08:00
|
|
|
VERIFY_IS_APPROX(symm, ldltlo.reconstructedMatrix());
|
|
|
|
vecX = ldltlo.solve(vecB);
|
2009-03-31 05:45:45 +08:00
|
|
|
VERIFY_IS_APPROX(symm * vecX, vecB);
|
2010-06-04 04:22:14 +08:00
|
|
|
matX = ldltlo.solve(matB);
|
|
|
|
VERIFY_IS_APPROX(symm * matX, matB);
|
|
|
|
|
2010-06-09 19:18:10 +08:00
|
|
|
LDLT<SquareMatrixType,Upper> ldltup(symmUp);
|
2010-06-04 04:22:14 +08:00
|
|
|
VERIFY_IS_APPROX(symm, ldltup.reconstructedMatrix());
|
|
|
|
vecX = ldltup.solve(vecB);
|
|
|
|
VERIFY_IS_APPROX(symm * vecX, vecB);
|
|
|
|
matX = ldltup.solve(matB);
|
2009-03-31 05:45:45 +08:00
|
|
|
VERIFY_IS_APPROX(symm * matX, matB);
|
2010-06-05 05:17:57 +08:00
|
|
|
|
2012-04-10 21:40:36 +08:00
|
|
|
VERIFY_IS_APPROX(MatrixType(ldltlo.matrixL().transpose().conjugate()), MatrixType(ldltlo.matrixU()));
|
|
|
|
VERIFY_IS_APPROX(MatrixType(ldltlo.matrixU().transpose().conjugate()), MatrixType(ldltlo.matrixL()));
|
|
|
|
VERIFY_IS_APPROX(MatrixType(ldltup.matrixL().transpose().conjugate()), MatrixType(ldltup.matrixU()));
|
|
|
|
VERIFY_IS_APPROX(MatrixType(ldltup.matrixU().transpose().conjugate()), MatrixType(ldltup.matrixL()));
|
|
|
|
|
2010-06-09 20:01:06 +08:00
|
|
|
if(MatrixType::RowsAtCompileTime==Dynamic)
|
|
|
|
{
|
|
|
|
// note : each inplace permutation requires a small temporary vector (mask)
|
|
|
|
|
|
|
|
// check inplace solve
|
|
|
|
matX = matB;
|
|
|
|
VERIFY_EVALUATION_COUNT(matX = ldltlo.solve(matX), 0);
|
|
|
|
VERIFY_IS_APPROX(matX, ldltlo.solve(matB).eval());
|
|
|
|
|
|
|
|
|
|
|
|
matX = matB;
|
|
|
|
VERIFY_EVALUATION_COUNT(matX = ldltup.solve(matX), 0);
|
|
|
|
VERIFY_IS_APPROX(matX, ldltup.solve(matB).eval());
|
|
|
|
}
|
2011-06-20 21:05:50 +08:00
|
|
|
|
|
|
|
// restore
|
|
|
|
if(sign == -1)
|
|
|
|
symm = -symm;
|
2009-03-31 05:45:45 +08:00
|
|
|
}
|
|
|
|
|
2010-09-06 17:51:42 +08:00
|
|
|
// test some special use cases of SelfCwiseBinaryOp:
|
|
|
|
MatrixType m1 = MatrixType::Random(rows,cols), m2(rows,cols);
|
|
|
|
m2 = m1;
|
|
|
|
m2 += symmLo.template selfadjointView<Lower>().llt().solve(matB);
|
|
|
|
VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB));
|
|
|
|
m2 = m1;
|
|
|
|
m2 -= symmLo.template selfadjointView<Lower>().llt().solve(matB);
|
|
|
|
VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB));
|
|
|
|
m2 = m1;
|
|
|
|
m2.noalias() += symmLo.template selfadjointView<Lower>().llt().solve(matB);
|
|
|
|
VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB));
|
|
|
|
m2 = m1;
|
|
|
|
m2.noalias() -= symmLo.template selfadjointView<Lower>().llt().solve(matB);
|
|
|
|
VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB));
|
2011-06-20 21:05:50 +08:00
|
|
|
|
2012-01-24 00:28:23 +08:00
|
|
|
// update/downdate
|
|
|
|
CALL_SUBTEST(( test_chol_update<SquareMatrixType,LLT>(symm) ));
|
|
|
|
CALL_SUBTEST(( test_chol_update<SquareMatrixType,LDLT>(symm) ));
|
2008-04-27 18:57:32 +08:00
|
|
|
}
|
|
|
|
|
2010-07-13 22:03:49 +08:00
|
|
|
template<typename MatrixType> void cholesky_cplx(const MatrixType& m)
|
|
|
|
{
|
|
|
|
// classic test
|
|
|
|
cholesky(m);
|
|
|
|
|
|
|
|
// test mixing real/scalar types
|
|
|
|
|
|
|
|
typedef typename MatrixType::Index Index;
|
|
|
|
|
|
|
|
Index rows = m.rows();
|
|
|
|
Index cols = m.cols();
|
|
|
|
|
|
|
|
typedef typename MatrixType::Scalar Scalar;
|
|
|
|
typedef typename NumTraits<Scalar>::Real RealScalar;
|
|
|
|
typedef Matrix<RealScalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> RealMatrixType;
|
|
|
|
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
|
|
|
|
|
|
|
|
RealMatrixType a0 = RealMatrixType::Random(rows,cols);
|
|
|
|
VectorType vecB = VectorType::Random(rows), vecX(rows);
|
|
|
|
MatrixType matB = MatrixType::Random(rows,cols), matX(rows,cols);
|
|
|
|
RealMatrixType symm = a0 * a0.adjoint();
|
|
|
|
// let's make sure the matrix is not singular or near singular
|
|
|
|
for (int k=0; k<3; ++k)
|
|
|
|
{
|
|
|
|
RealMatrixType a1 = RealMatrixType::Random(rows,cols);
|
|
|
|
symm += a1 * a1.adjoint();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
RealMatrixType symmLo = symm.template triangularView<Lower>();
|
|
|
|
|
|
|
|
LLT<RealMatrixType,Lower> chollo(symmLo);
|
|
|
|
VERIFY_IS_APPROX(symm, chollo.reconstructedMatrix());
|
|
|
|
vecX = chollo.solve(vecB);
|
|
|
|
VERIFY_IS_APPROX(symm * vecX, vecB);
|
|
|
|
// matX = chollo.solve(matB);
|
|
|
|
// VERIFY_IS_APPROX(symm * matX, matB);
|
|
|
|
}
|
|
|
|
|
|
|
|
// LDLT
|
|
|
|
{
|
2010-10-25 22:15:22 +08:00
|
|
|
int sign = internal::random<int>()%2 ? 1 : -1;
|
2010-07-13 22:03:49 +08:00
|
|
|
|
|
|
|
if(sign == -1)
|
|
|
|
{
|
|
|
|
symm = -symm; // test a negative matrix
|
|
|
|
}
|
|
|
|
|
|
|
|
RealMatrixType symmLo = symm.template triangularView<Lower>();
|
|
|
|
|
|
|
|
LDLT<RealMatrixType,Lower> ldltlo(symmLo);
|
|
|
|
VERIFY_IS_APPROX(symm, ldltlo.reconstructedMatrix());
|
|
|
|
vecX = ldltlo.solve(vecB);
|
|
|
|
VERIFY_IS_APPROX(symm * vecX, vecB);
|
|
|
|
// matX = ldltlo.solve(matB);
|
|
|
|
// VERIFY_IS_APPROX(symm * matX, matB);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-11 13:30:53 +08:00
|
|
|
// regression test for bug 241
|
|
|
|
template<typename MatrixType> void cholesky_bug241(const MatrixType& m)
|
|
|
|
{
|
|
|
|
eigen_assert(m.rows() == 2 && m.cols() == 2);
|
|
|
|
|
|
|
|
typedef typename MatrixType::Scalar Scalar;
|
|
|
|
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
|
|
|
|
|
|
|
|
MatrixType matA;
|
|
|
|
matA << 1, 1, 1, 1;
|
|
|
|
VectorType vecB;
|
|
|
|
vecB << 1, 1;
|
|
|
|
VectorType vecX = matA.ldlt().solve(vecB);
|
|
|
|
VERIFY_IS_APPROX(matA * vecX, vecB);
|
|
|
|
}
|
|
|
|
|
2009-05-22 21:58:20 +08:00
|
|
|
template<typename MatrixType> void cholesky_verify_assert()
|
2009-03-31 05:45:45 +08:00
|
|
|
{
|
2009-05-22 21:58:20 +08:00
|
|
|
MatrixType tmp;
|
|
|
|
|
|
|
|
LLT<MatrixType> llt;
|
|
|
|
VERIFY_RAISES_ASSERT(llt.matrixL())
|
2010-06-05 05:17:57 +08:00
|
|
|
VERIFY_RAISES_ASSERT(llt.matrixU())
|
2009-10-30 09:11:05 +08:00
|
|
|
VERIFY_RAISES_ASSERT(llt.solve(tmp))
|
2009-05-22 21:58:20 +08:00
|
|
|
VERIFY_RAISES_ASSERT(llt.solveInPlace(&tmp))
|
|
|
|
|
|
|
|
LDLT<MatrixType> ldlt;
|
|
|
|
VERIFY_RAISES_ASSERT(ldlt.matrixL())
|
|
|
|
VERIFY_RAISES_ASSERT(ldlt.permutationP())
|
|
|
|
VERIFY_RAISES_ASSERT(ldlt.vectorD())
|
|
|
|
VERIFY_RAISES_ASSERT(ldlt.isPositive())
|
|
|
|
VERIFY_RAISES_ASSERT(ldlt.isNegative())
|
2009-10-30 09:11:05 +08:00
|
|
|
VERIFY_RAISES_ASSERT(ldlt.solve(tmp))
|
2009-05-22 21:58:20 +08:00
|
|
|
VERIFY_RAISES_ASSERT(ldlt.solveInPlace(&tmp))
|
2009-03-31 05:45:45 +08:00
|
|
|
}
|
|
|
|
|
2008-05-22 20:18:55 +08:00
|
|
|
void test_cholesky()
|
2008-04-27 18:57:32 +08:00
|
|
|
{
|
2010-07-13 22:03:49 +08:00
|
|
|
int s;
|
2008-08-23 01:48:36 +08:00
|
|
|
for(int i = 0; i < g_repeat; i++) {
|
2009-10-29 06:19:29 +08:00
|
|
|
CALL_SUBTEST_1( cholesky(Matrix<double,1,1>()) );
|
|
|
|
CALL_SUBTEST_3( cholesky(Matrix2d()) );
|
2011-09-11 13:30:53 +08:00
|
|
|
CALL_SUBTEST_3( cholesky_bug241(Matrix2d()) );
|
2009-10-29 06:19:29 +08:00
|
|
|
CALL_SUBTEST_4( cholesky(Matrix3f()) );
|
|
|
|
CALL_SUBTEST_5( cholesky(Matrix4d()) );
|
2011-07-12 20:41:00 +08:00
|
|
|
s = internal::random<int>(1,EIGEN_TEST_MAX_SIZE);
|
2010-07-13 22:03:49 +08:00
|
|
|
CALL_SUBTEST_2( cholesky(MatrixXd(s,s)) );
|
2011-07-12 20:41:00 +08:00
|
|
|
s = internal::random<int>(1,EIGEN_TEST_MAX_SIZE/2);
|
2010-07-13 22:03:49 +08:00
|
|
|
CALL_SUBTEST_6( cholesky_cplx(MatrixXcd(s,s)) );
|
2009-03-31 05:45:45 +08:00
|
|
|
}
|
2009-05-22 21:58:20 +08:00
|
|
|
|
2009-10-29 06:19:29 +08:00
|
|
|
CALL_SUBTEST_4( cholesky_verify_assert<Matrix3f>() );
|
|
|
|
CALL_SUBTEST_7( cholesky_verify_assert<Matrix3d>() );
|
|
|
|
CALL_SUBTEST_8( cholesky_verify_assert<MatrixXf>() );
|
|
|
|
CALL_SUBTEST_2( cholesky_verify_assert<MatrixXd>() );
|
2010-04-21 23:15:57 +08:00
|
|
|
|
|
|
|
// Test problem size constructors
|
|
|
|
CALL_SUBTEST_9( LLT<MatrixXf>(10) );
|
|
|
|
CALL_SUBTEST_9( LDLT<MatrixXf>(10) );
|
2011-10-31 12:51:36 +08:00
|
|
|
|
|
|
|
EIGEN_UNUSED_VARIABLE(s)
|
2008-04-27 18:57:32 +08:00
|
|
|
}
|