[mlpack-git] [mlpack/mlpack] Hilbert R tree (#664)

Ryan Curtin notifications at github.com
Thu Jun 2 20:21:01 EDT 2016


> +
> +  //! Return the largest Hilbert value
> +  std::list<arma::Col<uint64_t>>::iterator LargestValue() const
> +  { return largestValue; }
> +
> +  //! Modify the largest Hilbert value
> +  std::list<arma::Col<uint64_t>>::iterator &LargestValue()
> +  { return largestValue; }
> +
> +  //! Modify the local dataset
> +  std::list<arma::Col<uint64_t>> *LocalDataset() { return localDataset; }
> +  //! Modify the dataset
> +  arma::Mat<uint64_t> *Dataset() { return dataset; }
> + private:
> +  //! The dataset
> +  arma::Mat<uint64_t> *dataset;

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. :)

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/mlpack/mlpack/pull/664/files/ab890dff6b4b617b5309af53950c6cac97d994d6#r65640904
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.cc.gatech.edu/pipermail/mlpack-git/attachments/20160602/cecdebad/attachment.html>


More information about the mlpack-git mailing list