1// Boost.Geometry (aka GGL, Generic Geometry Library)
2
3// Copyright (c) 2021 Barend Gehrels, Amsterdam, the Netherlands.
4
5// Licensed under the Boost Software License version 1.0.
6// http://www.boost.org/users/license.html
7
8
9#ifndef BOOST_GEOMETRY_TEST_INTERSECTION_ALTERNATIVE_ROBUSTNESS_STRATEGY_HPP
10#define BOOST_GEOMETRY_TEST_INTERSECTION_ALTERNATIVE_ROBUSTNESS_STRATEGY_HPP
11
12#include <boost/geometry/strategies/relate/cartesian.hpp>
13
14
15template <typename SideStrategy>
16class alternative_robustness_strategy
17 : public bg::strategies::relate::cartesian<>
18{
19public:
20 static auto side()
21 {
22 return SideStrategy();
23 }
24};
25
26
27#endif // BOOST_GEOMETRY_TEST_INTERSECTION_ALTERNATIVE_ROBUSTNESS_STRATEGY_HPP
28

source code of boost/libs/geometry/test/algorithms/set_operations/alternative_robustness_strategy.hpp