<p>In <a href="https://github.com/mlpack/mlpack/pull/664#discussion_r67956430">src/mlpack/core/tree/rectangle_tree/discrete_hilbert_value.hpp</a>:</p>
<pre style='color:#555'>&gt; +  const arma::Col&lt;HilbertElemType&gt;* ValueToInsert() const
&gt; +  { return valueToInsert; }
&gt; +
&gt; + private:
&gt; +  //! The number of bits that we can store
&gt; +  static constexpr size_t order = sizeof(HilbertElemType) * CHAR_BIT;
&gt; +  //! The local dataset
&gt; +  arma::Mat&lt;HilbertElemType&gt;* localDataset;
&gt; +  //! Indicates that the node owns the local dataset
&gt; +  bool ownsLocalDataset;
&gt; +  //! The number of values in the local dataset
&gt; +  size_t numValues;
&gt; +  //! The Hilbert value of the point that is being inserted
&gt; +  arma::Col&lt;HilbertElemType&gt;* valueToInsert;
&gt; +  //! Indicates that the node owns the valueToInsert 
&gt; +  bool ownsValueToInsert;
</pre>
<p><code>valueToInsert</code> should be the same for all nodes. I use this variable in order to avoid multiple computations of the Hilbert value of a point that is being inserted. Since all points can be inserted only at the root level I compute the Hilbert value in <code>HandlePointInsertion</code> if the parent of the node is NULL.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/mlpack/mlpack/pull/664/files/f9127cea62d5ce1ad8d5f59931de108a2f7cdd9b#r67956430">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe/AJ4bFC5Ht-DaMb8qK9qeiTUqPVpr1GBDks5qOFkmgaJpZM4IrlzT">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AJ4bFMTzUXlpz5gqoNoxykyc_CqqRetWks5qOFkmgaJpZM4IrlzT.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/mlpack/mlpack/pull/664/files/f9127cea62d5ce1ad8d5f59931de108a2f7cdd9b#r67956430"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>