[test][closest_points] Alter error thresholds in pl_l test for msvc-14.1.

This commit is contained in:
Adam Wulkiewicz 2022-01-18 18:16:41 +01:00
parent 5eff2c1829
commit 96da99e5b5

View File

@ -1,9 +1,10 @@
// Boost.Geometry // Boost.Geometry
// Unit Test // Unit Test
// Copyright (c) 2021, Oracle and/or its affiliates. // Copyright (c) 2021-2022, Oracle and/or its affiliates.
// Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
// Licensed under the Boost Software License version 1.0. // Licensed under the Boost Software License version 1.0.
// http://www.boost.org/users/license.html // http://www.boost.org/users/license.html
@ -389,7 +390,7 @@ BOOST_AUTO_TEST_CASE(clostest_path_test_2)
auto point_wkt = "POINT(11.921418190002441406 50.316425323486328125)"; auto point_wkt = "POINT(11.921418190002441406 50.316425323486328125)";
auto segment_wkt = "SEGMENT(11.9214920 50.3161678,11.9212341 50.3161381)"; auto segment_wkt = "SEGMENT(11.9214920 50.3161678,11.9212341 50.3161381)";
closest_path_tester<double>(point_wkt, segment_wkt, 1e-20); closest_path_tester<double>(point_wkt, segment_wkt, 1e-12);
closest_path_tester<long double>(point_wkt, segment_wkt, 1e-8); closest_path_tester<long double>(point_wkt, segment_wkt, 1e-8);
} }
@ -417,7 +418,7 @@ BOOST_AUTO_TEST_CASE(clostest_path_test_5)
auto segment_wkt = "SEGMENT(11.8958402 50.3155918,11.8953426 50.3155504)"; auto segment_wkt = "SEGMENT(11.8958402 50.3155918,11.8953426 50.3155504)";
closest_path_tester<double>(point_wkt, segment_wkt, 1e-6); closest_path_tester<double>(point_wkt, segment_wkt, 1e-6);
closest_path_tester<long double>(point_wkt, segment_wkt, 1e-20); closest_path_tester<long double>(point_wkt, segment_wkt, 1e-6);
} }
BOOST_AUTO_TEST_CASE(clostest_path_test_6) BOOST_AUTO_TEST_CASE(clostest_path_test_6)