mirror of
https://github.com/boostorg/geometry.git
synced 2025-05-11 21:44:04 +00:00
[test][algorithms][difference][L/L] increase the precision tolerance from EPS to 4*EPS for two test cases
This commit is contained in:
parent
a0ca615051
commit
6cc42c5dc5
@ -552,14 +552,16 @@ BOOST_AUTO_TEST_CASE( test_difference_linestring_linestring )
|
||||
(from_wkt<L>("LINESTRING(8 1, 4 .4,2 8)"),
|
||||
from_wkt<L>("LINESTRING(0 -.2, 8 1)"),
|
||||
from_wkt<ML>("MULTILINESTRING((4 .4,2 8))"),
|
||||
"lldf31x"
|
||||
"lldf31x",
|
||||
4.0 * std::numeric_limits<double>::epsilon()
|
||||
);
|
||||
|
||||
tester::apply
|
||||
(from_wkt<L>("LINESTRING(2 8,4 .4,8 1)"),
|
||||
from_wkt<L>("LINESTRING(0 -.2, 8 1)"),
|
||||
from_wkt<ML>("MULTILINESTRING((2 8,4 .4))"),
|
||||
"lldf31x-r"
|
||||
"lldf31x-r",
|
||||
4.0 * std::numeric_limits<double>::epsilon()
|
||||
);
|
||||
|
||||
tester::apply
|
||||
|
Loading…
x
Reference in New Issue
Block a user