Skip to content
Snippets Groups Projects
Commit 2c2cc824 authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[test][newton] use norm() of linear solver

parent 1d5cea08
No related branches found
No related tags found
1 merge request!2291Feature/newton variables backend
......@@ -2,6 +2,7 @@
#include <iostream>
#include <cmath>
#include <cassert>
#include <iomanip>
#include <dune/common/exceptions.hh>
......@@ -60,12 +61,6 @@ public:
ResidualType& residual() { return res_; }
double residualNorm(const ResidualType& sol)
{
assembleResidual(sol);
return res_[0];
}
private:
JacobianMatrix jac_;
ResidualType res_;
......@@ -77,11 +72,19 @@ public:
void setResidualReduction(double residualReduction) {}
template<class Vector>
bool solve (const double& A, Vector& x, const Vector& b) const
bool solve(const double& A, Vector& x, const Vector& b) const
{
x[0] = b[0]/A;
return true;
}
double norm(const Dune::BlockVector<double>& residual) const
{
assert(residual.size() == 1);
using std::abs;
return abs(residual[0]);
}
};
} // end namespace Dumux
......
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