clean a bit the parallelizer

This commit is contained in:
Gael Guennebaud
2010-02-22 11:08:37 +01:00
parent b20935be9b
commit 3e62fafce8
3 changed files with 71 additions and 42 deletions

View File

@@ -89,6 +89,14 @@
#endif
#endif
#ifdef _OPENMP
#define EIGEN_HAS_OPENMP
#endif
#ifdef EIGEN_HAS_OPENMP
#include <omp.h>
#endif
#include <cstdlib>
#include <cmath>
#include <complex>
@@ -209,6 +217,7 @@ struct Dense {};
#include "src/Core/TriangularMatrix.h"
#include "src/Core/SelfAdjointView.h"
#include "src/Core/SolveTriangular.h"
#include "src/Core/products/Parallelizer.h"
#include "src/Core/products/CoeffBasedProduct.h"
#include "src/Core/products/GeneralBlockPanelKernel.h"
#include "src/Core/products/GeneralMatrixVector.h"