// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2008-2012 Bruno Lalande, Paris, France. // Copyright (c) 2009-2012 Mateusz Loskot, London, UK. // This file was modified by Oracle on 2017. // Modifications copyright (c) 2017, Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_STRATEGIES_COMPARE_HPP #define BOOST_GEOMETRY_STRATEGIES_COMPARE_HPP #include #include #include #include #include #include #include #include #include namespace boost { namespace geometry { namespace strategy { namespace compare { struct less { template static inline bool apply(T1 const& l, T2 const& r) { return l < r; } }; struct greater { template static inline bool apply(T1 const& l, T2 const& r) { return l > r; } }; struct equal_to { template static inline bool apply(T1 const& , T2 const& ) { return false; } }; #ifndef DOXYGEN_NO_DETAIL namespace detail { template < typename ComparePolicy, std::size_t Dimension, std::size_t DimensionCount > struct compare_loop { template static inline bool apply(Point1 const& left, Point2 const& right) { typename geometry::coordinate_type::type const& cleft = geometry::get(left); typename geometry::coordinate_type::type const& cright = geometry::get(right); if (math::equals(cleft, cright)) { return compare_loop < ComparePolicy, Dimension + 1, DimensionCount >::apply(left, right); } else { return ComparePolicy::apply(cleft, cright); } } }; template < typename ComparePolicy, std::size_t DimensionCount > struct compare_loop { template static inline bool apply(Point1 const& , Point2 const& ) { // On coming here, points are equal. // Return false for less/greater. return false; } }; template < std::size_t DimensionCount > struct compare_loop { template static inline bool apply(Point1 const& , Point2 const& ) { // On coming here, points are equal. // Return true for equal_to. return true; } }; } // namespace detail #endif // DOXYGEN_NO_DETAIL template < typename ComparePolicy, int Dimension = -1 > struct cartesian { template static inline bool apply(Point1 const& left, Point2 const& right) { return compare::detail::compare_loop < ComparePolicy, Dimension, Dimension + 1 >::apply(left, right); } }; #ifndef DOXYGEN_NO_STRATEGY_SPECIALIZATIONS template < typename ComparePolicy > struct cartesian { template static inline bool apply(Point1 const& left, Point2 const& right) { return compare::detail::compare_loop < ComparePolicy, 0, boost::mpl::min < geometry::dimension, geometry::dimension >::type::value >::apply(left, right); } }; #endif // DOXYGEN_NO_STRATEGY_SPECIALIZATIONS namespace services { template < typename ComparePolicy, typename Point1, typename Point2 = Point1, int Dimension = -1, typename CSTag1 = typename cs_tag::type, typename CSTag2 = typename cs_tag::type > struct default_strategy { BOOST_MPL_ASSERT_MSG ( false, NOT_IMPLEMENTED_FOR_THESE_TYPES, (types) ); }; template struct default_strategy { typedef compare::cartesian type; }; } // namespace services }} // namespace strategy compare }} // namespace boost::geometry #endif // BOOST_GEOMETRY_STRATEGIES_COMPARE_HPP