reported by clang-tidy.
part of #9933
VectorMemory<VectorType> &mem,
const AdditionalData & data = AdditionalData());
- /**
- * Virtual destructor.
- */
- virtual ~EigenPower();
/**
* Power method. @p x is the (not necessarily normalized, but nonzero) start
VectorMemory<VectorType> &mem,
const AdditionalData & data = AdditionalData());
-
- /**
- * Virtual destructor.
- */
- virtual ~EigenInverse();
-
/**
* Inverse method. @p value is the start guess for the eigenvalue and @p x
* is the (not necessarily normalized, but nonzero) start vector for the
-template <class VectorType>
-EigenPower<VectorType>::~EigenPower()
-{}
-
-
-
template <class VectorType>
template <typename MatrixType>
void
-template <class VectorType>
-EigenInverse<VectorType>::~EigenInverse()
-{}
-
-
-
template <class VectorType>
template <typename MatrixType>
void
SolverFIRE(SolverControl & solver_control,
const AdditionalData &data = AdditionalData());
- /**
- * Virtual destructor.
- */
- virtual ~SolverFIRE();
-
/**
* Obtain a set of variables @p x that minimize an objective function
* described by the polymorphic function wrapper @p compute, with a given
-template <typename VectorType>
-SolverFIRE<VectorType>::~SolverFIRE()
-{}
-
-
-
template <typename VectorType>
template <typename PreconditionerType>
void
SolverRelaxation(SolverControl & cn,
const AdditionalData &data = AdditionalData());
- /**
- * Virtual destructor.
- */
- virtual ~SolverRelaxation();
-
/**
* Solve the system $Ax = b$ using the relaxation method $x_{k+1} =
* R(x_k,b)$. The matrix <i>A</i> itself is only used to compute the
-template <class VectorType>
-SolverRelaxation<VectorType>::~SolverRelaxation()
-{}
-
-
template <class VectorType>
template <typename MatrixType, class RelaxationType>
void