From f11558bcb45bb0a336d7a7e2315fccda90ed39ed Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Mon, 30 Sep 2024 11:48:20 -0400 Subject: [PATCH] Update documentation about the examples, hopefully clarifying a little bit. --- doc/user/core/trees/ball_tree.md | 4 ++-- doc/user/core/trees/binary_space_tree.md | 4 ++-- doc/user/core/trees/kdtree.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/user/core/trees/ball_tree.md b/doc/user/core/trees/ball_tree.md index 0c6e1a9475..8fa789a5c1 100644 --- a/doc/user/core/trees/ball_tree.md +++ b/doc/user/core/trees/ball_tree.md @@ -449,8 +449,8 @@ std::cout << std::endl; --- -Build two `BallTree`s on subsets of the corel dataset and compute various -bounding quantities. +Build two `BallTree`s on subsets of the corel dataset and compute minimum and +maximum distances between different nodes in the tree. ```c++ // See https://datasets.mlpack.org/corel-histogram.csv. diff --git a/doc/user/core/trees/binary_space_tree.md b/doc/user/core/trees/binary_space_tree.md index d1a07ff8b0..046e3ee857 100644 --- a/doc/user/core/trees/binary_space_tree.md +++ b/doc/user/core/trees/binary_space_tree.md @@ -1376,8 +1376,8 @@ std::cout << "Center of tree: " << center.t(); --- -Build two `BinarySpaceTree`s on subsets of the corel dataset and compute various -bounding quantities. +Build two `BinarySpaceTree`s on subsets of the corel dataset and compute minimum +and maximum distances between different nodes in the tree. ```c++ // See https://datasets.mlpack.org/corel-histogram.csv. diff --git a/doc/user/core/trees/kdtree.md b/doc/user/core/trees/kdtree.md index 417aa72c76..65beda411b 100644 --- a/doc/user/core/trees/kdtree.md +++ b/doc/user/core/trees/kdtree.md @@ -443,8 +443,8 @@ std::cout << "Center of kd-tree: " << center.t(); --- -Build two `KDTree`s on subsets of the corel dataset and compute various -bounding quantities. +Build two `KDTree`s on subsets of the corel dataset and compute minimum and +maximum distances between different nodes in the tree. ```c++ // See https://datasets.mlpack.org/corel-histogram.csv.