[test][algorithms][difference][L/L] increase the precision tolerance from EPS to 4*EPS for two test cases

This commit is contained in:
Menelaos Karavelas 2015-06-22 15:14:38 +03:00
parent a0ca615051
commit 6cc42c5dc5

View File

@ -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