GRASS 8 Programmer's Manual 8.6.0dev(2026)-8843f13794
Loading...
Searching...
No Matches
split.h
Go to the documentation of this file.
1/****************************************************************************
2 * MODULE: R-Tree library
3 *
4 * AUTHOR(S): Antonin Guttman - original code
5 * Daniel Green (green@superliminal.com) - major clean-up
6 * and implementation of bounding spheres
7 * Markus Metz - file-based and memory-based R*-tree
8 *
9 * PURPOSE: Multidimensional index
10 *
11 * SPDX-FileCopyrightText: 2010 GRASS Development Team
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 *****************************************************************************/
14
15/*-----------------------------------------------------------------------------
16| Definitions and global variables.
17-----------------------------------------------------------------------------*/
18
19/* METHOD 0: R-Tree, quadratic split */
20/* METHOD 1: R*-Tree split */
21#define METHOD 1
22
23void RTreeInitPVars(struct RTree_PartitionVars *, int, int, struct RTree *);
void RTreeInitPVars(struct RTree_PartitionVars *, int, int, struct RTree *)
Definition split.c:152
Definition rtree.h:120