geometry.index test: removed rtree tests for floats and tt_math.

[SVN r83807]
This commit is contained in:
Adam Wulkiewicz
2013-04-08 11:04:40 +00:00
parent 54b351d0db
commit e03e890d22
50 changed files with 2 additions and 1034 deletions

View File

@@ -20,18 +20,6 @@ test-suite boost-geometry-index-rtree-generated
[ run rtree_b2d_quadratic_dyn.cpp ]
[ run rtree_p2d_rstar_dyn.cpp ]
[ run rtree_b2d_rstar_dyn.cpp ]
[ run rtree_p2f_linear.cpp ]
[ run rtree_b2f_linear.cpp ]
[ run rtree_p2f_quadratic.cpp ]
[ run rtree_b2f_quadratic.cpp ]
[ run rtree_p2f_rstar.cpp ]
[ run rtree_b2f_rstar.cpp ]
[ run rtree_p2f_linear_dyn.cpp ]
[ run rtree_b2f_linear_dyn.cpp ]
[ run rtree_p2f_quadratic_dyn.cpp ]
[ run rtree_b2f_quadratic_dyn.cpp ]
[ run rtree_p2f_rstar_dyn.cpp ]
[ run rtree_b2f_rstar_dyn.cpp ]
[ run rtree_p2i_linear.cpp ]
[ run rtree_b2i_linear.cpp ]
[ run rtree_p2i_quadratic.cpp ]
@@ -44,18 +32,6 @@ test-suite boost-geometry-index-rtree-generated
[ run rtree_b2i_quadratic_dyn.cpp ]
[ run rtree_p2i_rstar_dyn.cpp ]
[ run rtree_b2i_rstar_dyn.cpp ]
[ run rtree_p2tt_linear.cpp ]
[ run rtree_b2tt_linear.cpp ]
[ run rtree_p2tt_quadratic.cpp ]
[ run rtree_b2tt_quadratic.cpp ]
[ run rtree_p2tt_rstar.cpp ]
[ run rtree_b2tt_rstar.cpp ]
[ run rtree_p2tt_linear_dyn.cpp ]
[ run rtree_b2tt_linear_dyn.cpp ]
[ run rtree_p2tt_quadratic_dyn.cpp ]
[ run rtree_b2tt_quadratic_dyn.cpp ]
[ run rtree_p2tt_rstar_dyn.cpp ]
[ run rtree_b2tt_rstar_dyn.cpp ]
[ run rtree_p3d_linear.cpp ]
[ run rtree_b3d_linear.cpp ]
[ run rtree_p3d_quadratic.cpp ]
@@ -68,18 +44,6 @@ test-suite boost-geometry-index-rtree-generated
[ run rtree_b3d_quadratic_dyn.cpp ]
[ run rtree_p3d_rstar_dyn.cpp ]
[ run rtree_b3d_rstar_dyn.cpp ]
[ run rtree_p3f_linear.cpp ]
[ run rtree_b3f_linear.cpp ]
[ run rtree_p3f_quadratic.cpp ]
[ run rtree_b3f_quadratic.cpp ]
[ run rtree_p3f_rstar.cpp ]
[ run rtree_b3f_rstar.cpp ]
[ run rtree_p3f_linear_dyn.cpp ]
[ run rtree_b3f_linear_dyn.cpp ]
[ run rtree_p3f_quadratic_dyn.cpp ]
[ run rtree_b3f_quadratic_dyn.cpp ]
[ run rtree_p3f_rstar_dyn.cpp ]
[ run rtree_b3f_rstar_dyn.cpp ]
[ run rtree_p3i_linear.cpp ]
[ run rtree_b3i_linear.cpp ]
[ run rtree_p3i_quadratic.cpp ]
@@ -92,17 +56,5 @@ test-suite boost-geometry-index-rtree-generated
[ run rtree_b3i_quadratic_dyn.cpp ]
[ run rtree_p3i_rstar_dyn.cpp ]
[ run rtree_b3i_rstar_dyn.cpp ]
[ run rtree_p3tt_linear.cpp ]
[ run rtree_b3tt_linear.cpp ]
[ run rtree_p3tt_quadratic.cpp ]
[ run rtree_b3tt_quadratic.cpp ]
[ run rtree_p3tt_rstar.cpp ]
[ run rtree_b3tt_rstar.cpp ]
[ run rtree_p3tt_linear_dyn.cpp ]
[ run rtree_b3tt_linear_dyn.cpp ]
[ run rtree_p3tt_quadratic_dyn.cpp ]
[ run rtree_b3tt_quadratic_dyn.cpp ]
[ run rtree_p3tt_rstar_dyn.cpp ]
[ run rtree_b3tt_rstar_dyn.cpp ]
;

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::linear<8, 3>());
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_linear(8, 3));
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::quadratic<8, 3>());
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_quadratic(8, 3));
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::rstar<8, 3>());
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_rstar(8, 3));
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::linear<8, 3>());
#endif
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_linear(8, 3));
#endif
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::quadratic<8, 3>());
#endif
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_quadratic(8, 3));
#endif
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::rstar<8, 3>());
#endif
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_rstar(8, 3));
#endif
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::linear<8, 3>());
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_linear(8, 3));
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::quadratic<8, 3>());
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_quadratic(8, 3));
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::rstar<8, 3>());
return 0;
}

View File

@@ -1,20 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_rstar(8, 3));
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::linear<8, 3>());
#endif
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_linear(8, 3));
#endif
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::quadratic<8, 3>());
#endif
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_quadratic(8, 3));
#endif
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::rstar<8, 3>());
#endif
return 0;
}

View File

@@ -1,22 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_rstar(8, 3));
#endif
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::linear<8, 3>());
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_linear(8, 3));
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::quadratic<8, 3>());
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_quadratic(8, 3));
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::rstar<8, 3>());
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_rstar(8, 3));
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::linear<8, 3>());
#endif
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_linear(8, 3));
#endif
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::quadratic<8, 3>());
#endif
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_quadratic(8, 3));
#endif
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::rstar<8, 3>());
#endif
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_rstar(8, 3));
#endif
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::linear<8, 3>());
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_linear(8, 3));
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::quadratic<8, 3>());
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_quadratic(8, 3));
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::rstar<8, 3>());
return 0;
}

View File

@@ -1,19 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
typedef bg::model::point<float, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_rstar(8, 3));
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::linear<8, 3>());
#endif
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_linear(8, 3));
#endif
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::quadratic<8, 3>());
#endif
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_quadratic(8, 3));
#endif
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::rstar<8, 3>());
#endif
return 0;
}

View File

@@ -1,21 +0,0 @@
// Boost.Geometry Index
// Unit Test
// Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
// 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)
#include <rtree/test_rtree.hpp>
#include <boost/geometry/geometries/point.hpp>
int test_main(int, char* [])
{
#ifdef HAVE_TTMATH
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_rstar(8, 3));
#endif
return 0;
}

View File

@@ -20,9 +20,9 @@ int main()
typedef boost::tuple<std::string, std::string, std::string> CT;
std::vector<CT> coordinate_types;
coordinate_types.push_back(boost::make_tuple("double", "d", ""));
coordinate_types.push_back(boost::make_tuple("float", "f", ""));
//coordinate_types.push_back(boost::make_tuple("float", "f", ""));
coordinate_types.push_back(boost::make_tuple("int", "i", ""));
coordinate_types.push_back(boost::make_tuple("ttmath_big", "tt", "HAVE_TTMATH"));
//coordinate_types.push_back(boost::make_tuple("ttmath_big", "tt", "HAVE_TTMATH"));
std::vector<std::string> dimensions;
dimensions.push_back("2");