mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-13 12:32:09 +00:00
geometry::index tests: leaved generated tests only for double coordinate type; generated and interprocess tests replaced by smaller ones.
[SVN r83882]
This commit is contained in:
@@ -6,55 +6,17 @@
|
||||
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
# http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
test-suite boost-geometry-index-rtree-generated
|
||||
:
|
||||
[ run rtree_p2d_linear.cpp ]
|
||||
[ run rtree_b2d_linear.cpp ]
|
||||
[ run rtree_p2d_quadratic.cpp ]
|
||||
[ run rtree_b2d_quadratic.cpp ]
|
||||
[ run rtree_p2d_rstar.cpp ]
|
||||
[ run rtree_b2d_rstar.cpp ]
|
||||
[ run rtree_p2d_linear_dyn.cpp ]
|
||||
[ run rtree_b2d_linear_dyn.cpp ]
|
||||
[ run rtree_p2d_quadratic_dyn.cpp ]
|
||||
[ run rtree_b2d_quadratic_dyn.cpp ]
|
||||
[ run rtree_p2d_rstar_dyn.cpp ]
|
||||
[ run rtree_b2d_rstar_dyn.cpp ]
|
||||
[ run rtree_p2i_linear.cpp ]
|
||||
[ run rtree_b2i_linear.cpp ]
|
||||
[ run rtree_p2i_quadratic.cpp ]
|
||||
[ run rtree_b2i_quadratic.cpp ]
|
||||
[ run rtree_p2i_rstar.cpp ]
|
||||
[ run rtree_b2i_rstar.cpp ]
|
||||
[ run rtree_p2i_linear_dyn.cpp ]
|
||||
[ run rtree_b2i_linear_dyn.cpp ]
|
||||
[ run rtree_p2i_quadratic_dyn.cpp ]
|
||||
[ run rtree_b2i_quadratic_dyn.cpp ]
|
||||
[ run rtree_p2i_rstar_dyn.cpp ]
|
||||
[ run rtree_b2i_rstar_dyn.cpp ]
|
||||
[ run rtree_p3d_linear.cpp ]
|
||||
[ run rtree_b3d_linear.cpp ]
|
||||
[ run rtree_p3d_quadratic.cpp ]
|
||||
[ run rtree_b3d_quadratic.cpp ]
|
||||
[ run rtree_p3d_rstar.cpp ]
|
||||
[ run rtree_b3d_rstar.cpp ]
|
||||
[ run rtree_p3d_linear_dyn.cpp ]
|
||||
[ run rtree_b3d_linear_dyn.cpp ]
|
||||
[ run rtree_p3d_quadratic_dyn.cpp ]
|
||||
[ run rtree_b3d_quadratic_dyn.cpp ]
|
||||
[ run rtree_p3d_rstar_dyn.cpp ]
|
||||
[ run rtree_b3d_rstar_dyn.cpp ]
|
||||
[ run rtree_p3i_linear.cpp ]
|
||||
[ run rtree_b3i_linear.cpp ]
|
||||
[ run rtree_p3i_quadratic.cpp ]
|
||||
[ run rtree_b3i_quadratic.cpp ]
|
||||
[ run rtree_p3i_rstar.cpp ]
|
||||
[ run rtree_b3i_rstar.cpp ]
|
||||
[ run rtree_p3i_linear_dyn.cpp ]
|
||||
[ run rtree_b3i_linear_dyn.cpp ]
|
||||
[ run rtree_p3i_quadratic_dyn.cpp ]
|
||||
[ run rtree_b3i_quadratic_dyn.cpp ]
|
||||
[ run rtree_p3i_rstar_dyn.cpp ]
|
||||
[ run rtree_b3i_rstar_dyn.cpp ]
|
||||
;
|
||||
rule test_all
|
||||
{
|
||||
local all_rules = ;
|
||||
|
||||
for local fileb in [ glob *.cpp ]
|
||||
{
|
||||
all_rules += [ run $(fileb) ] ;
|
||||
}
|
||||
|
||||
return $(all_rules) ;
|
||||
}
|
||||
|
||||
test-suite boost-geometry-index-rtree-generated : [ test_all r ] ;
|
||||
|
||||
|
||||
@@ -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<double, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::rstar<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_rstar(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::linear<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_linear(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::quadratic<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_quadratic(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::rstar<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_rstar(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::linear<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_linear(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::quadratic<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_quadratic(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::rstar<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_rstar(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::linear<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_linear(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::quadratic<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_quadratic(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::rstar<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_rstar(8, 3));
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_add_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_add_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_add_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_add_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_add_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_add_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_add_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_add_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_mod_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_mod_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_mod_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_mod_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_mod_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_mod_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_mod_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_mod_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_que_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_que_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_que_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_que_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_que_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_que_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dlin_que_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dlin_que_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_linear(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_add_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_add_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_add_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_add_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_add_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_add_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_add_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_add_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_mod_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_mod_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_mod_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_mod_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_mod_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_mod_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_mod_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_mod_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_que_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_que_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_que_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_que_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_que_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_que_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_dqua_que_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_dqua_que_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_quadratic(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_add_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_add_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_add_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_add_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_add_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_add_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_add_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_add_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::additional<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_mod_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_mod_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_mod_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_mod_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_mod_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_mod_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_mod_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_mod_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::modifiers<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_que_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_que_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_que_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_que_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_que_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_que_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_drst_que_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_drst_que_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::queries<Indexable>(bgi::dynamic_rstar(8, 3), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_lin_add_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_lin_add_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::additional<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_lin_add_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_lin_add_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::additional<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_lin_add_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_lin_add_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::additional<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_lin_add_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_lin_add_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::additional<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_lin_mod_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_lin_mod_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::modifiers<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_lin_mod_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_lin_mod_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::modifiers<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_lin_mod_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_lin_mod_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::modifiers<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_lin_mod_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_lin_mod_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::modifiers<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_lin_que_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_lin_que_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::queries<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_lin_que_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_lin_que_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::queries<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
int test_main(int, char* [])
|
||||
{
|
||||
typedef bg::model::point<double, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::quadratic<8, 3>());
|
||||
typedef bg::model::point<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::queries<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
int test_main(int, char* [])
|
||||
{
|
||||
typedef bg::model::point<double, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_box<Point>(bgi::dynamic_quadratic(8, 3));
|
||||
typedef bg::model::point<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::queries<Indexable>(bgi::linear<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::linear<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_linear(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::quadratic<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_quadratic(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::rstar<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_rstar(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::linear<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_linear(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::quadratic<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_quadratic(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::rstar<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 2, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_rstar(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::linear<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_linear(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::quadratic<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_quadratic(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::rstar<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<double, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_rstar(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::linear<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_linear(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::quadratic<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_quadratic(8, 3));
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::rstar<8, 3>());
|
||||
return 0;
|
||||
}
|
||||
@@ -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<int, 3, bg::cs::cartesian> Point;
|
||||
test_rtree_for_point<Point>(bgi::dynamic_rstar(8, 3));
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_qua_add_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_qua_add_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::additional<Indexable>(bgi::quadratic<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_qua_add_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_qua_add_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::additional<Indexable>(bgi::quadratic<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_qua_add_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_qua_add_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::additional<Indexable>(bgi::quadratic<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_qua_add_p3d.cpp
Normal file
20
test/index/rtree/generated/rtree_qua_add_p3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 3, bg::cs::cartesian> Indexable;
|
||||
testset::additional<Indexable>(bgi::quadratic<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_qua_mod_b2d.cpp
Normal file
20
test/index/rtree/generated/rtree_qua_mod_b2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 2, bg::cs::cartesian> > Indexable;
|
||||
testset::modifiers<Indexable>(bgi::quadratic<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_qua_mod_b3d.cpp
Normal file
20
test/index/rtree/generated/rtree_qua_mod_b3d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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::box< bg::model::point<double, 3, bg::cs::cartesian> > Indexable;
|
||||
testset::modifiers<Indexable>(bgi::quadratic<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
20
test/index/rtree/generated/rtree_qua_mod_p2d.cpp
Normal file
20
test/index/rtree/generated/rtree_qua_mod_p2d.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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<double, 2, bg::cs::cartesian> Indexable;
|
||||
testset::modifiers<Indexable>(bgi::quadratic<8, 3>(), std::allocator<int>());
|
||||
return 0;
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user