Skip to content
Snippets Groups Projects
Commit f89fc01b authored by renchao.lu's avatar renchao.lu
Browse files

[MathLib] Add a new ctor for EigenVector.

parent 8f5ec41c
No related branches found
No related tags found
No related merge requests found
...@@ -139,6 +139,11 @@ newInstance(MatrixSpecifications const& spec) ...@@ -139,6 +139,11 @@ newInstance(MatrixSpecifications const& spec)
return std::make_unique<EigenVector>(spec.nrows); return std::make_unique<EigenVector>(spec.nrows);
} }
std::unique_ptr<EigenVector> MatrixVectorTraits<EigenVector>::newInstance(
Eigen::SparseMatrix<double>::Index const length)
{
return std::make_unique<EigenVector>(length);
}
} // namespace MathLib } // namespace MathLib
#endif // defined(OGS_USE_EIGEN) #endif // defined(OGS_USE_EIGEN)
...@@ -19,15 +19,18 @@ template<typename Matrix> ...@@ -19,15 +19,18 @@ template<typename Matrix>
struct MatrixVectorTraits; struct MatrixVectorTraits;
} }
#define SPECIALIZE_MATRIX_VECTOR_TRAITS(MATVEC, IDX) \ #define SPECIALIZE_MATRIX_VECTOR_TRAITS(MATVEC, IDX) \
template<> struct MatrixVectorTraits<MATVEC> { \ template <> \
using Index = IDX; \ struct MatrixVectorTraits<MATVEC> \
static std::unique_ptr<MATVEC> newInstance(); \ { \
static std::unique_ptr<MATVEC> newInstance(MATVEC const& A); \ using Index = IDX; \
static std::unique_ptr<MATVEC> newInstance(MatrixSpecifications const& spec); \ static std::unique_ptr<MATVEC> newInstance(); \
static std::unique_ptr<MATVEC> newInstance(MATVEC const& A); \
static std::unique_ptr<MATVEC> newInstance( \
MatrixSpecifications const& spec); \
static std::unique_ptr<MATVEC> newInstance(Index const length); \
}; };
#ifdef USE_PETSC #ifdef USE_PETSC
#include "MathLib/LinAlg/PETSc/PETScMatrix.h" #include "MathLib/LinAlg/PETSc/PETScMatrix.h"
......
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