cgal/Spatial_searching
Niklas Hambüchen 3b6a821105 kd-tree: Deallocate Point pointer vector after build().
This

    vector<const Point_d*> data;

is no longer needed after being `.clear()`ed at the end of `build()`.
This can save a good amount of memory, a `Point_d*` on a 64-bit system
is 8 bytes; almost as large as a typical 3-float `Point_d`.

There's no point keeping its capacity, since any call to `build()`
will efficiently `.reserve()` it anyway.
2024-04-22 01:32:16 +02:00
..
benchmark/Spatial_searching Merge branch 'master' into CGAL-Clean_CMakeLists.txt-GF 2023-01-27 22:09:02 +01:00
doc/Spatial_searching Spatial Searching: Add example storing triangulation vertices 2023-11-27 12:51:20 +00:00
examples/Spatial_searching Adress warning 2023-12-01 11:20:12 +00:00
include/CGAL kd-tree: Deallocate Point pointer vector after build(). 2024-04-22 01:32:16 +02:00
package_info/Spatial_searching Commit all new dependencies files 2018-03-06 18:44:48 +01:00
test/Spatial_searching Merge pull request #6880 from soesau/PMP-tests_only_for_epeck-soesau 2023-01-27 21:02:26 +01:00
TODO use a uniform name for TODO files 2017-11-16 17:10:05 +01:00