GRASS GIS 7 Programmer's Manual  7.9.dev(2021)-e5379bbd7
split.h
Go to the documentation of this file.
1 
2 /****************************************************************************
3 * MODULE: R-Tree library
4 *
5 * AUTHOR(S): Antonin Guttman - original code
6 * Daniel Green (green@superliminal.com) - major clean-up
7 * and implementation of bounding spheres
8 * Markus Metz - file-based and memory-based R*-tree
9 *
10 * PURPOSE: Multidimensional index
11 *
12 * COPYRIGHT: (C) 2010 by the GRASS Development Team
13 *
14 * This program is free software under the GNU General Public
15 * License (>=v2). Read the file COPYING that comes with GRASS
16 * for details.
17 *****************************************************************************/
18 
19 /*-----------------------------------------------------------------------------
20 | Definitions and global variables.
21 -----------------------------------------------------------------------------*/
22 
23 /* METHOD 0: R-Tree, quadratic split */
24 /* METHOD 1: R*-Tree split */
25 #define METHOD 1
26 
27 void RTreeInitPVars(struct RTree_PartitionVars *, int, int, struct RTree *);
void RTreeInitPVars(struct RTree_PartitionVars *, int, int, struct RTree *)
Definition: split.c:154
Definition: rtree.h:128