Skip to content
Snippets Groups Projects
Commit a451c53a authored by Tom Fischer's avatar Tom Fischer
Browse files

[MeL] Namespace std before sqrt.

parent 1f35cc6d
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ const unsigned LineRule2::edge_nodes[1][2] = ...@@ -21,7 +21,7 @@ const unsigned LineRule2::edge_nodes[1][2] =
double LineRule2::computeVolume(Node const* const* _nodes) double LineRule2::computeVolume(Node const* const* _nodes)
{ {
return sqrt(MathLib::sqrDist(*_nodes[0], *_nodes[1])); return std::sqrt(MathLib::sqrDist(*_nodes[0], *_nodes[1]));
} }
bool LineRule2::isPntInElement(Node const* const* nodes, bool LineRule2::isPntInElement(Node const* const* nodes,
......
...@@ -59,7 +59,7 @@ std::size_t ElementSizeMetric::calc1dQuality() ...@@ -59,7 +59,7 @@ std::size_t ElementSizeMetric::calc1dQuality()
double area(std::numeric_limits<double>::max()); double area(std::numeric_limits<double>::max());
_element_quality_metric[k] = elements[k]->getContent(); _element_quality_metric[k] = elements[k]->getContent();
if (_element_quality_metric[k] < if (_element_quality_metric[k] <
sqrt(fabs(std::numeric_limits<double>::epsilon()))) std::sqrt(fabs(std::numeric_limits<double>::epsilon())))
{ {
error_count++; error_count++;
} }
......
...@@ -36,7 +36,7 @@ void RadiusEdgeRatioMetric::calculateQuality () ...@@ -36,7 +36,7 @@ void RadiusEdgeRatioMetric::calculateQuality ()
std::copy_n(elem.getNodes(), n_nodes, pnts.begin()); std::copy_n(elem.getNodes(), n_nodes, pnts.begin());
GeoLib::MinimalBoundingSphere const s(pnts); GeoLib::MinimalBoundingSphere const s(pnts);
auto const& [min, max] = computeSqrEdgeLengthRange(elem); auto const& [min, max] = computeSqrEdgeLengthRange(elem);
_element_quality_metric[k] = sqrt(min)/(2*s.getRadius()); _element_quality_metric[k] = std::sqrt(min) / (2 * s.getRadius());
} }
} }
......
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