From 747706230faa34f617e5bc7cfb8ae7ac1f9bf161 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Mon, 5 Apr 2021 09:37:21 +0200 Subject: [PATCH] Remove debug output --- .../deal.II/multigrid/mg_transfer_global_coarsening.templates.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h b/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h index 3c722b95d9..8f01b5462e 100644 --- a/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h +++ b/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h @@ -2139,7 +2139,6 @@ MGTwoLevelTransfer>::prolongate( const bool fine_vectors_are_compatible = this->vec_fine.get_partitioner()->is_globally_compatible( *dst.get_partitioner()); - std::cout << static_cast(fine_vectors_are_compatible) << std::endl; const auto vec_fine_ptr = fine_vectors_are_compatible ? &dst : &this->vec_fine; @@ -2321,7 +2320,6 @@ MGTwoLevelTransfer>:: const bool fine_vectors_are_compatible = this->vec_fine.get_partitioner()->is_globally_compatible( *src.get_partitioner()); - std::cout << static_cast(fine_vectors_are_compatible) << std::endl; const auto vec_fine_ptr = fine_vectors_are_compatible ? &src : &this->vec_fine; -- 2.39.5