Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/eigen3/Eigen/UmfPackSupport 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_UMFPACKSUPPORT_MODULE_H
0009 #define EIGEN_UMFPACKSUPPORT_MODULE_H
0010 
0011 #include "SparseCore"
0012 
0013 #include "src/Core/util/DisableStupidWarnings.h"
0014 
0015 extern "C" {
0016 #include <umfpack.h>
0017 }
0018 
0019 /** \ingroup Support_modules
0020   * \defgroup UmfPackSupport_Module UmfPackSupport module
0021   *
0022   * This module provides an interface to the UmfPack library which is part of the <a href="http://www.suitesparse.com">suitesparse</a> package.
0023   * It provides the following factorization class:
0024   * - class UmfPackLU: a multifrontal sequential LU factorization.
0025   *
0026   * \code
0027   * #include <Eigen/UmfPackSupport>
0028   * \endcode
0029   *
0030   * In order to use this module, the umfpack headers must be accessible from the include paths, and your binary must be linked to the umfpack library and its dependencies.
0031   * The dependencies depend on how umfpack has been compiled.
0032   * For a cmake based project, you can use our FindUmfPack.cmake module to help you in this task.
0033   *
0034   */
0035 
0036 #include "src/UmfPackSupport/UmfPackSupport.h"
0037 
0038 #include "src/Core/util/ReenableStupidWarnings.h"
0039 
0040 #endif // EIGEN_UMFPACKSUPPORT_MODULE_H