~ubuntu-branches/ubuntu/saucy/blender/saucy-proposed

« back to all changes in this revision

Viewing changes to extern/Eigen3/Eigen/Eigenvalues

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#include "Jacobi"
10
10
#include "Householder"
11
11
#include "LU"
12
 
 
13
 
namespace Eigen {
 
12
#include "Geometry"
14
13
 
15
14
/** \defgroup Eigenvalues_Module Eigenvalues module
16
15
  *
35
34
#include "src/Eigenvalues/ComplexSchur.h"
36
35
#include "src/Eigenvalues/ComplexEigenSolver.h"
37
36
#include "src/Eigenvalues/MatrixBaseEigenvalues.h"
38
 
 
39
 
} // namespace Eigen
 
37
#ifdef EIGEN_USE_LAPACKE
 
38
#include "src/Eigenvalues/RealSchur_MKL.h"
 
39
#include "src/Eigenvalues/ComplexSchur_MKL.h"
 
40
#include "src/Eigenvalues/SelfAdjointEigenSolver_MKL.h"
 
41
#endif
40
42
 
41
43
#include "src/Core/util/ReenableStupidWarnings.h"
42
44