<p>In <a href="https://github.com/mlpack/mlpack/pull/664#discussion_r65640904">src/mlpack/core/tree/rectangle_tree/discrete_hilbert_value.hpp</a>:</p>
<pre style='color:#555'>&gt; +
&gt; +  //! Return the largest Hilbert value
&gt; +  std::list&lt;arma::Col&lt;uint64_t&gt;&gt;::iterator LargestValue() const
&gt; +  { return largestValue; }
&gt; +
&gt; +  //! Modify the largest Hilbert value
&gt; +  std::list&lt;arma::Col&lt;uint64_t&gt;&gt;::iterator &amp;LargestValue()
&gt; +  { return largestValue; }
&gt; +
&gt; +  //! Modify the local dataset
&gt; +  std::list&lt;arma::Col&lt;uint64_t&gt;&gt; *LocalDataset() { return localDataset; }
&gt; +  //! Modify the dataset
&gt; +  arma::Mat&lt;uint64_t&gt; *Dataset() { return dataset; }
&gt; + private:
&gt; +  //! The dataset
&gt; +  arma::Mat&lt;uint64_t&gt; *dataset;
</pre>
<p>If I remember right, we had been discussing changing RectangleTree so it only uses the local dataset.  If we do that, this member will become unnecessary and you'd only need to use the localDataset in this class too.  But until we do that you should leave this how it is, I think. :)</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/ab890dff6b4b617b5309af53950c6cac97d994d6#r65640904">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe/AJ4bFA_L3pcVLymICZ7cWtpbjOiCucCvks5qH3NtgaJpZM4IrlzT">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AJ4bFEofIXaZBBFoB40MwDGGMQOdwzROks5qH3NtgaJpZM4IrlzT.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/ab890dff6b4b617b5309af53950c6cac97d994d6#r65640904"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>