From 50c248e16ddbee59103914954b58711d0ca781ea Mon Sep 17 00:00:00 2001 From: acrovato <a.crovato@uliege.be> Date: Thu, 24 Mar 2022 17:42:24 +0100 Subject: [PATCH] Format --- dart/src/wAdjoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dart/src/wAdjoint.cpp b/dart/src/wAdjoint.cpp index 8b22008..7023219 100644 --- a/dart/src/wAdjoint.cpp +++ b/dart/src/wAdjoint.cpp @@ -62,7 +62,7 @@ Adjoint::Adjoint(std::shared_ptr<Newton> _sol, std::shared_ptr<tbox::MshDeform> if (sol->linsol->type() == LSOLTYPE::GMRES_ILUT) { // Use the same GMRES, but with a thighter tolerance - std::shared_ptr<Gmres> gmres = std::make_shared<Gmres>(*dynamic_cast<Gmres*>(sol->linsol.get())); + std::shared_ptr<Gmres> gmres = std::make_shared<Gmres>(*dynamic_cast<Gmres *>(sol->linsol.get())); gmres->setTolerance(1e-8); alinsol = gmres; } -- GitLab