Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit d7c8a7cf0d.
PrevUpHomeNext
boost::geometry::index::linear

Linear r-tree creation algorithm parameters.

Header

#include <boost/geometry/index/parameters.hpp>

Synopsis
template<size_t MaxElements, size_t MinElements = default>
struct linear
{
  // ...
};
Template parameter(s)

Parameter

Description

size_t MaxElements

Maximum number of elements in nodes.

size_t MinElements

Minimum number of elements in nodes. Default: 0.3*Max.


PrevUpHomeNext