Skip to content
Snippets Groups Projects
Commit 874eab6c authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[bugfix] Qualify with namespace std::

parent 1d8e33e8
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -134,7 +134,7 @@ void CGSolver<MatrixType, VectorType>::solve()
normOfOldCorrection = normOfCorrection;
if (!isinf(convRate) && !isnan(convRate)) {
if (!std::isinf(convRate) && !std::isnan(convRate)) {
totalConvRate *= convRate;
this->maxTotalConvRate_ = std::max(this->maxTotalConvRate_, std::pow(totalConvRate, 1/((double)convRateCounter+1)));
convRateCounter++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment