From 6d9ab165835254210fee61ffab926014494f7f30 Mon Sep 17 00:00:00 2001
From: "laura.stengel" <laura.stengel@kit.edu>
Date: Fri, 28 Mar 2025 10:22:46 +0100
Subject: [PATCH] Removed debugging output

---
 src/elasticity/solvers/StaticSolver.cpp | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/elasticity/solvers/StaticSolver.cpp b/src/elasticity/solvers/StaticSolver.cpp
index 96dc52f6..cdaae587 100644
--- a/src/elasticity/solvers/StaticSolver.cpp
+++ b/src/elasticity/solvers/StaticSolver.cpp
@@ -12,16 +12,8 @@ double StaticSolver::calculateResidualUpdate(const IElasticity &assemble, const
   defect = 0;
 
   assemble.Residual(u, defect);
-
-  mout << "Residual u " << endl << u << endl;
-  mout << "Residual d " << endl << defect << endl;
-  mout << "Residual d1 " << endl << defect.norm() << endl;
-  
   defect += *residualMatrix * u;
 
-  mout << "Residual d2 " << endl << defect.norm() << endl;
-
-  
   defect.ClearDirichletValues();
   defect.Collect();
 
-- 
GitLab