Skip to content
Snippets Groups Projects
Commit 3886ccf7 authored by Lukas Renelt's avatar Lukas Renelt Committed by Jö Fahlke
Browse files

[solvers.hh] make use of Dune::isFinite

parent e33b210a
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
#include <dune/common/exceptions.hh>
#include <dune/common/hybridutilities.hh>
#include <dune/common/math.hh>
#include <dune/common/simd/simd.hh>
#include <dune/common/std/type_traits.hh>
#include <dune/common/timer.hh>
......@@ -320,8 +321,6 @@ namespace Dune {
*/
virtual void apply (X& x, X& b, InverseOperatorResult& res)
{
using std::isfinite;
res.clear(); // clear solver statistics
Timer watch; // start a timer
_prec->pre(x,b); // prepare preconditioner
......@@ -332,7 +331,7 @@ namespace Dune {
real_type def0 = _sp->norm(b); // compute norm
if (!Simd::allTrue(isfinite(def0))) // check for inf or NaN
if (!Simd::allTrue(isFinite(def0))) // check for inf or NaN
{
if (_verbose>0)
std::cout << "=== CGSolver: abort due to infinite or NaN initial defect"
......@@ -399,7 +398,7 @@ namespace Dune {
this->printOutput(std::cout,i,defnew,def);
def = defnew; // update norm
if (!Simd::allTrue(isfinite(def))) // check for inf or NaN
if (!Simd::allTrue(isFinite(def))) // check for inf or NaN
{
if (_verbose>0)
std::cout << "=== CGSolver: abort due to infinite or NaN defect"
......
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