From 03bdae9af2c26ea5e3f1351426db9f6b18ff7c04 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Wed, 21 Sep 2016 18:39:20 +0000
Subject: [PATCH] remove debug output files

---
 Mesh/meshGFaceOptimize.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Mesh/meshGFaceOptimize.cpp b/Mesh/meshGFaceOptimize.cpp
index 07e6fdf4bf..ce97fee7dc 100644
--- a/Mesh/meshGFaceOptimize.cpp
+++ b/Mesh/meshGFaceOptimize.cpp
@@ -1297,7 +1297,7 @@ void recombineIntoQuads(GFace *gf,
   double t1 = Cpu();
 
   bool haveParam = true;
-  bool saveAll = CTX::instance()->mesh.saveAll;
+  bool saveAll = false; //CTX::instance()->mesh.saveAll;
   if(gf->geomType() == GEntity::DiscreteSurface && !gf->getCompound())
     haveParam = false;
 
@@ -1400,7 +1400,7 @@ void quadsToTriangles(GFace *gf, double minqual)
 	it != _columns->_elemColumns.end();it++){
     std::vector<MElement *> &e = it->second;
     std::vector<MElement *> eOld = e;
-    e.clear();    
+    e.clear();
     for (unsigned int i=0;i<eOld.size();i++){
       MElement *ee = eOld[i];
       std::map<MElement*, std::pair<MElement*,MElement*> >::iterator it2 = change.find(ee);
-- 
GitLab