|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r75116 - trunk/libs/geometry/test/algorithms
From: barend.gehrels_at_[hidden]
Date: 2011-10-25 15:34:47
Author: barendgehrels
Date: 2011-10-25 15:34:47 EDT (Tue, 25 Oct 2011)
New Revision: 75116
URL: http://svn.boost.org/trac/boost/changeset/75116
Log:
Fixed order-problem by avoiding argument reversion. See correspondence on GGL mailing list 2011/10/25 --> fixed testcase
Text files modified:
trunk/libs/geometry/test/algorithms/difference.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/geometry/test/algorithms/difference.cpp
==============================================================================
--- trunk/libs/geometry/test/algorithms/difference.cpp (original)
+++ trunk/libs/geometry/test/algorithms/difference.cpp 2011-10-25 15:34:47 EDT (Tue, 25 Oct 2011)
@@ -293,10 +293,10 @@
test_one<polygon, box, mp>("simplex_multi_box_mp",
clip, case_multi_simplex[0],
- 3, 11, 4.53333, 3, 11, 8.53333);
+ 2, 11, 0.53333333333, 3, 11, 8.53333333333);
test_one<polygon, mp, box>("simplex_multi_mp_box",
case_multi_simplex[0], clip,
- 3, 11, 8.53333, 3, 11, 4.53333);
+ 3, 11, 8.53333333333, 2, 11, 0.53333333333);
}
/***
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk