SparseLU 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2012 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr>
  5. // Copyright (C) 2012 Gael Guennebaud <gael.guennebaud@inria.fr>
  6. //
  7. // This Source Code Form is subject to the terms of the Mozilla
  8. // Public License v. 2.0. If a copy of the MPL was not distributed
  9. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  10. #ifndef EIGEN_SPARSELU_MODULE_H
  11. #define EIGEN_SPARSELU_MODULE_H
  12. #include "SparseCore"
  13. /**
  14. * \defgroup SparseLU_Module SparseLU module
  15. * This module defines a supernodal factorization of general sparse matrices.
  16. * The code is fully optimized for supernode-panel updates with specialized kernels.
  17. * Please, see the documentation of the SparseLU class for more details.
  18. */
  19. // Ordering interface
  20. #include "OrderingMethods"
  21. #include "src/SparseLU/SparseLU_gemm_kernel.h"
  22. #include "src/SparseLU/SparseLU_Structs.h"
  23. #include "src/SparseLU/SparseLU_SupernodalMatrix.h"
  24. #include "src/SparseLU/SparseLUImpl.h"
  25. #include "src/SparseCore/SparseColEtree.h"
  26. #include "src/SparseLU/SparseLU_Memory.h"
  27. #include "src/SparseLU/SparseLU_heap_relax_snode.h"
  28. #include "src/SparseLU/SparseLU_relax_snode.h"
  29. #include "src/SparseLU/SparseLU_pivotL.h"
  30. #include "src/SparseLU/SparseLU_panel_dfs.h"
  31. #include "src/SparseLU/SparseLU_kernel_bmod.h"
  32. #include "src/SparseLU/SparseLU_panel_bmod.h"
  33. #include "src/SparseLU/SparseLU_column_dfs.h"
  34. #include "src/SparseLU/SparseLU_column_bmod.h"
  35. #include "src/SparseLU/SparseLU_copy_to_ucol.h"
  36. #include "src/SparseLU/SparseLU_pruneL.h"
  37. #include "src/SparseLU/SparseLU_Utils.h"
  38. #include "src/SparseLU/SparseLU.h"
  39. #endif // EIGEN_SPARSELU_MODULE_H