summaryrefslogtreecommitdiffhomepage
path: root/eigen/Eigen/UmfPackSupport
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-03-03 21:09:10 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-03-03 21:10:13 +0100
commitf0238cfb6997c4acfc2bd200de7295f3fa36968f (patch)
treeb215183760e4f615b9c1dabc1f116383b72a1b55 /eigen/Eigen/UmfPackSupport
parent543edd372a5193d04b3de9f23c176ab439e51b31 (diff)
don't index Eigen
Diffstat (limited to 'eigen/Eigen/UmfPackSupport')
-rw-r--r--eigen/Eigen/UmfPackSupport40
1 files changed, 0 insertions, 40 deletions
diff --git a/eigen/Eigen/UmfPackSupport b/eigen/Eigen/UmfPackSupport
deleted file mode 100644
index 00eec80..0000000
--- a/eigen/Eigen/UmfPackSupport
+++ /dev/null
@@ -1,40 +0,0 @@
-// This file is part of Eigen, a lightweight C++ template library
-// for linear algebra.
-//
-// This Source Code Form is subject to the terms of the Mozilla
-// Public License v. 2.0. If a copy of the MPL was not distributed
-// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-#ifndef EIGEN_UMFPACKSUPPORT_MODULE_H
-#define EIGEN_UMFPACKSUPPORT_MODULE_H
-
-#include "SparseCore"
-
-#include "src/Core/util/DisableStupidWarnings.h"
-
-extern "C" {
-#include <umfpack.h>
-}
-
-/** \ingroup Support_modules
- * \defgroup UmfPackSupport_Module UmfPackSupport module
- *
- * This module provides an interface to the UmfPack library which is part of the <a href="http://www.suitesparse.com">suitesparse</a> package.
- * It provides the following factorization class:
- * - class UmfPackLU: a multifrontal sequential LU factorization.
- *
- * \code
- * #include <Eigen/UmfPackSupport>
- * \endcode
- *
- * 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.
- * The dependencies depend on how umfpack has been compiled.
- * For a cmake based project, you can use our FindUmfPack.cmake module to help you in this task.
- *
- */
-
-#include "src/UmfPackSupport/UmfPackSupport.h"
-
-#include "src/Core/util/ReenableStupidWarnings.h"
-
-#endif // EIGEN_UMFPACKSUPPORT_MODULE_H