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)
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
#endif // defined(OGS_USE_EIGEN)
......@@ -19,15 +19,18 @@ template<typename Matrix>
struct MatrixVectorTraits;
}
#define SPECIALIZE_MATRIX_VECTOR_TRAITS(MATVEC, IDX) \
template<> struct MatrixVectorTraits<MATVEC> { \
using Index = IDX; \
static std::unique_ptr<MATVEC> newInstance(); \
static std::unique_ptr<MATVEC> newInstance(MATVEC const& A); \
static std::unique_ptr<MATVEC> newInstance(MatrixSpecifications const& spec); \
#define SPECIALIZE_MATRIX_VECTOR_TRAITS(MATVEC, IDX) \
template <> \
struct MatrixVectorTraits<MATVEC> \
{ \
using Index = IDX; \
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
#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