Skip to content
Snippets Groups Projects
Commit dbff8c08 authored by Jonathan Lambrechts's avatar Jonathan Lambrechts
Browse files

dg : try to fix Axel compilation problem

parent a1a0ee07
No related branches found
No related tags found
No related merge requests found
...@@ -97,6 +97,10 @@ class polynomialBasis ...@@ -97,6 +97,10 @@ class polynomialBasis
{ {
return closures[id]; return closures[id];
} }
inline const std::vector<int> &getFullClosure(int id) const
{
return fullClosures[id];
}
inline int getClosureId(int iEl, int iSign=1, int iRot=0) const inline int getClosureId(int iEl, int iSign=1, int iRot=0) const
{ {
return iEl + numFaces*(iSign == 1 ? 0 : 1) + 2*numFaces*iRot; return iEl + numFaces*(iSign == 1 ? 0 : 1) + 2*numFaces*iRot;
......
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