From 9060eae91afd0f0dbbb3252651fb6683e7cb76e4 Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Thu, 3 Oct 2024 11:36:44 +0200 Subject: [PATCH] Update src/newton_solver.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Fabian Fröhlich --- src/newton_solver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/newton_solver.cpp b/src/newton_solver.cpp index 3c52f098b7..d22f40b6f3 100644 --- a/src/newton_solver.cpp +++ b/src/newton_solver.cpp @@ -120,7 +120,7 @@ void NewtonSolver::solveLinearSystem(AmiVector& rhs) { } void NewtonSolver::reinitialize() { - // dense solver does not need reinitialization + // direct solvers does not need reinitialization if (auto s = dynamic_cast(linsol_.get())) { try { s->reInit(s->getMatrix().capacity(), SUNKLU_REINIT_PARTIAL);