From 7d984717a3b23a6a82f4ba225194778200f44565 Mon Sep 17 00:00:00 2001
From: LABOURASSE Emmanuel <labourassee@gmail.com>
Date: Fri, 23 Oct 2020 14:22:43 +0200
Subject: [PATCH] cleaning

---
 src/language/algorithms/HeatDiamondAlgorithm.cpp |  1 -
 src/mesh/MeshData.hpp                            | 12 ------------
 2 files changed, 13 deletions(-)

diff --git a/src/language/algorithms/HeatDiamondAlgorithm.cpp b/src/language/algorithms/HeatDiamondAlgorithm.cpp
index 306c31152..3a30d0485 100644
--- a/src/language/algorithms/HeatDiamondAlgorithm.cpp
+++ b/src/language/algorithms/HeatDiamondAlgorithm.cpp
@@ -461,7 +461,6 @@ HeatDiamondScheme<Dimension>::HeatDiamondScheme(
           });
         return computedClj;
       }();
-      std::cout << my_timer.seconds() << "\n";
 
       FaceValue<TinyVector<Dimension>> nlj = [&] {
         FaceValue<TinyVector<Dimension>> computedNlj{mesh->connectivity()};
diff --git a/src/mesh/MeshData.hpp b/src/mesh/MeshData.hpp
index 6d767e6be..502a61c6a 100644
--- a/src/mesh/MeshData.hpp
+++ b/src/mesh/MeshData.hpp
@@ -67,18 +67,6 @@ class MeshData : public IMeshData
           lenght      = l2Norm(normal);
           ll[face_id] = lenght;
         });
-      // parallel_for(
-      //   m_mesh.numberOfFaces(), PUGS_LAMBDA(FaceId face_id) {
-      //     const auto& face_nodes = face_to_node_matrix[face_id];
-
-      //     double lenght = 0;
-      //     for (size_t i_node = 0; i_node < face_nodes.size(); ++i_node) {
-      //       lenght += l2Norm(Nlr(face_id, i_node));
-      //     }
-
-      //     ll[face_id] = lenght;
-      //   });
-
       m_ll = ll;
     }
   }
-- 
GitLab