From: Martin Kronbichler Date: Sat, 31 May 2025 20:13:00 +0000 (+0200) Subject: Fix Householder test X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18529%2Fhead;p=dealii.git Fix Householder test --- diff --git a/include/deal.II/lac/householder.h b/include/deal.II/lac/householder.h index 14834eeaa9..8913112c38 100644 --- a/include/deal.II/lac/householder.h +++ b/include/deal.II/lac/householder.h @@ -186,7 +186,7 @@ Householder::initialize(const FullMatrix &M) sigma += storage(i, j) * storage(i, j); // We are ready if the column is // empty. Are we? - if (std::fabs(sigma) < 1.e-15) + if (std::abs(sigma) < 1.e-15) return; number2 s;