Skip to content
Snippets Groups Projects
Commit 9e5c105b authored by Sreejith Pulloor Kuttanikkad's avatar Sreejith Pulloor Kuttanikkad
Browse files

bug fix: a break statement missed

[[Imported from SVN: r2923]]
parent 6afa8f98
No related branches found
No related tags found
No related merge requests found
......@@ -854,6 +854,7 @@ namespace Dune
bb[0][2]=0.0;
bb[1][2]=0.0;
bb[2][2]=0.0;
break;
case 3 :
//--interpolation point associated with shape fn
pos[0]=0.0;
......@@ -1179,7 +1180,7 @@ namespace Dune
{
ReferenceSimplex<C,3> tetrahed;
int j=0;
for (int c=3; c>=1; --c)
for (int c=3; c>=2; --c)
for(int e=0; e<tetrahed.size(c); ++e)
{
sf[j] = Imp(j,e,c);
......
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