remove CountType template parameter from IterativeSolver and move it to Iteration
With !284 (merged) we have introduced CountType
as a template argument for IterativeSolver
to handle a different Iteration count type (double
) in the BiCGStabSolver
method. This is unfortunate because now BiCGStabSolver<X,Y>
is not a IterativeSolver<X,Y>
any more. This MR changes this by moving the template argument to the interior Iteration
class.