Warning, /include/eigen3/Eigen/PardisoSupport is written in an unsupported language. File is not indexed.
0001 // This file is part of Eigen, a lightweight C++ template library
0002 // for linear algebra.
0003 //
0004 // This Source Code Form is subject to the terms of the Mozilla
0005 // Public License v. 2.0. If a copy of the MPL was not distributed
0006 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0007
0008 #ifndef EIGEN_PARDISOSUPPORT_MODULE_H
0009 #define EIGEN_PARDISOSUPPORT_MODULE_H
0010
0011 #include "SparseCore"
0012
0013 #include "src/Core/util/DisableStupidWarnings.h"
0014
0015 #include <mkl_pardiso.h>
0016
0017 /** \ingroup Support_modules
0018 * \defgroup PardisoSupport_Module PardisoSupport module
0019 *
0020 * This module brings support for the Intel(R) MKL PARDISO direct sparse solvers.
0021 *
0022 * \code
0023 * #include <Eigen/PardisoSupport>
0024 * \endcode
0025 *
0026 * In order to use this module, the MKL headers must be accessible from the include paths, and your binary must be linked to the MKL library and its dependencies.
0027 * See this \ref TopicUsingIntelMKL "page" for more information on MKL-Eigen integration.
0028 *
0029 */
0030
0031 #include "src/PardisoSupport/PardisoSupport.h"
0032
0033 #include "src/Core/util/ReenableStupidWarnings.h"
0034
0035 #endif // EIGEN_PARDISOSUPPORT_MODULE_H