From f0eb5eb6b1139fcb86d1e192486ae0ad277354aa Mon Sep 17 00:00:00 2001
From: Emilie Sauvage <emilie.sauvage@uclouvain.be>
Date: Mon, 25 Jul 2011 00:09:34 +0000
Subject: [PATCH] disable debug output

---
 Mesh/BackgroundMesh.cpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Mesh/BackgroundMesh.cpp b/Mesh/BackgroundMesh.cpp
index 22f9972245..4db52ed919 100644
--- a/Mesh/BackgroundMesh.cpp
+++ b/Mesh/BackgroundMesh.cpp
@@ -250,7 +250,10 @@ static double LC_MVertex_CURV(GEntity *ge, double U, double V)
 
 static SMetric3 LC_MVertex_CURV_ANISO(GEntity *ge, double U, double V)
 {
+  //std::cout << "I'm in LC_MVertex_CURV_ANISO" << std::endl;
+  //std::cout << "The dimension of the entity is: "<< ge->dim() << std::endl;
   switch(ge->dim()){
+  //std::cout << "The dimension of the entity is: "<< ge->dim() << std::endl;
   case 0: return metric_based_on_surface_curvature((const GVertex *)ge);
   case 1: return metric_based_on_surface_curvature((const GEdge *)ge, U);
   case 2: return metric_based_on_surface_curvature((const GFace *)ge, U, V);
-- 
GitLab