BdaSolver.hpp: drop indent for namespace

This commit is contained in:
Arne Morten Kvarving 2024-04-16 10:17:37 +02:00
parent 7e1f4629ed
commit e03f2394b9

View File

@ -32,21 +32,20 @@ namespace Opm {
template<class Scalar> class WellContributions;
namespace Accelerator {
enum class SolverStatus {
enum class SolverStatus {
BDA_SOLVER_SUCCESS,
BDA_SOLVER_ANALYSIS_FAILED,
BDA_SOLVER_CREATE_PRECONDITIONER_FAILED,
BDA_SOLVER_UNKNOWN_ERROR
};
/// This class serves to simplify choosing between different backend solvers, such as cusparseSolver and openclSolver
/// This class is abstract, no instantiations can of it can be made, only of its children
template <unsigned int block_size>
class BdaSolver
{
protected:
};
/// This class serves to simplify choosing between different backend solvers, such as cusparseSolver and openclSolver
/// This class is abstract, no instantiations can of it can be made, only of its children
template <unsigned int block_size>
class BdaSolver
{
protected:
// verbosity
// 0: print nothing during solves, only when initializing
// 1: print number of iterations and final norm
@ -68,7 +67,7 @@ namespace Accelerator {
bool initialized = false;
public:
public:
/// Construct a BdaSolver
/// \param[in] linear_solver_verbosity verbosity of solver
/// \param[in] maxit maximum number of iterations for solver
@ -91,7 +90,7 @@ namespace Accelerator {
virtual void get_result(double *x) = 0;
}; // end class BdaSolver
}; // end class BdaSolver
} // namespace Accelerator
} // namespace Opm