Skip to content
Snippets Groups Projects
Commit f8400b10 authored by Christian Engwer's avatar Christian Engwer
Browse files

[solvers] verbose output destinguishes between int type for iteration and value type

this feature is necessary to keep readable output if we use funny value types, like Vc::double_v
parent 3aed940e
No related branches found
No related tags found
Loading
Loading
  • Markus Blatt @markus.blatt ·
    Owner

    Is this tested? I would have assumed that this breaks the output of BiCGStab where iter is 0, 0.5, 1, ...

  • Yes it is tested and does what you expect. The main thing is that we don't impose any particular type anymore. Actually casting to real_type was the wrong thing anyway. For BiCGStab we currently use a double to count the iterations. Now this double is also used for the output.

  • Markus Blatt @markus.blatt ·
    Owner

    In this case naming the template parameter Int is not very descriptive and causes confusion.

  • I renamed the template paramater to CountType, which is imho less confusing.

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment