From 7f0ae6a083dafb24b66da29b8d09f6c3ab0bb876 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Fri, 5 Apr 2024 22:22:55 +0200 Subject: [PATCH] Remove debug output --- source/numerics/solution_transfer.cc | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/source/numerics/solution_transfer.cc b/source/numerics/solution_transfer.cc index 9ddf9c72c4..81c87c503e 100644 --- a/source/numerics/solution_transfer.cc +++ b/source/numerics/solution_transfer.cc @@ -585,16 +585,7 @@ SolutionTransfer::interpolate( // We have written into the output vectors. If this was a PETSc vector, for // example, then we need to compress these to make future operations safe: for (auto &vec : all_out) - { - if constexpr (std::is_same>::value) - for (unsigned int i = 0; i < vec.size(); ++i) - std::cout << vec[i] << " "; - std::cout << std::endl; - - vec.compress(VectorOperation::insert); - } + vec.compress(VectorOperation::insert); } -- 2.39.5