From 0ced864015be2799c4226b3603dee1af98fcf3e2 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Thu, 28 Feb 2013 03:28:39 +0000 Subject: [PATCH] fix stats --- Mesh/Generator.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Mesh/Generator.cpp b/Mesh/Generator.cpp index 594c21fa3b..0284ad1365 100644 --- a/Mesh/Generator.cpp +++ b/Mesh/Generator.cpp @@ -286,7 +286,6 @@ void GetStatistics(double stat[50], double quality[4][100]) stat[17] = gamma / N ; stat[18] = gammaMin; stat[19] = gammaMax; stat[20] = eta / N ; stat[21] = etaMin; stat[22] = etaMax; stat[23] = rho / N ; stat[24] = rhoMin; stat[25] = rhoMax; - stat[45] = jmin; stat[46] = jmax; stat[46] = disto / N ; stat[47] = distoMin; stat[48] = distoMax; } } @@ -586,8 +585,8 @@ static void Mesh3D(GModel *m) } } } - - for(unsigned int i = 0; i < connected.size(); i++){ + + for(unsigned int i = 0; i < connected.size(); i++){ MeshDelaunayVolume(connected[i]); //Additional code for hex mesh begin @@ -599,7 +598,7 @@ static void Mesh3D(GModel *m) f.treat_region(gr); } //Recombine3D into hex - if(CTX::instance()->mesh.recombine3DAll || gr->meshAttributes.recombine3D){ + if(CTX::instance()->mesh.recombine3DAll || gr->meshAttributes.recombine3D){ Recombinator rec; rec.execute(); Supplementary sup; -- GitLab