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/.
|
|
|
|
|
2009-08-03 22:06:57 +08:00
|
|
|
#ifndef EIGEN_HOUSEHOLDER_MODULE_H
|
|
|
|
#define EIGEN_HOUSEHOLDER_MODULE_H
|
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
2011-02-22 22:31:22 +08:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
2009-08-03 22:06:57 +08:00
|
|
|
|
|
|
|
/** \defgroup Householder_Module Householder module
|
2009-12-08 23:12:27 +08:00
|
|
|
* This module provides Householder transformations.
|
2009-08-03 22:06:57 +08:00
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/Householder>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "src/Householder/Householder.h"
|
2009-09-16 20:35:42 +08:00
|
|
|
#include "src/Householder/HouseholderSequence.h"
|
2010-06-18 00:30:47 +08:00
|
|
|
#include "src/Householder/BlockHouseholder.h"
|
2009-08-03 22:06:57 +08:00
|
|
|
|
2011-02-22 22:31:22 +08:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2009-08-03 22:06:57 +08:00
|
|
|
|
|
|
|
#endif // EIGEN_HOUSEHOLDER_MODULE_H
|
2009-12-02 07:00:29 +08:00
|
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|