From: Peter Munch Date: Fri, 5 Apr 2024 20:22:55 +0000 (+0200) Subject: Remove debug output X-Git-Tag: v9.6.0-rc1~401^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16859%2Fhead;p=dealii.git Remove debug output --- 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); }