| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  | // This file is part of Eigen, a lightweight C++ template library
 | 
					
						
							|  |  |  | // for linear algebra.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Copyright (C) 2009 Benoit Jacob <jacob.benoit.1@gmail.com>
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											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-11-23 23:13:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "main.h"
 | 
					
						
							|  |  |  | #include <Eigen/LU>
 | 
					
						
							|  |  |  | #include <algorithm>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename MatrixType> | 
					
						
							|  |  |  | void inverse_permutation_4x4() { | 
					
						
							|  |  |  |   Vector4i indices(0, 1, 2, 3); | 
					
						
							|  |  |  |   for (int i = 0; i < 24; ++i) { | 
					
						
							|  |  |  |     MatrixType m = PermutationMatrix<4>(indices); | 
					
						
							|  |  |  |     MatrixType inv = m.inverse(); | 
					
						
							| 
									
										
										
										
											2022-01-22 07:49:18 +08:00
										 |  |  |     VERIFY_IS_APPROX(m * inv, MatrixType::Identity()); | 
					
						
							| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  |     std::next_permutation(indices.data(), indices.data() + 4); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename MatrixType> | 
					
						
							|  |  |  | void inverse_general_4x4(int repeat) { | 
					
						
							| 
									
										
										
										
											2012-11-06 22:25:50 +08:00
										 |  |  |   using std::abs; | 
					
						
							| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  |   typedef typename MatrixType::Scalar Scalar; | 
					
						
							|  |  |  |   double error_sum = 0., error_max = 0.; | 
					
						
							|  |  |  |   for (int i = 0; i < repeat; ++i) { | 
					
						
							|  |  |  |     MatrixType m; | 
					
						
							| 
									
										
										
										
											2021-05-13 23:03:30 +08:00
										 |  |  |     bool is_invertible; | 
					
						
							| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  |     do { | 
					
						
							|  |  |  |       m = MatrixType::Random(); | 
					
						
							| 
									
										
										
										
											2021-05-13 23:03:30 +08:00
										 |  |  |       is_invertible = Eigen::FullPivLU<MatrixType>(m).isInvertible(); | 
					
						
							|  |  |  |     } while (!is_invertible); | 
					
						
							| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  |     MatrixType inv = m.inverse(); | 
					
						
							| 
									
										
										
										
											2021-05-13 23:03:30 +08:00
										 |  |  |     double error = double((m * inv - MatrixType::Identity()).norm()); | 
					
						
							| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  |     error_sum += error; | 
					
						
							| 
									
										
										
										
											2011-08-19 20:18:05 +08:00
										 |  |  |     error_max = (std::max)(error_max, error); | 
					
						
							| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  |   } | 
					
						
							|  |  |  |   std::cerr << "inverse_general_4x4, Scalar = " << type_name<Scalar>() << std::endl; | 
					
						
							|  |  |  |   double error_avg = error_sum / repeat; | 
					
						
							|  |  |  |   EIGEN_DEBUG_VAR(error_avg); | 
					
						
							|  |  |  |   EIGEN_DEBUG_VAR(error_max); | 
					
						
							| 
									
										
										
										
											2010-07-01 07:55:43 +08:00
										 |  |  |   // FIXME that 1.25 used to be a 1.0 until the NumTraits changes on 28 April 2010, what's going wrong??
 | 
					
						
							|  |  |  |   // FIXME that 1.25 used to be 1.2 until we tested gcc 4.1 on 30 June 2010 and got 1.21.
 | 
					
						
							|  |  |  |   VERIFY(error_avg < (NumTraits<Scalar>::IsComplex ? 8.0 : 1.25)); | 
					
						
							| 
									
										
										
										
											2009-12-15 11:47:14 +08:00
										 |  |  |   VERIFY(error_max < (NumTraits<Scalar>::IsComplex ? 64.0 : 20.0)); | 
					
						
							| 
									
										
										
										
											2016-08-31 05:16:38 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     int s = 5;  // internal::random<int>(4,10);
 | 
					
						
							|  |  |  |     int i = 0;  // internal::random<int>(0,s-4);
 | 
					
						
							|  |  |  |     int j = 0;  // internal::random<int>(0,s-4);
 | 
					
						
							|  |  |  |     Matrix<Scalar, 5, 5> mat(s, s); | 
					
						
							|  |  |  |     mat.setRandom(); | 
					
						
							|  |  |  |     MatrixType submat = mat.template block<4, 4>(i, j); | 
					
						
							|  |  |  |     MatrixType mat_inv = mat.template block<4, 4>(i, j).inverse(); | 
					
						
							|  |  |  |     VERIFY_IS_APPROX(mat_inv, submat.inverse()); | 
					
						
							|  |  |  |     mat.template block<4, 4>(i, j) = submat.inverse(); | 
					
						
							|  |  |  |     VERIFY_IS_APPROX(mat_inv, (mat.template block<4, 4>(i, j))); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-17 20:46:15 +08:00
										 |  |  | EIGEN_DECLARE_TEST(prec_inverse_4x4) { | 
					
						
							| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  |   CALL_SUBTEST_1((inverse_permutation_4x4<Matrix4f>())); | 
					
						
							|  |  |  |   CALL_SUBTEST_1((inverse_general_4x4<Matrix4f>(200000 * g_repeat))); | 
					
						
							| 
									
										
										
										
											2016-08-31 05:16:38 +08:00
										 |  |  |   CALL_SUBTEST_1((inverse_general_4x4<Matrix<float, 4, 4, RowMajor> >(200000 * g_repeat))); | 
					
						
							| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   CALL_SUBTEST_2((inverse_permutation_4x4<Matrix<double, 4, 4, RowMajor> >())); | 
					
						
							| 
									
										
										
										
											2016-08-31 05:16:38 +08:00
										 |  |  |   CALL_SUBTEST_2((inverse_general_4x4<Matrix<double, 4, 4, ColMajor> >(200000 * g_repeat))); | 
					
						
							| 
									
										
										
										
											2009-11-23 23:13:21 +08:00
										 |  |  |   CALL_SUBTEST_2((inverse_general_4x4<Matrix<double, 4, 4, RowMajor> >(200000 * g_repeat))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   CALL_SUBTEST_3((inverse_permutation_4x4<Matrix4cf>())); | 
					
						
							|  |  |  |   CALL_SUBTEST_3((inverse_general_4x4<Matrix4cf>(50000 * g_repeat))); | 
					
						
							|  |  |  | } |