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

[NL] Add GlobalDimVectorType to matrix policies.

parent 74644935
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,7 @@ struct EigenFixedShapeMatrixPolicy
using DimMatrixType = MatrixType<ShapeFunction::DIM, ShapeFunction::DIM>;
using GlobalDimNodalMatrixType = MatrixType<GlobalDim, ShapeFunction::NPOINTS>;
using GlobalDimMatrixType = MatrixType<GlobalDim, GlobalDim>;
using GlobalDimVectorType = VectorType<GlobalDim>;
using ShapeMatrices =
NumLib::ShapeMatrices<
......@@ -107,6 +108,7 @@ struct EigenDynamicShapeMatrixPolicy
using DimMatrixType = MatrixType<0,0>;
using GlobalDimNodalMatrixType = MatrixType<0,0>;
using GlobalDimMatrixType = MatrixType<0,0>;
using GlobalDimVectorType = VectorType<0>;
using ShapeMatrices =
NumLib::ShapeMatrices<
......
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