From 7acc6feb189f9f6eb1cb94c5fa0f2cbe07682041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Tue, 28 Feb 2023 13:58:02 +0100 Subject: [PATCH] Make names more consistent. --- opm/simulators/linalg/ISTLSolverEbos.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opm/simulators/linalg/ISTLSolverEbos.hpp b/opm/simulators/linalg/ISTLSolverEbos.hpp index d13048443..c181bb74e 100644 --- a/opm/simulators/linalg/ISTLSolverEbos.hpp +++ b/opm/simulators/linalg/ISTLSolverEbos.hpp @@ -237,7 +237,7 @@ std::unique_ptr blockJacobiAdjacency(const Grid& grid, converged_(false), matrix_() { - OPM_TIMEBLOCK(istlSolverEbos); + OPM_TIMEBLOCK(IstlSolverEbos); const bool on_io_rank = (simulator.gridView().comm().rank() == 0); #if HAVE_MPI comm_.reset( new CommunicationType( simulator_.vanguard().grid().comm() ) ); @@ -452,7 +452,7 @@ std::unique_ptr blockJacobiAdjacency(const Grid& grid, void prepareFlexibleSolver() { - OPM_TIMEBLOCK(prepareFlexibleSolver); + OPM_TIMEBLOCK(flexibleSolverPrepare); if (shouldCreateSolver()) { std::function trueFunc = [this]