Skip to content
Snippets Groups Projects
Commit eebda930 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[A] Add Eigen global setup to NumericsConfig.

parent e387d454
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,18 @@ namespace detail
}
#else // USE_LIS
#ifdef OGS_USE_EIGEN
#include "MathLib/LinAlg/Eigen/EigenVector.h"
#include "MathLib/LinAlg/Eigen/EigenMatrix.h"
#include "MathLib/LinAlg/Eigen/EigenLinearSolver.h"
namespace detail
{
using GlobalVectorType = MathLib::EigenVector;
using GlobalMatrixType = MathLib::EigenMatrix;
using LinearSolverType = MathLib::EigenLinearSolver;
}
#else // OGS_USE_EIGEN
#include "MathLib/LinAlg/Dense/DenseVector.h"
#include "MathLib/LinAlg/Dense/GlobalDenseMatrix.h"
#include "MathLib/LinAlg/Solvers/GaussAlgorithm.h"
......@@ -51,6 +63,7 @@ namespace detail
}
#endif // USE_LIS
#endif // OGS_USE_EIGEN
//
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment