Commit fdafec9f authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Cleaned up linear solvers and preconditioners

Mostly file renaming, also removed useless #includes.
parent a234f9e5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,4 +52,4 @@ protected:
} // namespace Solvers
} // namespace TNL

#include <TNL/Solvers/Linear/BICGStab_impl.h>
#include "BICGStab.hpp"
+1 −1
Original line number Diff line number Diff line
/***************************************************************************
                          BICGStab_impl.h  -  description
                          BICGStab.hpp  -  description
                             -------------------
    begin                : 2007/07/31
    copyright            : (C) 2007 by Tomas Oberhuber
+1 −1
Original line number Diff line number Diff line
@@ -102,4 +102,4 @@ protected:
} // namespace Solvers
} // namespace TNL

#include <TNL/Solvers/Linear/BICGStabL_impl.h>
#include "BICGStabL.hpp"
+1 −1
Original line number Diff line number Diff line
/***************************************************************************
                          BICGStabL.h  -  description
                          BICGStabL.hpp  -  description
                             -------------------
    begin                : Jul 4, 2017
    copyright            : (C) 2017 by Tomas Oberhuber et al.
+1 −3
Original line number Diff line number Diff line
@@ -12,8 +12,6 @@

#include "LinearSolver.h"

#include <TNL/Containers/Vector.h>

namespace TNL {
namespace Solvers {
namespace Linear {
@@ -43,4 +41,4 @@ protected:
} // namespace Solvers
} // namespace TNL

#include <TNL/Solvers/Linear/CG_impl.h>
#include "CG.hpp"
Loading