Skip to content
Snippets Groups Projects
Commit f86b5cc1 authored by Jö Fahlke's avatar Jö Fahlke
Browse files

Merge branch 'bvector-find-std-sqrt' into 'master'

[block_vector_unmanaged] Look for sqrt() in std::, too.

See merge request core/dune-istl!208
parents f2e7c36c dfcb4377
No related branches found
No related tags found
No related merge requests found
......@@ -197,6 +197,7 @@ namespace Imp {
//! two norm sqrt(sum over squared values of entries)
typename FieldTraits<field_type>::real_type two_norm () const
{
using std::sqrt;
typename FieldTraits<field_type>::real_type sum=0;
for (size_type i=0; i<this->n; ++i) sum += (*this)[i].two_norm2();
return sqrt(sum);
......@@ -877,6 +878,7 @@ namespace Imp {
//! two norm sqrt(sum over squared values of entries)
typename FieldTraits<field_type>::real_type two_norm () const
{
using std::sqrt;
typename FieldTraits<field_type>::real_type sum=0;
for (size_type i=0; i<this->n; ++i) sum += (this->p)[i].two_norm2();
return sqrt(sum);
......
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