Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82387 - in sandbox-branches/geometry/index: boost/geometry/extensions/index/rtree doc/html doc/html/geometry_index doc/html/geometry_index/r_tree
From: adam.wulkiewicz_at_[hidden]
Date: 2013-01-07 16:08:49


Author: awulkiew
Date: 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
New Revision: 82387
URL: http://svn.boost.org/trac/boost/changeset/82387

Log:
R-tree docs improved.
Text files modified:
   sandbox-branches/geometry/index/boost/geometry/extensions/index/rtree/rtree.hpp | 68 ++-
   sandbox-branches/geometry/index/doc/html/geometry_index/introduction.html | 2
   sandbox-branches/geometry/index/doc/html/geometry_index/r_tree.html | 2
   sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/creation_and_modification.html | 10
   sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/exception_safety.html | 16
   sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/index.html | 664 ++++++++++-----------------------------
   sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/introduction.html | 20
   sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/nearest_neighbours_queries.html | 2
   sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/rtree_quickstart.html | 4
   sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/spatial_queries.html | 2
   sandbox-branches/geometry/index/doc/html/index.html | 4
   11 files changed, 251 insertions(+), 543 deletions(-)

Modified: sandbox-branches/geometry/index/boost/geometry/extensions/index/rtree/rtree.hpp
==============================================================================
--- sandbox-branches/geometry/index/boost/geometry/extensions/index/rtree/rtree.hpp (original)
+++ sandbox-branches/geometry/index/boost/geometry/extensions/index/rtree/rtree.hpp 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -58,20 +58,29 @@
 The R-tree spatial index. This is self-balancing spatial index capable to store various types
 of Values and balancing algorithms.
 
+The user must pass a type defining the Parameters which will
+be used in rtree creation process. This type is used e.g. to specify balancing algorithm
+with specific parameters like min and max number of elements in node.
+Predefined algorithms with compile-time parameters are:
+bgi::linear<MinElements, MaxElements>,
+bgi::quadratic<MinElements, MaxElements>,
+bgi::rstar<MinElements, MaxElements, OverlapCostThreshold = 0, ReinsertedElements = MaxElements * 0.3>.
+Predefined algorithms with run-time parameters are:
+bgi::runtime::linear,
+bgi::runtime::quadratic,
+bgi::runtime::rstar.
+
+The Translator translates from Value to Indexable each time r-tree requires it. Which means that this
+operation is done for each Value access. Therefore the Translator should return the Indexable by
+const reference instead of a value. Default translator can translate all types adapted to Point
+or Box concepts (which are Indexables). It also handles std::pair<Indexable, T>, pointers, smart pointers,
+and iterators. E.g. If std::pair<Box, int> is stored, the default translator translates from
+std::pair<Box, int> const& to Box const&.
+
 \tparam Value The type of objects stored in the container.
-\tparam Parameters Compile-time parameters. The user must pass a type defining the Parameters which will
- be used in rtree creation process. This type is used e.g. to specify balancing algorithm
- with compile-time parameters like min and max number of elements in node.
- Predefined Algorithms/Parameters are:
- bgi::linear<MinElements, MaxElements>,
- bgi::quadratic<MinElements, MaxElements>,
- bgi::rstar<MinElements, MaxElements, OverlapCostThreshold = 0, ReinsertedElements = MaxElements * 0.3>.
-\tparam Translator The type of the translator which translates from Value to Indexable. This translation is done each time
- the r-tree wants to know Value's Indexable. Default translator can translate all types adapted to Point
- or Box concepts (which are Indexables). It also handles std::pair<Indexable, T>, pointers, smart pointers,
- and iterators. E.g. If std::pair<Box, int> is stored, the default translator translates from
- std::pair<Box, int> const& to Box const&.
-\tparam Allocator The allocator.
+\tparam Parameters Compile-time parameters.
+\tparam Translator The type of the translator which translates from Value to Indexable.
+\tparam Allocator The allocator used to allocate/deallocate memory, construct/destroy nodes and Values.
 */
 template <
     typename Value,
@@ -84,13 +93,20 @@
     BOOST_COPYABLE_AND_MOVABLE(rtree)
 
 public:
+ /*! \brief The type of Value stored in the container. */
     typedef Value value_type;
+ /*! \brief R-tree parameters type. */
     typedef Parameters parameters_type;
+ /*! \brief Value to Indexable Translator type. */
     typedef Translator translator_type;
+ /*! \brief The type of allocator used by the container. */
     typedef Allocator allocator_type;
+ /*! \brief Unsigned integral type used by the container. */
     typedef typename allocator_type::size_type size_type;
 
+ /*! \brief The Indexable type to which Value is translated. */
     typedef typename translator::indexable_type<Translator>::type indexable_type;
+ /*! \brief The Box type used by the R-tree. */
     typedef typename index::default_box_type<indexable_type>::type box_type;
 
 #if !defined(BOOST_GEOMETRY_INDEX_ENABLE_DEBUG_INTERFACE)
@@ -170,10 +186,10 @@
     \param allocator The allocator object.
     */
     template<typename Range>
- inline rtree(Range const& rng,
- parameters_type parameters = parameters_type(),
- translator_type const& translator = translator_type(),
- allocator_type allocator = allocator_type())
+ inline explicit rtree(Range const& rng,
+ parameters_type parameters = parameters_type(),
+ translator_type const& translator = translator_type(),
+ allocator_type allocator = allocator_type())
         : m_translator(translator) // SHOULDN'T THROW
         , m_parameters(parameters)
         , m_allocators(allocator)
@@ -696,6 +712,8 @@
 
     /*!
     \brief Returns the box containing all values stored in the container.
+
+ Returns the box containing all values stored in the container.
     If the container is empty the result of geometry::assign_inverse() is returned.
 
     \exception nothrow (if Indexable's CoordinateType copy assignment doesn't throw),
@@ -722,7 +740,9 @@
     }
 
     /*!
- \brief For indexable_type it returns the number of values which indexables equals the parameter.
+ \brief Count Values or Indexables stored in the container.
+
+ For indexable_type it returns the number of values which indexables equals the parameter.
     For value_type it returns the number of values which equals the parameter.
 
     \exception nothrow.
@@ -1085,7 +1105,9 @@
 }
 
 /*!
-\brief Remove a value from the container. In contrast to the STL set/map erase() method
+\brief Remove a value from the container.
+
+Remove a value from the container. In contrast to the STL set/map erase() method
 this function removes only one value from the container.
 
 \param tree The spatial index.
@@ -1101,7 +1123,9 @@
 }
 
 /*!
-\brief Remove a range of values from the container. In contrast to the STL set/map erase() method
+\brief Remove a range of values from the container.
+
+Remove a range of values from the container. In contrast to the STL set/map erase() method
 it doesn't take iterators pointing to values stored in this container. It removes values equal
 to these passed as a range. Furthermore this function removes only one value for each one passed
 in the range, not all equal values.
@@ -1120,7 +1144,9 @@
 }
 
 /*!
-\brief Remove a range of values from the container. In contrast to the STL set/map erase() method
+\brief Remove a range of values from the container.
+
+Remove a range of values from the container. In contrast to the STL set/map erase() method
 it removes values equal to these passed as a range. Furthermore this method removes only
 one value for each one passed in the range, not all equal values.
 

Modified: sandbox-branches/geometry/index/doc/html/geometry_index/introduction.html
==============================================================================
--- sandbox-branches/geometry/index/doc/html/geometry_index/introduction.html (original)
+++ sandbox-branches/geometry/index/doc/html/geometry_index/introduction.html 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Introduction</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="up" href="../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="prev" href="../index.html" title="Chapter&#160;1.&#160;Geometry Index">

Modified: sandbox-branches/geometry/index/doc/html/geometry_index/r_tree.html
==============================================================================
--- sandbox-branches/geometry/index/doc/html/geometry_index/r_tree.html (original)
+++ sandbox-branches/geometry/index/doc/html/geometry_index/r_tree.html 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>R-tree</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="up" href="../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="prev" href="introduction.html" title="Introduction">

Modified: sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/creation_and_modification.html
==============================================================================
--- sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/creation_and_modification.html (original)
+++ sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/creation_and_modification.html 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Creation and modification</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="up" href="../r_tree.html" title="R-tree">
 <link rel="prev" href="rtree_quickstart.html" title="Quick Start">
@@ -55,7 +55,7 @@
         </p>
 <pre class="programlisting"><span class="identifier">rtree</span><span class="special">&lt;</span><span class="identifier">Value</span><span class="special">,</span> <span class="identifier">Parameters</span><span class="special">,</span> <span class="identifier">Translator</span> <span class="special">=</span> <span class="identifier">translator</span><span class="special">::</span><span class="identifier">def</span><span class="special">&lt;</span><span class="identifier">Value</span><span class="special">&gt;,</span> <span class="identifier">Allocator</span><span class="special">&gt;</span> <span class="special">=</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">allocator</span><span class="special">&lt;</span><span class="identifier">Value</span><span class="special">&gt;</span> <span class="special">&gt;</span>
 </pre>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
               <code class="computeroutput">Value</code> - type of object which will be stored in the container,
             </li>
@@ -90,7 +90,7 @@
           be handled by the default <code class="computeroutput">Translator</code> - <code class="computeroutput"><span class="identifier">index</span><span class="special">::</span><span class="identifier">translator</span><span class="special">::</span><span class="identifier">def</span><span class="special">&lt;</span>Value<span class="special">&gt;</span></code>
           are defined as follows:
         </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
               <code class="computeroutput">Indexable <span class="special">=</span> Point
               <span class="special">|</span> Box</code>
@@ -116,7 +116,7 @@
           A <code class="computeroutput">Translator</code> is a type which knows how to handle <code class="computeroutput">Value</code>s.
           It has two purposes:
         </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
               it translates <code class="computeroutput">Value</code> to a more suitable <code class="computeroutput">Indexable</code>
               type which is needed by most of operations,
@@ -134,7 +134,7 @@
 <p>
           If comparison of two <code class="computeroutput">Value</code>s is required, the default translator:
         </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
               for <code class="computeroutput">Point</code>
               and <code class="computeroutput">Box</code>

Modified: sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/exception_safety.html
==============================================================================
--- sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/exception_safety.html (original)
+++ sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/exception_safety.html 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Exception safety</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="up" href="../r_tree.html" title="R-tree">
 <link rel="prev" href="nearest_neighbours_queries.html" title="Nearest neighbours queries">
@@ -29,7 +29,7 @@
 <p>
         In order to be exception-safe the R-tree requires:
       </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
             exception-safe copy constructor and copy assignment of the <code class="computeroutput">Value</code>.
           </li>
@@ -155,7 +155,7 @@
 <td>
                 <p>
                   <span class="emphasis"><em>nothrow</em></span> or <span class="bold"><strong>strong</strong></span>
- <sup>[<a name="geometry_index.r_tree.exception_safety.f0" href="#ftn.geometry_index.r_tree.exception_safety.f0" class="footnote">a</a>]</sup>
+ [a]</sup></a>
                 </p>
               </td>
 </tr>
@@ -185,7 +185,7 @@
               </td>
 <td>
                 <p>
- not safe <sup>[<a name="geometry_index.r_tree.exception_safety.f1" href="#ftn.geometry_index.r_tree.exception_safety.f1" class="footnote">b</a>]</sup>
+ not safe [b]</sup></a>
                 </p>
               </td>
 </tr>
@@ -344,7 +344,7 @@
 <td>
                 <p>
                   <span class="emphasis"><em>nothrow</em></span> or <span class="bold"><strong>strong</strong></span>
- <sup>[<a name="geometry_index.r_tree.exception_safety.f2" href="#ftn.geometry_index.r_tree.exception_safety.f2" class="footnote">c</a>]</sup>
+ [c]</sup></a>
                 </p>
               </td>
 </tr>
@@ -392,15 +392,15 @@
 </tr>
 </tbody>
 <tbody class="footnotes"><tr><td colspan="2">
-<div class="footnote"><p><sup>[<a id="ftn.geometry_index.r_tree.exception_safety.f0" href="#geometry_index.r_tree.exception_safety.f0" class="para">a</a>] </sup>
+<div id="ftn.geometry_index.r_tree.exception_safety.f0" class="footnote"><p>[a]
                     <span class="emphasis"><em>nothrow</em></span> - if allocators are equal, <span class="bold"><strong>strong</strong></span> - otherwise
                   </p></div>
-<div class="footnote"><p><sup>[<a id="ftn.geometry_index.r_tree.exception_safety.f1" href="#geometry_index.r_tree.exception_safety.f1" class="para">b</a>] </sup>
+<div id="ftn.geometry_index.r_tree.exception_safety.f1" class="footnote"><p>[b]
                     If this operation throws, the R-tree may be left in an inconsistent
                     state, elements must not be inserted or removed, methods may
                     return invalid data.
                   </p></div>
-<div class="footnote"><p><sup>[<a id="ftn.geometry_index.r_tree.exception_safety.f2" href="#geometry_index.r_tree.exception_safety.f2" class="para">c</a>] </sup>
+<div id="ftn.geometry_index.r_tree.exception_safety.f2" class="footnote"><p>[c]
                     <span class="emphasis"><em>nothrow</em></span> - if <code class="computeroutput"><span class="identifier">CoordinateType</span></code>
                     has nonthrowing copy constructor, <span class="bold"><strong>strong</strong></span>
                     - otherwise

Modified: sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/index.html
==============================================================================
--- sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/index.html (original)
+++ sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/index.html 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Reference</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="up" href="../r_tree.html" title="R-tree">
 <link rel="prev" href="exception_safety.html" title="Exception safety">
@@ -31,28 +31,48 @@
 <a name="geometry_index.r_tree.index.boost_geometry_index_rtree"></a><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree" title="boost::geometry::index::rtree">boost::geometry::index::rtree</a>
 </h4></div></div></div>
 <p>
- <a class="indexterm" name="idp9942920"></a><a class="indexterm" name="idp9943232"></a><a class="indexterm" name="idp9943544"></a><a class="indexterm" name="idp9943856"></a>
+ <a class="indexterm" name="id853103"></a><a class="indexterm" name="id853107"></a><a class="indexterm" name="id853112"></a><a class="indexterm" name="id853117"></a>
 The R-tree spatial index.
         </p>
 <h6>
 <a name="geometry_index.r_tree.index.boost_geometry_index_rtree.h0"></a>
- <span><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.description"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.description">Description</a>
+ <span class="phrase"><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.description"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.description">Description</a>
         </h6>
 <p>
           The R-tree spatial index. This is self-balancing spatial index capable
           to store various types of Values and balancing algorithms.
         </p>
+<p>
+ The user must pass a type defining the Parameters which will be used in
+ rtree creation process. This type is used e.g. to specify balancing algorithm
+ with specific parameters like min and max number of elements in node. Predefined
+ algorithms with compile-time parameters are: bgi::linear&lt;MinElements,
+ MaxElements&gt;, bgi::quadratic&lt;MinElements, MaxElements&gt;, bgi::rstar&lt;MinElements,
+ MaxElements, OverlapCostThreshold = 0, ReinsertedElements = MaxElements
+ * 0.3&gt;. Predefined algorithms with run-time parameters are: bgi::runtime::linear,
+ bgi::runtime::quadratic, bgi::runtime::rstar.
+ </p>
+<p>
+ The Translator translates from Value to Indexable each time r-tree requires
+ it. Which means that this operation is done for each Value access. Therefore
+ the Translator should return the Indexable by const reference instead of
+ a value. Default translator can translate all types adapted to Point or
+ Box concepts (which are Indexables). It also handles std::pair&lt;Indexable,
+ T&gt;, pointers, smart pointers, and iterators. E.g. If std::pair&lt;Box,
+ int&gt; is stored, the default translator translates from std::pair&lt;Box,
+ int&gt; const&amp; to Box const&amp;.
+ </p>
 <h6>
 <a name="geometry_index.r_tree.index.boost_geometry_index_rtree.h1"></a>
- <span><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.synopsis"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.synopsis">Synopsis</a>
+ <span class="phrase"><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.synopsis"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.synopsis">Synopsis</a>
         </h6>
 <p>
 </p>
 <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Value</span><span class="special">,</span>
          <span class="keyword">typename</span> <span class="identifier">Parameters</span><span class="special">,</span>
- <span class="keyword">typename</span> <span class="identifier">Translator</span><span class="special">,</span>
- <span class="keyword">typename</span> <span class="identifier">Allocator</span><span class="special">&gt;</span>
-<span class="keyword">class</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">geometry</span><span class="special">::</span><span class="identifier">index</span><span class="special">::</span><span class="identifier">rtree</span>
+ <span class="keyword">typename</span> <span class="identifier">Translator</span> <span class="special">=</span> <span class="identifier">translator</span><span class="special">::</span><span class="identifier">def</span><span class="special">&lt;</span><span class="identifier">Value</span><span class="special">&gt;,</span>
+ <span class="keyword">typename</span> <span class="identifier">Allocator</span> <span class="special">=</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">allocator</span><span class="special">&lt;</span><span class="identifier">Value</span><span class="special">&gt;&gt;</span>
+<span class="keyword">class</span> <span class="identifier">rtree</span>
 <span class="special">{</span>
   <span class="comment">// ...</span>
 <span class="special">};</span>
@@ -61,14 +81,13 @@
         </p>
 <h6>
 <a name="geometry_index.r_tree.index.boost_geometry_index_rtree.h2"></a>
- <span><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.template_parameter_s_"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.template_parameter_s_">Template
+ <span class="phrase"><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.template_parameter_s_"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.template_parameter_s_">Template
           parameter(s)</a>
         </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
 <col>
 <col>
-<col>
 </colgroup>
 <thead><tr>
 <th>
@@ -78,11 +97,6 @@
                 </th>
 <th>
                   <p>
- Default
- </p>
- </th>
-<th>
- <p>
                     Description
                   </p>
                 </th>
@@ -91,14 +105,10 @@
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">Value</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">Value</span></code>
                   </p>
                 </td>
 <td>
- </td>
-<td>
                   <p>
                     The type of objects stored in the container.
                   </p>
@@ -107,72 +117,37 @@
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">Parameters</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">Parameters</span></code>
                   </p>
                 </td>
 <td>
- </td>
-<td>
                   <p>
- Compile-time parameters. The user must pass a type defining the
- Parameters which will be used in rtree creation process. This
- type is used e.g. to specify balancing algorithm with compile-time
- parameters like min and max number of elements in node. Predefined
- Algorithms/Parameters are: bgi::linear&lt;MinElements, MaxElements&gt;,
- bgi::quadratic&lt;MinElements, MaxElements&gt;, bgi::rstar&lt;MinElements,
- MaxElements, OverlapCostThreshold = 0, ReinsertedElements = MaxElements
- * 0.3&gt;.
+ Compile-time parameters.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">Translator</span></pre>
-<p>
- </p>
- </td>
-<td>
- <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">translator</span><span class="special">::</span><span class="identifier">def</span><span class="special">&lt;</span><span class="identifier">Value</span><span class="special">&gt;</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">Translator</span></code>
                   </p>
                 </td>
 <td>
                   <p>
                     The type of the translator which translates from Value to Indexable.
- This translation is done each time the r-tree wants to know Value's
- Indexable. Default translator can translate all types adapted
- to Point or Box concepts (which are Indexables). It also handles
- std::pair&lt;Indexable, T&gt;, pointers, smart pointers, and
- iterators. E.g. If std::pair&lt;Box, int&gt; is stored, the default
- translator translates from std::pair&lt;Box, int&gt; const&amp;
- to Box const&amp;.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">Allocator</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">Allocator</span></code>
                   </p>
                 </td>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">std</span><span class="special">::</span><span class="identifier">allocator</span><span class="special">&lt;</span><span class="identifier">Value</span><span class="special">&gt;</span></pre>
-<p>
- </p>
- </td>
-<td>
- <p>
- The allocator.
+ The allocator used to allocate/deallocate memory, construct/destroy
+ nodes and Values.
                   </p>
                 </td>
 </tr>
@@ -180,18 +155,17 @@
 </table></div>
 <h6>
 <a name="geometry_index.r_tree.index.boost_geometry_index_rtree.h3"></a>
- <span><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.constructor_s_"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.constructor_s_">Constructor(s)</a>
+ <span class="phrase"><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.typedef_s_"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.typedef_s_">Typedef(s)</a>
         </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
 <col>
 <col>
-<col>
 </colgroup>
 <thead><tr>
 <th>
                   <p>
- Function
+ Type
                   </p>
                 </th>
 <th>
@@ -199,182 +173,89 @@
                     Description
                   </p>
                 </th>
-<th>
- <p>
- Parameters
- </p>
- </th>
 </tr></thead>
 <tbody>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">rtree</span><span class="special">(</span><span class="identifier">parameters_type</span> <span class="identifier">parameters</span> <span class="special">=</span> <span class="identifier">parameters_type</span><span class="special">(),</span>
- <span class="identifier">translator_type</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">translator</span> <span class="special">=</span> <span class="identifier">translator_type</span><span class="special">(),</span>
- <span class="identifier">allocator_type</span> <span class="identifier">allocator</span> <span class="special">=</span> <span class="identifier">allocator_type</span><span class="special">())</span></pre>
-<p>
- </p>
- </td>
-<td>
- <p>
- The constructor.
+ <code class="computeroutput"><span class="identifier">value_type</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- <span class="bold"><strong>parameters_type</strong></span>: <span class="emphasis"><em>parameters</em></span>:
- The parameters object.
- </p>
- <p>
- <span class="bold"><strong>translator_type const &amp;</strong></span>:
- <span class="emphasis"><em>translator</em></span>: The translator object.
- </p>
- <p>
- <span class="bold"><strong>allocator_type</strong></span>: <span class="emphasis"><em>allocator</em></span>:
- The allocator object.
+ The type of Value stored in the container.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Iterator</span><span class="special">&gt;</span>
-<span class="identifier">rtree</span><span class="special">(</span><span class="identifier">Iterator</span> <span class="identifier">first</span><span class="special">,</span>
- <span class="identifier">Iterator</span> <span class="identifier">last</span><span class="special">,</span>
- <span class="identifier">parameters_type</span> <span class="identifier">parameters</span> <span class="special">=</span> <span class="identifier">parameters_type</span><span class="special">(),</span>
- <span class="identifier">translator_type</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">translator</span> <span class="special">=</span> <span class="identifier">translator_type</span><span class="special">(),</span>
- <span class="identifier">allocator_type</span> <span class="identifier">allocator</span> <span class="special">=</span> <span class="identifier">allocator_type</span><span class="special">())</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">parameters_type</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- The constructor.
- </p>
- </td>
-<td>
- <p>
- <span class="bold"><strong>Iterator</strong></span>: <span class="emphasis"><em>first</em></span>:
- The beginning of the range of Values.
- </p>
- <p>
- <span class="bold"><strong>Iterator</strong></span>: <span class="emphasis"><em>last</em></span>:
- The end of the range of Values.
- </p>
- <p>
- <span class="bold"><strong>parameters_type</strong></span>: <span class="emphasis"><em>parameters</em></span>:
- The parameters object.
- </p>
- <p>
- <span class="bold"><strong>translator_type const &amp;</strong></span>:
- <span class="emphasis"><em>translator</em></span>: The translator object.
- </p>
- <p>
- <span class="bold"><strong>allocator_type</strong></span>: <span class="emphasis"><em>allocator</em></span>:
- The allocator object.
+ R-tree parameters type.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Range</span><span class="special">&gt;</span>
-<span class="identifier">rtree</span><span class="special">(</span><span class="identifier">Range</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">rng</span><span class="special">,</span>
- <span class="identifier">parameters_type</span> <span class="identifier">parameters</span> <span class="special">=</span> <span class="identifier">parameters_type</span><span class="special">(),</span>
- <span class="identifier">translator_type</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">translator</span> <span class="special">=</span> <span class="identifier">translator_type</span><span class="special">(),</span>
- <span class="identifier">allocator_type</span> <span class="identifier">allocator</span> <span class="special">=</span> <span class="identifier">allocator_type</span><span class="special">())</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">translator_type</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- The constructor.
- </p>
- </td>
-<td>
- <p>
- <span class="bold"><strong>Range const &amp;</strong></span>: <span class="emphasis"><em>rng</em></span>:
- The range of Values.
- </p>
- <p>
- <span class="bold"><strong>parameters_type</strong></span>: <span class="emphasis"><em>parameters</em></span>:
- The parameters object.
- </p>
- <p>
- <span class="bold"><strong>translator_type const &amp;</strong></span>:
- <span class="emphasis"><em>translator</em></span>: The translator object.
- </p>
- <p>
- <span class="bold"><strong>allocator_type</strong></span>: <span class="emphasis"><em>allocator</em></span>:
- The allocator object.
+ Value to Indexable Translator type.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">rtree</span><span class="special">(</span><span class="identifier">rtree</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">src</span><span class="special">)</span></pre>
-<p>
- </p>
- </td>
-<td>
- <p>
- The copy constructor.
+ <code class="computeroutput"><span class="identifier">allocator_type</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- <span class="bold"><strong>rtree const &amp;</strong></span>: <span class="emphasis"><em>src</em></span>:
- The rtree which content will be copied.
+ The type of allocator used by the container.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">rtree</span><span class="special">(</span><span class="identifier">rtree</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">src</span><span class="special">,</span> <span class="identifier">allocator_type</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">allocator</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">size_type</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- The copy constructor. It uses Parameters and translator from
- the source tree.
+ Unsigned integral type used by the container.
                   </p>
                 </td>
+</tr>
+<tr>
 <td>
                   <p>
- <span class="bold"><strong>rtree const &amp;</strong></span>: <span class="emphasis"><em>src</em></span>:
- The rtree which content will be copied.
- </p>
- <p>
- <span class="bold"><strong>allocator_type const &amp;</strong></span>:
- <span class="emphasis"><em>allocator</em></span>: The allocator which will be used.
+ <code class="computeroutput"><span class="identifier">indexable_type</span></code>
                   </p>
                 </td>
-</tr>
-<tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">rtree</span><span class="special">(</span><span class="identifier">rtree</span> <span class="special">&amp;&amp;</span> <span class="identifier">src</span><span class="special">)</span></pre>
-<p>
+ The Indexable type to which Value is translated.
                   </p>
                 </td>
+</tr>
+<tr>
 <td>
                   <p>
- The moving constructor.
+ <code class="computeroutput"><span class="identifier">box_type</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- <span class="bold"><strong>rtree &amp;&amp;</strong></span>: <span class="emphasis"><em>src</em></span>:
- The rtree which content will be moved.
+ The Box type used by the R-tree.
                   </p>
                 </td>
 </tr>
@@ -382,15 +263,13 @@
 </table></div>
 <h6>
 <a name="geometry_index.r_tree.index.boost_geometry_index_rtree.h4"></a>
- <span><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.member_function_s_"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.member_function_s_">Member
- Function(s)</a>
+ <span class="phrase"><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.constructor_s__and_destructor"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.constructor_s__and_destructor">Constructor(s)
+ and destructor</a>
         </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
 <col>
 <col>
-<col>
-<col>
 </colgroup>
 <thead><tr>
 <th>
@@ -403,325 +282,275 @@
                     Description
                   </p>
                 </th>
-<th>
- <p>
- Parameters
- </p>
- </th>
-<th>
- <p>
- Returns
- </p>
- </th>
 </tr></thead>
 <tbody>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="special">~</span><span class="identifier">rtree</span><span class="special">()</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">rtree</span><span class="special">()</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- The destructor.
+ The constructor.
                   </p>
                 </td>
-<td>
- </td>
-<td class="auto-generated">&#160;</td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">rtree</span> <span class="special">&amp;</span> <span class="keyword">operator</span><span class="special">=(</span><span class="keyword">const</span> <span class="identifier">rtree</span> <span class="special">&amp;</span> <span class="identifier">src</span><span class="special">)</span></pre>
-<p>
- </p>
- </td>
-<td>
- <p>
- The assignment operator.
+ <code class="computeroutput"><span class="identifier">rtree</span><span class="special">(</span><span class="identifier">Iterator</span><span class="special">,</span>
+ <span class="identifier">Iterator</span><span class="special">)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- <span class="bold"><strong>const rtree &amp;</strong></span>: <span class="emphasis"><em>src</em></span>:
- The rtree which content will be copied.
+ The constructor.
                   </p>
                 </td>
-<td class="auto-generated">&#160;</td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">rtree</span> <span class="special">&amp;</span> <span class="keyword">operator</span><span class="special">=(</span><span class="identifier">rtree</span> <span class="special">&amp;&amp;</span> <span class="identifier">src</span><span class="special">)</span></pre>
-<p>
- </p>
- </td>
-<td>
- <p>
- The moving assignment.
+ <code class="computeroutput"><span class="identifier">rtree</span><span class="special">(</span><span class="identifier">Range</span> <span class="keyword">const</span>
+ <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- <span class="bold"><strong>rtree &amp;&amp;</strong></span>: <span class="emphasis"><em>src</em></span>:
- The rtree which content will be moved.
+ The constructor.
                   </p>
                 </td>
-<td class="auto-generated">&#160;</td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">void</span> <span class="identifier">swap</span><span class="special">(</span><span class="identifier">rtree</span> <span class="special">&amp;</span> <span class="identifier">other</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="special">~</span><span class="identifier">rtree</span><span class="special">()</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- Swaps contents of two rtrees.
+ The destructor.
                   </p>
                 </td>
+</tr>
+<tr>
 <td>
                   <p>
- <span class="bold"><strong>rtree &amp;</strong></span>: <span class="emphasis"><em>other</em></span>:
- The rtree which content will be swapped with this rtree content.
+ <code class="computeroutput"><span class="identifier">rtree</span><span class="special">(</span><span class="identifier">rtree</span> <span class="keyword">const</span>
+ <span class="special">&amp;)</span></code>
                   </p>
                 </td>
-<td class="auto-generated">&#160;</td>
-</tr>
-<tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">void</span> <span class="identifier">insert</span><span class="special">(</span><span class="identifier">value_type</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">value</span><span class="special">)</span></pre>
-<p>
+ The copy constructor.
                   </p>
                 </td>
+</tr>
+<tr>
 <td>
                   <p>
- Insert a value to the index.
+ <code class="computeroutput"><span class="identifier">rtree</span><span class="special">(</span><span class="identifier">rtree</span> <span class="keyword">const</span>
+ <span class="special">&amp;,</span> <span class="identifier">allocator_type</span>
+ <span class="keyword">const</span> <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- <span class="bold"><strong>value_type const &amp;</strong></span>: <span class="emphasis"><em>value</em></span>:
- The value which will be stored in the container.
+ The copy constructor. It uses Parameters and translator from
+ the source tree.
                   </p>
                 </td>
-<td class="auto-generated">&#160;</td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Iterator</span><span class="special">&gt;</span>
-<span class="keyword">void</span>
-<span class="identifier">insert</span><span class="special">(</span><span class="identifier">Iterator</span> <span class="identifier">first</span><span class="special">,</span> <span class="identifier">Iterator</span> <span class="identifier">last</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">rtree</span><span class="special">(</span><span class="identifier">rtree</span> <span class="special">&amp;&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- Insert a range of values to the index.
+ The moving constructor.
                   </p>
                 </td>
-<td>
+</tr>
+</tbody>
+</table></div>
+<h6>
+<a name="geometry_index.r_tree.index.boost_geometry_index_rtree.h5"></a>
+ <span class="phrase"><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.member_s_"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.member_s_">Member(s)</a>
+ </h6>
+<div class="informaltable"><table class="table">
+<colgroup>
+<col>
+<col>
+</colgroup>
+<thead><tr>
+<th>
                   <p>
- <span class="bold"><strong>Iterator</strong></span>: <span class="emphasis"><em>first</em></span>:
- The beginning of the range of values.
+ Function
                   </p>
+ </th>
+<th>
                   <p>
- <span class="bold"><strong>Iterator</strong></span>: <span class="emphasis"><em>last</em></span>:
- The end of the range of values.
+ Description
                   </p>
- </td>
-<td class="auto-generated">&#160;</td>
-</tr>
+ </th>
+</tr></thead>
+<tbody>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Range</span><span class="special">&gt;</span>
-<span class="keyword">void</span> <span class="identifier">insert</span><span class="special">(</span><span class="identifier">Range</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">rng</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="keyword">operator</span><span class="special">=(</span><span class="keyword">const</span> <span class="identifier">rtree</span>
+ <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- Insert a range of values to the index.
- </p>
- </td>
-<td>
- <p>
- <span class="bold"><strong>Range const &amp;</strong></span>: <span class="emphasis"><em>rng</em></span>:
- The range of values.
+ The assignment operator.
                   </p>
                 </td>
-<td class="auto-generated">&#160;</td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">size_type</span> <span class="identifier">remove</span><span class="special">(</span><span class="identifier">value_type</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">value</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="keyword">operator</span><span class="special">=(</span><span class="identifier">rtree</span> <span class="special">&amp;&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- Remove a value from the container.
+ The moving assignment.
                   </p>
                 </td>
+</tr>
+<tr>
 <td>
                   <p>
- <span class="bold"><strong>value_type const &amp;</strong></span>: <span class="emphasis"><em>value</em></span>:
- The value which will be removed from the container.
+ <code class="computeroutput"><span class="identifier">swap</span><span class="special">(</span><span class="identifier">rtree</span> <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- 1 if the value was removed, 0 otherwise.
+ Swaps contents of two rtrees.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Iterator</span><span class="special">&gt;</span>
-<span class="identifier">size_type</span>
-<span class="identifier">remove</span><span class="special">(</span><span class="identifier">Iterator</span> <span class="identifier">first</span><span class="special">,</span> <span class="identifier">Iterator</span> <span class="identifier">last</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">insert</span><span class="special">(</span><span class="identifier">value_type</span> <span class="keyword">const</span>
+ <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- Remove a range of values from the container.
+ Insert a value to the index.
                   </p>
                 </td>
+</tr>
+<tr>
 <td>
                   <p>
- <span class="bold"><strong>Iterator</strong></span>: <span class="emphasis"><em>first</em></span>:
- The beginning of the range of values.
- </p>
- <p>
- <span class="bold"><strong>Iterator</strong></span>: <span class="emphasis"><em>last</em></span>:
- The end of the range of values.
+ <code class="computeroutput"><span class="identifier">insert</span><span class="special">(</span><span class="identifier">Iterator</span><span class="special">,</span>
+ <span class="identifier">Iterator</span><span class="special">)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- The number of removed values.
+ Insert a range of values to the index.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Range</span><span class="special">&gt;</span>
-<span class="identifier">size_type</span> <span class="identifier">remove</span><span class="special">(</span><span class="identifier">Range</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">rng</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">insert</span><span class="special">(</span><span class="identifier">Range</span> <span class="keyword">const</span>
+ <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- Remove a range of values from the container.
+ Insert a range of values to the index.
                   </p>
                 </td>
+</tr>
+<tr>
 <td>
                   <p>
- <span class="bold"><strong>Range const &amp;</strong></span>: <span class="emphasis"><em>rng</em></span>:
- The range of values.
+ <code class="computeroutput"><span class="identifier">remove</span><span class="special">(</span><span class="identifier">value_type</span> <span class="keyword">const</span>
+ <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- The number of removed values.
+ Remove a value from the container.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Predicates</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">OutIter</span><span class="special">&gt;</span>
-<span class="identifier">size_type</span>
-<span class="identifier">spatial_query</span><span class="special">(</span><span class="identifier">Predicates</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">pred</span><span class="special">,</span> <span class="identifier">OutIter</span> <span class="identifier">out_it</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">remove</span><span class="special">(</span><span class="identifier">Iterator</span><span class="special">,</span>
+ <span class="identifier">Iterator</span><span class="special">)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- Finds values meeting spatial predicates, e.g. intersecting some
- Box.
+ Remove a range of values from the container.
                   </p>
                 </td>
+</tr>
+<tr>
 <td>
                   <p>
- <span class="bold"><strong>Predicates const &amp;</strong></span>: <span class="emphasis"><em>pred</em></span>:
- The spatial predicates or a Geometry.
- </p>
- <p>
- <span class="bold"><strong>OutIter</strong></span>: <span class="emphasis"><em>out_it</em></span>:
- The output iterator of the result range. E.g. an iterator generated
- by std::back_inserter(container)
+ <code class="computeroutput"><span class="identifier">remove</span><span class="special">(</span><span class="identifier">Range</span> <span class="keyword">const</span>
+ <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- The number of values found.
+ Remove a range of values from the container.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">DistancesPredicates</span><span class="special">&gt;</span>
-<span class="identifier">size_type</span>
-<span class="identifier">nearest_query</span><span class="special">(</span><span class="identifier">DistancesPredicates</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">dpred</span><span class="special">,</span> <span class="identifier">value_type</span> <span class="special">&amp;</span> <span class="identifier">v</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">spatial_query</span><span class="special">(</span><span class="identifier">Predicates</span>
+ <span class="keyword">const</span> <span class="special">&amp;,</span>
+ <span class="identifier">OutIter</span><span class="special">)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- Finds one value meeting distances predicates, e.g. nearest to
- some Point.
+ Finds values meeting spatial predicates, e.g. intersecting some
+ Box.
                   </p>
                 </td>
+</tr>
+<tr>
 <td>
                   <p>
- <span class="bold"><strong>DistancesPredicates const &amp;</strong></span>:
- <span class="emphasis"><em>dpred</em></span>: The distances predicates or a Point.
- </p>
- <p>
- <span class="bold"><strong>value_type &amp;</strong></span>: <span class="emphasis"><em>v</em></span>:
- The reference to the object which will contain the result.
+ <code class="computeroutput"><span class="identifier">nearest_query</span><span class="special">(</span><span class="identifier">DistancesPredicates</span>
+ <span class="keyword">const</span> <span class="special">&amp;,</span>
+ <span class="identifier">value_type</span> <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- The number of values found.
+ Finds one value meeting distances predicates, e.g. nearest to
+ some Point.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">DistancesPredicates</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">Predicates</span><span class="special">&gt;</span>
-<span class="identifier">size_type</span>
-<span class="identifier">nearest_query</span><span class="special">(</span><span class="identifier">DistancesPredicates</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">dpred</span><span class="special">,</span>
- <span class="identifier">Predicates</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">pred</span><span class="special">,</span>
- <span class="identifier">value_type</span> <span class="special">&amp;</span> <span class="identifier">v</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">nearest_query</span><span class="special">(</span><span class="identifier">DistancesPredicates</span>
+ <span class="keyword">const</span> <span class="special">&amp;,</span>
+ <span class="identifier">Predicates</span> <span class="keyword">const</span>
+ <span class="special">&amp;,</span> <span class="identifier">value_type</span>
+ <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
@@ -730,36 +559,14 @@
                     e.g. nearest to some Point and intersecting some Box.
                   </p>
                 </td>
-<td>
- <p>
- <span class="bold"><strong>DistancesPredicates const &amp;</strong></span>:
- <span class="emphasis"><em>dpred</em></span>: The distances predicates or a Point.
- </p>
- <p>
- <span class="bold"><strong>Predicates const &amp;</strong></span>: <span class="emphasis"><em>pred</em></span>:
- The spatial predicates or a Geometry
- </p>
- <p>
- <span class="bold"><strong>value_type &amp;</strong></span>: <span class="emphasis"><em>v</em></span>:
- The reference to the object which will contain the result.
- </p>
- </td>
-<td>
- <p>
- The number of values found.
- </p>
- </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">DistancesPredicates</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">OutIter</span><span class="special">&gt;</span>
-<span class="identifier">size_type</span>
-<span class="identifier">nearest_query</span><span class="special">(</span><span class="identifier">DistancesPredicates</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">dpred</span><span class="special">,</span>
- <span class="identifier">size_t</span> <span class="identifier">k</span><span class="special">,</span>
- <span class="identifier">OutIter</span> <span class="identifier">out_it</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">nearest_query</span><span class="special">(</span><span class="identifier">DistancesPredicates</span>
+ <span class="keyword">const</span> <span class="special">&amp;,</span>
+ <span class="identifier">size_t</span><span class="special">,</span>
+ <span class="identifier">OutIter</span><span class="special">)</span></code>
                   </p>
                 </td>
 <td>
@@ -768,39 +575,15 @@
                     to some Point.
                   </p>
                 </td>
-<td>
- <p>
- <span class="bold"><strong>DistancesPredicates const &amp;</strong></span>:
- <span class="emphasis"><em>dpred</em></span>: The distances predicates or a Point.
- </p>
- <p>
- <span class="bold"><strong>size_t</strong></span>: <span class="emphasis"><em>k</em></span>:
- The max number of values.
- </p>
- <p>
- <span class="bold"><strong>OutIter</strong></span>: <span class="emphasis"><em>out_it</em></span>:
- The output iterator of the result range. E.g. a back_insert_iterator.
- </p>
- </td>
-<td>
- <p>
- The number of values found.
- </p>
- </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">DistancesPredicates</span><span class="special">,</span>
- <span class="keyword">typename</span> <span class="identifier">Predicates</span><span class="special">,</span>
- <span class="keyword">typename</span> <span class="identifier">OutIter</span><span class="special">&gt;</span>
-<span class="identifier">size_type</span>
-<span class="identifier">nearest_query</span><span class="special">(</span><span class="identifier">DistancesPredicates</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">dpred</span><span class="special">,</span>
- <span class="identifier">size_t</span> <span class="identifier">k</span><span class="special">,</span>
- <span class="identifier">Predicates</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">pred</span><span class="special">,</span>
- <span class="identifier">OutIter</span> <span class="identifier">out_it</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">nearest_query</span><span class="special">(</span><span class="identifier">DistancesPredicates</span>
+ <span class="keyword">const</span> <span class="special">&amp;,</span>
+ <span class="identifier">size_t</span><span class="special">,</span>
+ <span class="identifier">Predicates</span> <span class="keyword">const</span>
+ <span class="special">&amp;,</span> <span class="identifier">OutIter</span><span class="special">)</span></code>
                   </p>
                 </td>
 <td>
@@ -809,36 +592,11 @@
                     e.g. k nearest values to some Point and intersecting some Box.
                   </p>
                 </td>
-<td>
- <p>
- <span class="bold"><strong>DistancesPredicates const &amp;</strong></span>:
- <span class="emphasis"><em>dpred</em></span>: The distances predicates or a Point
- </p>
- <p>
- <span class="bold"><strong>size_t</strong></span>: <span class="emphasis"><em>k</em></span>:
- The max number of values.
- </p>
- <p>
- <span class="bold"><strong>Predicates const &amp;</strong></span>: <span class="emphasis"><em>pred</em></span>:
- The spatial predicates or a Geometry.
- </p>
- <p>
- <span class="bold"><strong>OutIter</strong></span>: <span class="emphasis"><em>out_it</em></span>:
- The output iterator of the result range. E.g. a back_insert_iterator.
- </p>
- </td>
-<td>
- <p>
- The number of values found.
- </p>
- </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">size_type</span> <span class="identifier">size</span><span class="special">()</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">size</span><span class="special">()</span></code>
                   </p>
                 </td>
 <td>
@@ -846,20 +604,11 @@
                     Returns the number of stored values.
                   </p>
                 </td>
-<td>
- </td>
-<td>
- <p>
- The number of stored values.
- </p>
- </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">bool</span> <span class="identifier">empty</span><span class="special">()</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">empty</span><span class="special">()</span></code>
                   </p>
                 </td>
 <td>
@@ -867,20 +616,11 @@
                     Query if the container is empty.
                   </p>
                 </td>
-<td>
- </td>
-<td>
- <p>
- true if the container is empty.
- </p>
- </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">void</span> <span class="identifier">clear</span><span class="special">()</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">clear</span><span class="special">()</span></code>
                   </p>
                 </td>
 <td>
@@ -888,69 +628,36 @@
                     Removes all values stored in the container.
                   </p>
                 </td>
-<td>
- </td>
-<td class="auto-generated">&#160;</td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">box_type</span> <span class="identifier">box</span><span class="special">()</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">box</span><span class="special">()</span></code>
                   </p>
                 </td>
 <td>
                   <p>
                     Returns the box containing all values stored in the container.
- If the container is empty the result of geometry::assign_inverse()
- is returned.
- </p>
- </td>
-<td>
- </td>
-<td>
- <p>
- The box containing all values stored in the container or an invalid
- box if there are no values in the container.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">ValueOrIndexable</span><span class="special">&gt;</span>
-<span class="identifier">size_type</span> <span class="identifier">count</span><span class="special">(</span><span class="identifier">ValueOrIndexable</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">vori</span><span class="special">)</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">count</span><span class="special">(</span><span class="identifier">ValueOrIndexable</span> <span class="keyword">const</span>
+ <span class="special">&amp;)</span></code>
                   </p>
                 </td>
 <td>
                   <p>
- For indexable_type it returns the number of values which indexables
- equals the parameter. For value_type it returns the number of
- values which equals the parameter.
- </p>
- </td>
-<td>
- <p>
- <span class="bold"><strong>ValueOrIndexable const &amp;</strong></span>:
- <span class="emphasis"><em>vori</em></span>: The value or indexable which will
- be counted.
- </p>
- </td>
-<td>
- <p>
- The number of values found.
+ Count Values or Indexables stored in the container.
                   </p>
                 </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">parameters_type</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">parameters</span><span class="special">()</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">parameters</span><span class="special">()</span></code>
                   </p>
                 </td>
 <td>
@@ -958,20 +665,11 @@
                     Returns parameters.
                   </p>
                 </td>
-<td>
- </td>
-<td>
- <p>
- The parameters object.
- </p>
- </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">translator_type</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">translator</span><span class="special">()</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">translator</span><span class="special">()</span></code>
                   </p>
                 </td>
 <td>
@@ -979,20 +677,11 @@
                     Returns the translator object.
                   </p>
                 </td>
-<td>
- </td>
-<td>
- <p>
- The translator object.
- </p>
- </td>
 </tr>
 <tr>
 <td>
                   <p>
-</p>
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">allocator_type</span> <span class="identifier">get_allocator</span><span class="special">()</span></pre>
-<p>
+ <code class="computeroutput"><span class="identifier">get_allocator</span><span class="special">()</span></code>
                   </p>
                 </td>
 <td>
@@ -1000,19 +689,12 @@
                     Returns allocator used by the rtree.
                   </p>
                 </td>
-<td>
- </td>
-<td>
- <p>
- The allocator.
- </p>
- </td>
 </tr>
 </tbody>
 </table></div>
 <h6>
-<a name="geometry_index.r_tree.index.boost_geometry_index_rtree.h5"></a>
- <span><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.header"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.header">Header</a>
+<a name="geometry_index.r_tree.index.boost_geometry_index_rtree.h6"></a>
+ <span class="phrase"><a name="geometry_index.r_tree.index.boost_geometry_index_rtree.header"></a></span><a class="link" href="index.html#geometry_index.r_tree.index.boost_geometry_index_rtree.header">Header</a>
         </h6>
 <p>
           <code class="computeroutput"><span class="preprocessor">#include</span> <span class="special">&lt;.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>

Modified: sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/introduction.html
==============================================================================
--- sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/introduction.html (original)
+++ sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/introduction.html 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Introduction</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="up" href="../r_tree.html" title="R-tree">
 <link rel="prev" href="../r_tree.html" title="R-tree">
@@ -28,10 +28,10 @@
 </h3></div></div></div>
 <p>
         R-tree is a tree data structure used for spatial searching. It was proposed
- by Antonin Guttman in 1984 <sup>[<a name="geometry_index.r_tree.introduction.f0" href="#ftn.geometry_index.r_tree.introduction.f0" class="footnote">1</a>]</sup> as an expansion of B-tree for multi-dimensional data. It may
+ by Antonin Guttman in 1984 [1]</sup></a> as an expansion of B-tree for multi-dimensional data. It may
         be used to store points or volumetric data in order to perform a spatial
         query later. This query may return objects that are inside some area or are
- close to some point in space <sup>[<a name="geometry_index.r_tree.introduction.f1" href="#ftn.geometry_index.r_tree.introduction.f1" class="footnote">2</a>]</sup>.
+ close to some point in space [2]</sup></a>.
       </p>
 <p>
         The R-tree structure is presented on the image below. Each R-tree's node
@@ -51,7 +51,7 @@
       </p>
 <p>
         The R-tree is a self-balanced data structure. The key part of balancing algorithm
- is node splitting algorithm <sup>[<a name="geometry_index.r_tree.introduction.f2" href="#ftn.geometry_index.r_tree.introduction.f2" class="footnote">3</a>]</sup> <sup>[<a name="geometry_index.r_tree.introduction.f3" href="#ftn.geometry_index.r_tree.introduction.f3" class="footnote">4</a>]</sup>. Each algorithm produces different splits so the internal structure
+ is node splitting algorithm [3]</sup></a> [4]</sup></a>. Each algorithm produces different splits so the internal structure
         of a tree may be different for each one of them. In general more complex
         algorithms analyses elements better and produces less overlapping nodes.
         In the searching process less nodes must be traversed in order to find desired
@@ -180,7 +180,7 @@
 <p>
         Key features of this implementation of the R-tree are:
       </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
             capable to store arbitrary Value type,
           </li>
@@ -201,20 +201,20 @@
           </li>
 </ul></div>
 <div class="footnotes">
-<br><hr width="100" align="left">
-<div class="footnote"><p><sup>[<a id="ftn.geometry_index.r_tree.introduction.f0" href="#geometry_index.r_tree.introduction.f0" class="para">1</a>] </sup>
+<br><hr style="width:100; align:left;">
+<div id="ftn.geometry_index.r_tree.introduction.f0" class="footnote"><p>[1]
           Guttman, A. (1984). <span class="emphasis"><em>R-Trees: A Dynamic Index Structure for Spatial
           Searching</em></span>
         </p></div>
-<div class="footnote"><p><sup>[<a id="ftn.geometry_index.r_tree.introduction.f1" href="#geometry_index.r_tree.introduction.f1" class="para">2</a>] </sup>
+<div id="ftn.geometry_index.r_tree.introduction.f1" class="footnote"><p>[2]
           Cheung, K.; Fu, A. (1998). <span class="emphasis"><em>Enhanced Nearest Neighbour Search
           on the R-tree</em></span>
         </p></div>
-<div class="footnote"><p><sup>[<a id="ftn.geometry_index.r_tree.introduction.f2" href="#geometry_index.r_tree.introduction.f2" class="para">3</a>] </sup>
+<div id="ftn.geometry_index.r_tree.introduction.f2" class="footnote"><p>[3]
           Greene, D. (1989). <span class="emphasis"><em>An implementation and performance analysis
           of spatial data access methods</em></span>
         </p></div>
-<div class="footnote"><p><sup>[<a id="ftn.geometry_index.r_tree.introduction.f3" href="#geometry_index.r_tree.introduction.f3" class="para">4</a>] </sup>
+<div id="ftn.geometry_index.r_tree.introduction.f3" class="footnote"><p>[4]
           Beckmann, N.; Kriegel, H. P.; Schneider, R.; Seeger, B. (1990). <span class="emphasis"><em>The
           R*-tree: an efficient and robust access method for points and rectangles</em></span>
         </p></div>

Modified: sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/nearest_neighbours_queries.html
==============================================================================
--- sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/nearest_neighbours_queries.html (original)
+++ sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/nearest_neighbours_queries.html 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Nearest neighbours queries</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="up" href="../r_tree.html" title="R-tree">
 <link rel="prev" href="spatial_queries.html" title="Spatial queries">

Modified: sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/rtree_quickstart.html
==============================================================================
--- sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/rtree_quickstart.html (original)
+++ sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/rtree_quickstart.html 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Quick Start</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="up" href="../r_tree.html" title="R-tree">
 <link rel="prev" href="introduction.html" title="Introduction">
@@ -150,7 +150,7 @@
       </p>
 <h4>
 <a name="geometry_index.r_tree.rtree_quickstart.h0"></a>
- <span><a name="geometry_index.r_tree.rtree_quickstart.more"></a></span><a class="link" href="rtree_quickstart.html#geometry_index.r_tree.rtree_quickstart.more">More</a>
+ <span class="phrase"><a name="geometry_index.r_tree.rtree_quickstart.more"></a></span><a class="link" href="rtree_quickstart.html#geometry_index.r_tree.rtree_quickstart.more">More</a>
       </h4>
 <p>
         More information about the R-tree implementation, other algorithms and queries

Modified: sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/spatial_queries.html
==============================================================================
--- sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/spatial_queries.html (original)
+++ sandbox-branches/geometry/index/doc/html/geometry_index/r_tree/spatial_queries.html 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Spatial queries</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="up" href="../r_tree.html" title="R-tree">
 <link rel="prev" href="creation_and_modification.html" title="Creation and modification">

Modified: sandbox-branches/geometry/index/doc/html/index.html
==============================================================================
--- sandbox-branches/geometry/index/doc/html/index.html (original)
+++ sandbox-branches/geometry/index/doc/html/index.html 2013-01-07 16:08:48 EST (Mon, 07 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Chapter&#160;1.&#160;Geometry Index</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="index.html" title="Chapter&#160;1.&#160;Geometry Index">
 <link rel="next" href="geometry_index/introduction.html" title="Introduction">
 </head>
@@ -57,7 +57,7 @@
 </div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: January 07, 2013 at 04:43:31 GMT</small></p></td>
+<td align="left"><p><small>Last revised: January 07, 2013 at 21:06:41 GMT</small></p></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk