Ignore:
Timestamp:
04/16/14 10:31:31 (11 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing indices of tetra base that need to be direct

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/gauss/GaussTetra.cpp

    r17490 r17750  
    5353                for(int i=0;i<numgauss;i++) coords4[i]=0.;
    5454        }
    55         else if(index1==0 && index2==1 && index3==3){
     55        else if(index1==0 && index2==3 && index3==1){
    5656                GaussLegendreTria(&numgauss,&coords1,&coords2,&coords4,&weights,order);
    5757                coords3=xNew<IssmDouble>(numgauss);
    5858                for(int i=0;i<numgauss;i++) coords3[i]=0.;
    5959        }
    60         else if(index1==1 && index2==2 && index3==3){
     60        else if(index1==1 && index2==3 && index3==2){
    6161                GaussLegendreTria(&numgauss,&coords2,&coords3,&coords4,&weights,order);
    6262                coords1=xNew<IssmDouble>(numgauss);
    6363                for(int i=0;i<numgauss;i++) coords1[i]=0.;
    6464        }
    65         else if(index1==2 && index2==0 && index3==3){
     65        else if(index1==0 && index2==2 && index3==3){
    6666                GaussLegendreTria(&numgauss,&coords1,&coords3,&coords4,&weights,order);
    6767                coords2=xNew<IssmDouble>(numgauss);
Note: See TracChangeset for help on using the changeset viewer.