Skip to content

remove CountType template parameter from IterativeSolver and move it to Iteration

Nils-Arne Dreier requested to merge fix_IterativeSolver_CountType into master

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.

Merge request reports