Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/eigen3/Eigen/PaStiXSupport 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_PASTIXSUPPORT_MODULE_H
0009 #define EIGEN_PASTIXSUPPORT_MODULE_H
0010 
0011 #include "SparseCore"
0012 
0013 #include "src/Core/util/DisableStupidWarnings.h"
0014 
0015 extern "C" {
0016 #include <pastix_nompi.h>
0017 #include <pastix.h>
0018 }
0019 
0020 #ifdef complex
0021 #undef complex
0022 #endif
0023 
0024 /** \ingroup Support_modules
0025   * \defgroup PaStiXSupport_Module PaStiXSupport module
0026   * 
0027   * This module provides an interface to the <a href="http://pastix.gforge.inria.fr/">PaSTiX</a> library.
0028   * PaSTiX is a general \b supernodal, \b parallel and \b opensource sparse solver.
0029   * It provides the two following main factorization classes:
0030   * - class PastixLLT : a supernodal, parallel LLt Cholesky factorization.
0031   * - class PastixLDLT: a supernodal, parallel LDLt Cholesky factorization.
0032   * - class PastixLU : a supernodal, parallel LU factorization (optimized for a symmetric pattern).
0033   * 
0034   * \code
0035   * #include <Eigen/PaStiXSupport>
0036   * \endcode
0037   *
0038   * In order to use this module, the PaSTiX headers must be accessible from the include paths, and your binary must be linked to the PaSTiX library and its dependencies.
0039   * This wrapper resuires PaStiX version 5.x compiled without MPI support.
0040   * The dependencies depend on how PaSTiX has been compiled.
0041   * For a cmake based project, you can use our FindPaSTiX.cmake module to help you in this task.
0042   *
0043   */
0044 
0045 #include "src/PaStiXSupport/PaStiXSupport.h"
0046 
0047 #include "src/Core/util/ReenableStupidWarnings.h"
0048 
0049 #endif // EIGEN_PASTIXSUPPORT_MODULE_H