From 6915bdef064012f260325ab05abc7409b27035a3 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Mon, 6 Jan 2014 15:00:21 +0000 Subject: [PATCH] pp --- Post/PViewDataGModelIO.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Post/PViewDataGModelIO.cpp b/Post/PViewDataGModelIO.cpp index 317a872e0e..076b3a021f 100644 --- a/Post/PViewDataGModelIO.cpp +++ b/Post/PViewDataGModelIO.cpp @@ -334,7 +334,6 @@ void PViewDataGModel::importLists(int N[24], std::vector<double> *V[24]) int stride = list->size() / nbe; int numSteps = (stride - 1) / nc / nn; for(int step = 0; step < numSteps; step++){ - printf("creating step %d\n", step); _steps.push_back(new stepData<double>(GModel::current(), nc)); _steps[step]->fillEntities(); _steps[step]->computeBoundingBox(); @@ -343,11 +342,9 @@ void PViewDataGModel::importLists(int N[24], std::vector<double> *V[24]) for(unsigned int j = 0; j < list->size(); j += stride){ double *tmp = &(*list)[j]; int num = (int)tmp[0]; - printf("importing ele %d\n", num); double *d = _steps[step]->getData(num, true, nn); for(int k = 0; k < nc * nn; k++){ d[k] = tmp[1 + nc * nn * step + k]; - printf(" val[%d]=%g\n", k, d[k]); } } } @@ -356,7 +353,6 @@ void PViewDataGModel::importLists(int N[24], std::vector<double> *V[24]) finalize(); } - #if defined(HAVE_MED) extern "C" { -- GitLab