The question is about the boost::geometry::index::rtree
:
I know that the constructor: rtree(Iterator, Iterator)
will create the tree using the packing algorithm, as stated in the documentation. I'm wondering whether the insertion which accepts the iterators: insert(Iterator, Iterator)
will also use the packing algorithm.
Thanks.