Skip to content
Snippets Groups Projects
Commit e4a7f7e1 authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Christoph Lehmann
Browse files

[AsmL] Add point elements to local asm init.

parent 5ff0cf88
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@
#include "NumLib/Fem/ShapeFunction/ShapeHex8.h"
#include "NumLib/Fem/ShapeFunction/ShapeLine2.h"
#include "NumLib/Fem/ShapeFunction/ShapeLine3.h"
#include "NumLib/Fem/ShapeFunction/ShapePoint1.h"
#include "NumLib/Fem/ShapeFunction/ShapePrism15.h"
#include "NumLib/Fem/ShapeFunction/ShapePrism6.h"
#include "NumLib/Fem/ShapeFunction/ShapePyra13.h"
......@@ -73,6 +74,8 @@ public:
[](){ return new LAData<NumLib::ShapeLine2>; };
_builder[std::type_index(typeid(MeshLib::Line3))] =
[](){ return new LAData<NumLib::ShapeLine3>; };
_builder[std::type_index(typeid(MeshLib::Point))] =
[](){ return new LAData<NumLib::ShapePoint1>; };
_builder[std::type_index(typeid(MeshLib::Prism15))] =
[](){ return new LAData<NumLib::ShapePrism15>; };
_builder[std::type_index(typeid(MeshLib::Prism))] =
......
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