From 22434d96311cd8e48157bc36a8b39eb6ee3455b7 Mon Sep 17 00:00:00 2001
From: labourasse <labourassee@gmail.com>
Date: Tue, 21 Feb 2023 14:55:17 +0100
Subject: [PATCH] Before coding for vectors

---
 src/scheme/FluxingAdvectionSolver.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/scheme/FluxingAdvectionSolver.cpp b/src/scheme/FluxingAdvectionSolver.cpp
index e6d79c198..6d54194f1 100644
--- a/src/scheme/FluxingAdvectionSolver.cpp
+++ b/src/scheme/FluxingAdvectionSolver.cpp
@@ -98,8 +98,8 @@ FluxingAdvectionSolver<2>::computeFluxVolume() const
   if (m_new_mesh->shared_connectivity() != m_old_mesh->shared_connectivity()) {
     throw NormalError("Old and new meshes must share the same connectivity");
   }
-  std::cout << " CARRE "
-            << "\n";
+  // std::cout << " CARRE "
+  // << "\n";
   // MeshDataType& old_mesh_data    = MeshDataManager::instance().getMeshData(*m_old_mesh);
   // MeshDataType& new_mesh_data    = MeshDataManager::instance().getMeshData(*m_new_mesh);
   const auto face_to_node_matrix = m_old_mesh->connectivity().faceToNodeMatrix();
@@ -149,7 +149,7 @@ calculateRemapCycles(const std::shared_ptr<const MeshType>& old_mesh,
           total_negative_flux[cell_id] += flux;
         }
       }
-      std::cout << " cell_id " << cell_id << " total_negative_flux " << total_negative_flux[cell_id] << "\n";
+      // std::cout << " cell_id " << cell_id << " total_negative_flux " << total_negative_flux[cell_id] << "\n";
     });
   MeshData<Dimension>& mesh_data   = MeshDataManager::instance().getMeshData(*old_mesh);
   const CellValue<const double> Vj = mesh_data.Vj();
-- 
GitLab