eigen/Eigen/Householder

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
882 B
Plaintext
Raw Permalink Normal View History

// 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 16:06:57 +02:00
#ifndef EIGEN_HOUSEHOLDER_MODULE_H
#define EIGEN_HOUSEHOLDER_MODULE_H
#include "Core"
2011-02-22 09:31:22 -05:00
#include "src/Core/util/DisableStupidWarnings.h"
2009-08-03 16:06:57 +02:00
/** \defgroup Householder_Module Householder module
* This module provides Householder transformations.
2009-08-03 16:06:57 +02:00
*
* \code
* #include <Eigen/Householder>
* \endcode
*/
// IWYU pragma: begin_exports
2009-08-03 16:06:57 +02:00
#include "src/Householder/Householder.h"
#include "src/Householder/HouseholderSequence.h"
#include "src/Householder/BlockHouseholder.h"
// IWYU pragma: end_exports
2009-08-03 16:06:57 +02:00
2011-02-22 09:31:22 -05:00
#include "src/Core/util/ReenableStupidWarnings.h"
2009-08-03 16:06:57 +02:00
#endif // EIGEN_HOUSEHOLDER_MODULE_H