Skip to content

Commit

Permalink
Patch error in the previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Algiane committed May 24, 2016
1 parent 6562558 commit f689593
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mmg3d/libmmg3d.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ int MMG3D_mmg3dlib(MMG5_pMesh mesh,MMG5_pSol met) {
/* scaling mesh */
if ( !_MMG5_scaleMesh(mesh,met) ) _LIBMMG5_RETURN(mesh,met,MMG5_STRONGFAILURE);

if ( !_MMG3D_meshQua(mesh,met) ) _LIBMMG5_RETURN(MMG5_LOWFAILURE);
if ( !_MMG3D_meshQua(mesh,met) ) _LIBMMG5_RETURN(mesh,met,MMG5_LOWFAILURE);

if ( abs(mesh->info.imprim) > 0 ) {
if ( !_MMG3D_inqua(mesh,met) ) {
Expand Down Expand Up @@ -555,7 +555,7 @@ int MMG3D_mmg3dls(MMG5_pMesh mesh,MMG5_pSol met) {
/* scaling mesh */
if ( !_MMG5_scaleMesh(mesh,met) ) _LIBMMG5_RETURN(mesh,met,MMG5_STRONGFAILURE);

if ( !_MMG3D_meshQua(mesh,met) ) _LIBMMG5_RETURN(MMG5_LOWFAILURE);
if ( !_MMG3D_meshQua(mesh,met) ) _LIBMMG5_RETURN(mesh,met,MMG5_LOWFAILURE);

if ( abs(mesh->info.imprim) > 0 ) {
if ( !_MMG3D_inqua(mesh,met) ) {
Expand Down Expand Up @@ -737,7 +737,7 @@ int MMG3D_mmg3dmov(MMG5_pMesh mesh,MMG5_pSol met, MMG5_pSol disp) {
chrono(ON,&(ctim[2]));
MMG3D_setfunc(mesh,met);

if ( !_MMG3D_meshQua(mesh,met) ) _LIBMMG5_RETURN(MMG5_LOWFAILURE);
if ( !_MMG3D_meshQua(mesh,met) ) _LIBMMG5_RETURN(mesh,met,MMG5_LOWFAILURE);

if ( abs(mesh->info.imprim) > 0 ) {
if ( !_MMG3D_inqua(mesh,met) ) {
Expand Down

0 comments on commit f689593

Please sign in to comment.