From 3c5a971e58f78a5a727b577fc275043ee54d6b36 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Sat, 31 May 2025 22:13:00 +0200 Subject: [PATCH] Fix Householder test --- include/deal.II/lac/householder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5