From 185c6e7594db201f702fe70167af9a483c0bef2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Pa=C4=91en?= <49401914+ipadjen@users.noreply.github.com> Date: Fri, 22 Sep 2023 07:15:38 -0600 Subject: [PATCH] Update Polygon_mesh_processing/test/Polygon_mesh_processing/remeshing_quality_test.cpp Co-authored-by: Andreas Fabri --- .../test/Polygon_mesh_processing/remeshing_quality_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/test/Polygon_mesh_processing/remeshing_quality_test.cpp b/Polygon_mesh_processing/test/Polygon_mesh_processing/remeshing_quality_test.cpp index f07d4c027f47..a6216663596f 100644 --- a/Polygon_mesh_processing/test/Polygon_mesh_processing/remeshing_quality_test.cpp +++ b/Polygon_mesh_processing/test/Polygon_mesh_processing/remeshing_quality_test.cpp @@ -45,7 +45,7 @@ int main(int argc, char* argv[]) std::cout << "Remeshing done, checking triangle quality...\n" << std::endl; double qmin = (std::numeric_limits::max)(); // minimum triangle quality double qavg = 0.; // average quality - double min_angle = std::numeric_limits::max(); // minimum angle + double min_angle = (std::numeric_limits::max)(); // minimum angle double avg_min_angle = 0.; // average minimum angle for (auto face : mesh.faces()) {