Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Eigen/Eigen/Jacobi @ 9562

Last change on this file since 9562 was 9562, checked in by gkronber, 11 years ago

#1967 worked on Gaussian process evolution.

File size: 645 bytes
Line 
1#ifndef EIGEN_JACOBI_MODULE_H
2#define EIGEN_JACOBI_MODULE_H
3
4#include "Core"
5
6#include "src/Core/util/DisableStupidWarnings.h"
7
8/** \defgroup Jacobi_Module Jacobi module
9  * This module provides Jacobi and Givens rotations.
10  *
11  * \code
12  * #include <Eigen/Jacobi>
13  * \endcode
14  *
15  * In addition to listed classes, it defines the two following MatrixBase methods to apply a Jacobi or Givens rotation:
16  *  - MatrixBase::applyOnTheLeft()
17  *  - MatrixBase::applyOnTheRight().
18  */
19
20#include "src/Jacobi/Jacobi.h"
21
22#include "src/Core/util/ReenableStupidWarnings.h"
23
24#endif // EIGEN_JACOBI_MODULE_H
25/* vim: set filetype=cpp et sw=2 ts=2 ai: */
26
Note: See TracBrowser for help on using the repository browser.