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:
Adam Wulkiewicz
2013-04-13 21:30:50 +00:00
parent 16d1ba9eb4
commit 764e87f5f7
128 changed files with 1532 additions and 1040 deletions

View File

@@ -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 ] ;

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<double, 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<double, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_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<int, 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<int, 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<int, 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<int, 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<int, 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<int, 2, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_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<double, 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<double, 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<double, 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<double, 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<double, 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<double, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_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<int, 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<int, 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<int, 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<int, 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<int, 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<int, 3, bg::cs::cartesian> Point;
test_rtree_for_box<Point>(bgi::dynamic_rstar(8, 3));
return 0;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View File

@@ -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;
}

View File

@@ -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;
}

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<double, 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<double, 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<double, 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<double, 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<double, 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<double, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_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<int, 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<int, 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<int, 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<int, 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<int, 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<int, 2, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_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<double, 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<double, 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<double, 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<double, 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<double, 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<double, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_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<int, 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<int, 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<int, 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<int, 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<int, 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<int, 3, bg::cs::cartesian> Point;
test_rtree_for_point<Point>(bgi::dynamic_rstar(8, 3));
return 0;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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