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 an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
boost::geometry::index::dynamic_linear
dynamic_linear(size_t)

Linear r-tree creation algorithm parameters - run-time version.

Header

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

Synopsis
class dynamic_linear
{
  // ...
};
Constructor(s) and destructor

Function

Description

dynamic_linear(size_t)

The constructor.

The constructor.

Synopsis
dynamic_linear(size_t max_elements, size_t min_elements = default)
Modifier(s)

explicit

Parameter(s)

Type

Name

Description

size_t

max_elements

Maximum number of elements in nodes.

size_t

min_elements

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


PrevUpHomeNext