You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
4.4 KiB

  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2008-2009 Gael Guennebaud <gael.guennebaud@inria.fr>
  5. //
  6. // This Source Code Form is subject to the terms of the Mozilla
  7. // Public License v. 2.0. If a copy of the MPL was not distributed
  8. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  9. #include "main.h"
  10. template<typename Scalar, int Size, int OtherSize> void symm(int size = Size, int othersize = OtherSize)
  11. {
  12. typedef Matrix<Scalar, Size, Size> MatrixType;
  13. typedef Matrix<Scalar, Size, OtherSize> Rhs1;
  14. typedef Matrix<Scalar, OtherSize, Size> Rhs2;
  15. enum { order = OtherSize==1 ? 0 : RowMajor };
  16. typedef Matrix<Scalar, Size, OtherSize,order> Rhs3;
  17. typedef typename MatrixType::Index Index;
  18. Index rows = size;
  19. Index cols = size;
  20. MatrixType m1 = MatrixType::Random(rows, cols),
  21. m2 = MatrixType::Random(rows, cols), m3;
  22. m1 = (m1+m1.adjoint()).eval();
  23. Rhs1 rhs1 = Rhs1::Random(cols, othersize), rhs12(cols, othersize), rhs13(cols, othersize);
  24. Rhs2 rhs2 = Rhs2::Random(othersize, rows), rhs22(othersize, rows), rhs23(othersize, rows);
  25. Rhs3 rhs3 = Rhs3::Random(cols, othersize), rhs32(cols, othersize), rhs33(cols, othersize);
  26. Scalar s1 = internal::random<Scalar>(),
  27. s2 = internal::random<Scalar>();
  28. m2 = m1.template triangularView<Lower>();
  29. m3 = m2.template selfadjointView<Lower>();
  30. VERIFY_IS_EQUAL(m1, m3);
  31. VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs1),
  32. rhs13 = (s1*m1) * (s2*rhs1));
  33. m2 = m1.template triangularView<Upper>(); rhs12.setRandom(); rhs13 = rhs12;
  34. m3 = m2.template selfadjointView<Upper>();
  35. VERIFY_IS_EQUAL(m1, m3);
  36. VERIFY_IS_APPROX(rhs12 += (s1*m2).template selfadjointView<Upper>() * (s2*rhs1),
  37. rhs13 += (s1*m1) * (s2*rhs1));
  38. m2 = m1.template triangularView<Lower>();
  39. VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs2.adjoint()),
  40. rhs13 = (s1*m1) * (s2*rhs2.adjoint()));
  41. m2 = m1.template triangularView<Upper>();
  42. VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Upper>() * (s2*rhs2.adjoint()),
  43. rhs13 = (s1*m1) * (s2*rhs2.adjoint()));
  44. m2 = m1.template triangularView<Upper>();
  45. VERIFY_IS_APPROX(rhs12 = (s1*m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs2.adjoint()),
  46. rhs13 = (s1*m1.adjoint()) * (s2*rhs2.adjoint()));
  47. // test row major = <...>
  48. m2 = m1.template triangularView<Lower>(); rhs12.setRandom(); rhs13 = rhs12;
  49. VERIFY_IS_APPROX(rhs12 -= (s1*m2).template selfadjointView<Lower>() * (s2*rhs3),
  50. rhs13 -= (s1*m1) * (s2 * rhs3));
  51. m2 = m1.template triangularView<Upper>();
  52. VERIFY_IS_APPROX(rhs12 = (s1*m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs3).conjugate(),
  53. rhs13 = (s1*m1.adjoint()) * (s2*rhs3).conjugate());
  54. m2 = m1.template triangularView<Upper>(); rhs13 = rhs12;
  55. VERIFY_IS_APPROX(rhs12.noalias() += s1 * ((m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs3).conjugate()),
  56. rhs13 += (s1*m1.adjoint()) * (s2*rhs3).conjugate());
  57. m2 = m1.template triangularView<Lower>();
  58. VERIFY_IS_APPROX(rhs22 = (rhs2) * (m2).template selfadjointView<Lower>(), rhs23 = (rhs2) * (m1));
  59. VERIFY_IS_APPROX(rhs22 = (s2*rhs2) * (s1*m2).template selfadjointView<Lower>(), rhs23 = (s2*rhs2) * (s1*m1));
  60. }
  61. void test_product_symm()
  62. {
  63. for(int i = 0; i < g_repeat ; i++)
  64. {
  65. CALL_SUBTEST_1(( symm<float,Dynamic,Dynamic>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE),internal::random<int>(1,EIGEN_TEST_MAX_SIZE)) ));
  66. CALL_SUBTEST_2(( symm<double,Dynamic,Dynamic>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE),internal::random<int>(1,EIGEN_TEST_MAX_SIZE)) ));
  67. CALL_SUBTEST_3(( symm<std::complex<float>,Dynamic,Dynamic>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/2),internal::random<int>(1,EIGEN_TEST_MAX_SIZE/2)) ));
  68. CALL_SUBTEST_4(( symm<std::complex<double>,Dynamic,Dynamic>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/2),internal::random<int>(1,EIGEN_TEST_MAX_SIZE/2)) ));
  69. CALL_SUBTEST_5(( symm<float,Dynamic,1>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE)) ));
  70. CALL_SUBTEST_6(( symm<double,Dynamic,1>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE)) ));
  71. CALL_SUBTEST_7(( symm<std::complex<float>,Dynamic,1>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE)) ));
  72. CALL_SUBTEST_8(( symm<std::complex<double>,Dynamic,1>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE)) ));
  73. }
  74. }