From 29464cd832c0df798dc1907c5442102ed770f887 Mon Sep 17 00:00:00 2001 From: Markus Blatt Date: Wed, 6 Feb 2019 10:37:35 +0100 Subject: [PATCH] Remove bogus debug output printing in MILU. Somehow some standard output when running MILU () is still there and it really clutters the output and and makes it unusable. This commit removes it from flow. --- opm/autodiff/ParallelOverlappingILU0.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/opm/autodiff/ParallelOverlappingILU0.hpp b/opm/autodiff/ParallelOverlappingILU0.hpp index 9b63dbba4..3e0ee4347 100644 --- a/opm/autodiff/ParallelOverlappingILU0.hpp +++ b/opm/autodiff/ParallelOverlappingILU0.hpp @@ -306,8 +306,6 @@ namespace Opm for(const auto& entry: sum_dropped) { auto& bdiag = (*a_ik)[index][index]; - if(entry<0) - std::cout << entry << std::endl; bdiag += signFunctor(bdiag) * entry; ++index; }