[mlpack-git] [mlpack/mlpack] Universal B tree implementation (#746)

lozhnikov notifications at github.com
Thu Aug 25 11:52:30 EDT 2016


> +
> +template<typename BoundType, typename MatType = arma::mat>
> +class UBTreeSplit
> +{
> + public:
> +  //! The type of a one-dimensional address.
> +  typedef typename std::conditional<sizeof(typename MatType::elem_type) * CHAR_BIT <= 32,
> +                                    uint32_t,
> +                                    uint64_t>::type AddressElemType;
> +
> +  /**
> +   * This class performs the actual splitting i.e. it reorders the dataset.
> +   * This variable should be equal to true if the class does not perform the
> +   * actual splitting.
> +   */
> +  static constexpr bool NeedRearrangeDataset = false;

Oh.. I thought that could solve the problem with the overload, I've forgotten to remove that.

-- 
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/746/files/f17843fc8e8ef2b1c4b04d572c521575f20a1f3c#r76270770
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.cc.gatech.edu/pipermail/mlpack-git/attachments/20160825/dbedbad6/attachment.html>


More information about the mlpack-git mailing list