| 
									
										
										
										
											2015-10-26 18:46:05 +08:00
										 |  |  | // This file is part of Eigen, a lightweight C++ template library | 
					
						
							|  |  |  | // for linear algebra. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // 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/. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-04 12:45:59 +08:00
										 |  |  | #ifndef EIGEN_LU_MODULE_H | 
					
						
							|  |  |  | #define EIGEN_LU_MODULE_H | 
					
						
							| 
									
										
										
										
											2008-04-14 16:20:24 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "Core" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-22 22:31:22 +08:00
										 |  |  | #include "src/Core/util/DisableStupidWarnings.h" | 
					
						
							| 
									
										
										
										
											2008-12-19 04:48:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-22 18:54:42 +08:00
										 |  |  | /** \defgroup LU_Module LU module | 
					
						
							| 
									
										
										
										
											2008-08-12 05:26:37 +08:00
										 |  |  |  * This module includes %LU decomposition and related notions such as matrix inversion and determinant. | 
					
						
							| 
									
										
										
										
											2008-07-22 18:54:42 +08:00
										 |  |  |  * This module defines the following MatrixBase methods: | 
					
						
							|  |  |  |  *  - MatrixBase::inverse() | 
					
						
							|  |  |  |  *  - MatrixBase::determinant() | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \code | 
					
						
							|  |  |  |  * #include <Eigen/LU> | 
					
						
							|  |  |  |  * \endcode | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-03 15:18:10 +08:00
										 |  |  | #include "src/misc/Kernel.h" | 
					
						
							|  |  |  | #include "src/misc/Image.h" | 
					
						
							| 
									
										
										
										
											2023-02-09 01:40:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // IWYU pragma: begin_exports | 
					
						
							| 
									
										
										
										
											2009-10-29 06:19:29 +08:00
										 |  |  | #include "src/LU/FullPivLU.h" | 
					
						
							|  |  |  | #include "src/LU/PartialPivLU.h" | 
					
						
							| 
									
										
										
										
											2011-12-09 23:52:37 +08:00
										 |  |  | #ifdef EIGEN_USE_LAPACKE | 
					
						
							| 
									
										
										
										
											2021-12-02 08:10:58 +08:00
										 |  |  | #include "src/misc/lapacke_helpers.h" | 
					
						
							| 
									
										
										
										
											2016-07-26 00:00:47 +08:00
										 |  |  | #include "src/LU/PartialPivLU_LAPACKE.h" | 
					
						
							| 
									
										
										
										
											2011-12-05 15:52:21 +08:00
										 |  |  | #endif | 
					
						
							| 
									
										
										
										
											2008-05-13 05:15:17 +08:00
										 |  |  | #include "src/LU/Determinant.h" | 
					
						
							| 
									
										
										
										
											2014-02-24 18:49:30 +08:00
										 |  |  | #include "src/LU/InverseImpl.h" | 
					
						
							| 
									
										
										
										
											2009-12-15 11:52:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 23:21:01 +08:00
										 |  |  | #if defined EIGEN_VECTORIZE_SSE || defined EIGEN_VECTORIZE_NEON | 
					
						
							| 
									
										
										
										
											2020-11-17 20:27:01 +08:00
										 |  |  | #include "src/LU/arch/InverseSize4.h" | 
					
						
							| 
									
										
										
										
											2020-09-04 18:55:47 +08:00
										 |  |  | #endif | 
					
						
							| 
									
										
										
										
											2023-02-09 01:40:31 +08:00
										 |  |  | // IWYU pragma: end_exports | 
					
						
							| 
									
										
										
										
											2020-09-04 18:55:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-22 22:31:22 +08:00
										 |  |  | #include "src/Core/util/ReenableStupidWarnings.h" | 
					
						
							| 
									
										
										
										
											2008-12-19 04:48:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-04 12:45:59 +08:00
										 |  |  | #endif  // EIGEN_LU_MODULE_H |