-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
From the documentation:
/**
* Create the tree from the given dataset. This copies the dataset to an
* internal copy, because tree-building modifies the dataset.
*
* @param data Dataset to build a tree for.
* @param naive Whether the computation should be done in O(n^2) naive mode.
* @param leafSize The leaf size to be used during tree construction.
*/
DualTreeBoruvka(const typename TreeType::Mat& dataset,
const bool naive = false,
const MetricType metric = MetricType());
The constructor does not allow leafSize as a parameter, even though the documentation says otherwise
Metadata
Metadata
Assignees
Labels
No labels