Skip to content
Snippets Groups Projects
Unverified Commit 4784175c authored by Lars Bilke's avatar Lars Bilke Committed by GitHub
Browse files

Merge pull request #2604 from norihiro-w/fix-LIE-HM-line3

[LIE] bugfix. line3 should be included also in 2D
parents f11a8b7d 2075472a
No related branches found
No related tags found
No related merge requests found
...@@ -195,7 +195,7 @@ public: ...@@ -195,7 +195,7 @@ public:
// /// Lines /////////////////////////////////// // /// Lines ///////////////////////////////////
// /// Lines /////////////////////////////////// // /// Lines ///////////////////////////////////
#if OGS_MAX_ELEMENT_DIM >= 3 && OGS_MAX_ELEMENT_ORDER >= 2 #if OGS_MAX_ELEMENT_DIM >= 2 && OGS_MAX_ELEMENT_ORDER >= 2
_builder[std::type_index(typeid(MeshLib::Line3))] = _builder[std::type_index(typeid(MeshLib::Line3))] =
makeLocalAssemblerBuilder<NumLib::ShapeLine3>(); makeLocalAssemblerBuilder<NumLib::ShapeLine3>();
#endif #endif
......
...@@ -224,7 +224,7 @@ public: ...@@ -224,7 +224,7 @@ public:
makeLocalAssemblerBuilder<NumLib::ShapeLine2>(); makeLocalAssemblerBuilder<NumLib::ShapeLine2>();
#endif #endif
#if OGS_MAX_ELEMENT_DIM >= 3 && OGS_MAX_ELEMENT_ORDER >= 2 #if OGS_MAX_ELEMENT_DIM >= 2 && OGS_MAX_ELEMENT_ORDER >= 2
_builder[std::type_index(typeid(MeshLib::Line3))] = _builder[std::type_index(typeid(MeshLib::Line3))] =
makeLocalAssemblerBuilder<NumLib::ShapeLine3>(); makeLocalAssemblerBuilder<NumLib::ShapeLine3>();
#endif #endif
......
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