This file is indexed.

/usr/include/astrometry/kdtree.h is in libastrometry-dev 0.70+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
/*
# This file is part of libkd.
# Licensed under a 3-clause BSD style license - see LICENSE
*/

#ifndef KDTREE_H
#define KDTREE_H

#include <stdio.h>
#include <stdint.h>

#define KDTREE_MAX_LEVELS 1000

#define KDT_INFTY_DOUBLE HUGE_VAL
#define KDT_INFTY_FLOAT  HUGE_VALF

enum kd_rangesearch_options {
	KD_OPTIONS_COMPUTE_DISTS    = 0x1,
	KD_OPTIONS_RETURN_POINTS    = 0x2,
	KD_OPTIONS_SORT_DISTS       = 0x4,
	KD_OPTIONS_SMALL_RADIUS     = 0x8,
	/* If both bounding box and splitting plane are available,
	   use splitting plane (default is bounding box)... */
	KD_OPTIONS_USE_SPLIT        = 0x10,
	/* If the tree is u32 and bounding boxes are being used and the
	   rangesearch only fits in 64 bits, use doubles instead of u64 in
	   the distance computation (default is to use u64).
	   (Likewise for u16/u32)
	*/
	KD_OPTIONS_NO_BIG_INT_MATH      = 0x20,
	/*
	  In bounding-box trees that also have a "splitdim" array,
	  do a quick check along the splitting dimension.
	*/
	KD_OPTIONS_SPLIT_PRECHECK   = 0x40,
	/*
	  In integer bounding-box trees, do an L1 distance pre-check.
	*/
	KD_OPTIONS_L1_PRECHECK      = 0x80,
	/*
	  Don't resize the kdtree_qres_t* result structure to take only the
	  space required (assume it's going to be reused and we're letting the
	  memory usage do the "high water mark" thing).
	*/
	KD_OPTIONS_NO_RESIZE_RESULTS = 0x100
};

enum kd_build_options {
	KD_BUILD_BBOX           = 0x1,
	KD_BUILD_SPLIT          = 0x2,
	/* Only applicable to integer trees: use a separate array to hold the
	   splitting dimension, rather than packing it into the bottom bits
	   of the splitting plane location. */
	KD_BUILD_SPLITDIM  = 0x4,
    KD_BUILD_NO_LR     = 0x8,
    /* Twiddle the split locations so that computing LR is O(1).
     Only works for double trees or int trees with KD_BUILD_SPLITDIM. */
    KD_BUILD_LINEAR_LR     = 0x10,
    // DEBUG
    KD_BUILD_FORCE_SORT    = 0x20,
    
};

typedef uint64_t u64;
typedef uint32_t u32;
typedef uint16_t u16;
typedef uint8_t  u8;

enum kd_types {
	KDT_NULL = 0,   // note, this MUST be 0 because it's used as a boolean value.
	KDT_DATA_NULL   = 0,
	KDT_DATA_DOUBLE = 0x1,
	KDT_DATA_FLOAT  = 0x2,
	KDT_DATA_U32    = 0x4,
	KDT_DATA_U16    = 0x8,
	KDT_TREE_NULL   = 0,
	KDT_TREE_DOUBLE = 0x100,
	KDT_TREE_FLOAT  = 0x200,
	KDT_TREE_U32    = 0x400,
	KDT_TREE_U16    = 0x800,
	KDT_EXT_NULL    = 0,
	KDT_EXT_DOUBLE  = 0x10000,
	KDT_EXT_FLOAT   = 0x20000
};
typedef enum kd_types kd_types;

#define KDT_DATA_MASK  0xf
#define KDT_TREE_MASK  0xf00
#define KDT_EXT_MASK   0x30000

/*
 Possible values for the "treetype" member.

  There are three relevant data type:
  (a) the type of the raw data;
  (b) the type used in the tree's bounding boxes and splitting planes;
  (c) the external type.

  These are called the "data", "tree", and "ext" types.
*/
enum kd_tree_types {
	KDTT_NULL = 0,

	/* "All doubles, all the time". */
	KDTT_DOUBLE = KDT_EXT_DOUBLE | KDT_DATA_DOUBLE | KDT_TREE_DOUBLE,

	/* "All floats, all the time". */
	KDTT_FLOAT  = KDT_EXT_FLOAT | KDT_DATA_FLOAT  | KDT_TREE_FLOAT,

	/* Data are "doubles", tree is u32.  aka inttree. */
	KDTT_DOUBLE_U32 = KDT_EXT_DOUBLE | KDT_DATA_DOUBLE | KDT_TREE_U32,

	/* Data are "doubles", tree is u16.  aka shorttree. */
	KDTT_DOUBLE_U16 = KDT_EXT_DOUBLE | KDT_DATA_DOUBLE | KDT_TREE_U16,

	/* Data and tree are "u32". */
	KDTT_DUU = KDT_EXT_DOUBLE | KDT_DATA_U32 | KDT_TREE_U32,

	/* Data and tree are "u16". */
	KDTT_DSS = KDT_EXT_DOUBLE | KDT_DATA_U16 | KDT_TREE_U16,

	KDTT_DDU = KDT_EXT_DOUBLE | KDT_DATA_DOUBLE | KDT_TREE_U32,
};

struct kdtree;
typedef struct kdtree kdtree_t;

struct kdtree_qres;
typedef struct kdtree_qres kdtree_qres_t;

struct kdtree_funcs {
	void* (*get_data)(const kdtree_t* kd, int i);
	void  (*copy_data_double)(const kdtree_t* kd, int start, int N, double* dest);
    double (*get_splitval)(const kdtree_t* kd, int nodeid);
    int (*get_bboxes)(const kdtree_t* kd, int node, void* bblo, void* bbhi);

    int (*check)(const kdtree_t* kd);
    void (*fix_bounding_boxes)(kdtree_t* kd);

    void  (*nearest_neighbour_internal)(const kdtree_t* kd, const void* query, double* bestd2, int* pbest);
	kdtree_qres_t* (*rangesearch)(const kdtree_t* kd, kdtree_qres_t* res, const void* pt, double maxd2, int options);

    void (*nodes_contained)(const kdtree_t* kd,
                            const void* querylow, const void* queryhi,
                            void (*callback_contained)(const kdtree_t* kd, int node, void* extra),
                            void (*callback_overlap)(const kdtree_t* kd, int node, void* extra),
                            void* cb_extra);

    //int (*node_node_mindist2_exceeds)(const kdtree_t* kd1, int node1, const kdtree_t* kd2, int node2, double maxd2);

    // instrumentation functions - set these to get callbacks about
    // the progress of the algorithm.

    // a node was enqueued to be searched during nearest-neighbour.
    void (*nn_enqueue)(const kdtree_t* kd, int nodeid, int place);
    // a node was pruned during nearest-neighbour.
    void (*nn_prune)(const kdtree_t* kd, int nodeid, double d2, double bestd2, int place);
    // a node is being explored during nearest-neighbour.
    void (*nn_explore)(const kdtree_t* kd, int nodeid, double d2, double bestd2);
    // a point is being examined during nearest-neighbour.
    void (*nn_point)(const kdtree_t* kd, int nodeid, int pointindex);
    // a new best point has been found.
    void (*nn_new_best)(const kdtree_t* kd, int nodeid, int pointindex, double d2);
};
typedef struct kdtree_funcs kdtree_funcs;


struct kdtree {
	/*
	  A bitfield describing the type of this tree.
	*/
	u32 treetype;

	int32_t* lr;            /* Points owned by leaf nodes, stored and manipulated
							 in a way that's too complicated to explain in this comment.
							 (nbottom) */
               
	u32* perm;           /* Permutation index / hairstyle from the 80s
                          (ndata) */

	/* Bounding box: list of D-dimensional lower hyperrectangle corner followed by
     D-dimensional upper corner.
     (ttype x ndim x nnodes) */
	union {
		float* f;
		double* d;
		u32* u;
		u16* s;
		void* any;
	} bb;
    // how many bounding-boxes were found?
    int n_bb;

	/* Split position (& dimension for ints) (ttype x ninterior). */
	union {
		float* f;
		double* d;
		u32* u;
		u16* s;
		void* any;
	} split;

	/* Split dimension for floating-point types (x ninterior) */
	u8* splitdim;

	/* bitmasks for the split dimension and location. */
	u8 dimbits;
	u32 dimmask;
	u32 splitmask;

	/* Raw coordinate data as xyzxyzxyz (dtype) */
	union {
		float* f;
		double* d;
		u32* u;
		u16* s;
		void* any;
	} data;

    /* Should the kdtree free(kd->data) when kdtree_free(kd) is called?

     Normally the kdtree does *not* free the data, unless the datatype
     had to be converted (if "external" type != "data" type) so that a
     new array had to be allocated.
     */
	int free_data;

	double* minval;
	double* maxval;
	double scale;    /* kdtype per real -- isotropic */
	double invscale; /* real per kdtype */

	int ndata;     /* Number of items */
	int ndim;      /* Number of dimensions */
	int nnodes;    /* Number of nodes */
	int nbottom;   /* Number of leaf nodes */
	int ninterior; /* Number of internal nodes */
	int nlevels;

    int has_linear_lr;

    // For i/o: the name of this tree in the file.
    char* name;

    void* io;

	struct kdtree_funcs fun;
};

struct kdtree_qres {
	unsigned int nres;
	unsigned int capacity; /* Allocated size. */
	union {
		double* d;
		float* f;
		u32* u;
		u16* s;
		void* any;
	} results;
	double *sdists;          /* Squared distance from query point */
	u32 *inds;    /* Indexes into original data set */
};

// Returns the number of data points in this kdtree.
int kdtree_n(const kdtree_t* kd);

// Returns the number of nodes in this kdtree.
int kdtree_nnodes(const kdtree_t* kd);

int kdtree_has_old_bb(const kdtree_t* kd);

double kdtree_get_conservative_query_radius(const kdtree_t* kd, double radius);

/* These functions return the number of bytes each entry in the kdtree is
 expected to have.  These return positive values EVEN IF THE ACTUAL array
 is NULL in the particular tree.  Ie, it answers the question "how big
 would the LR array for this tree be, if it had one?" */
size_t kdtree_sizeof_lr(const kdtree_t* kd);
size_t kdtree_sizeof_perm(const kdtree_t* kd);
size_t kdtree_sizeof_bb(const kdtree_t* kd);
size_t kdtree_sizeof_split(const kdtree_t* kd);
size_t kdtree_sizeof_splitdim(const kdtree_t* kd);
size_t kdtree_sizeof_data(const kdtree_t* kd);
size_t kdtree_sizeof_nodes(const kdtree_t* kd);

static inline int kdtree_exttype(const kdtree_t* kd) {
	return kd->treetype & KDT_EXT_MASK;
}

static inline int kdtree_datatype(const kdtree_t* kd) {
	return kd->treetype & KDT_DATA_MASK;
}

/*
  What type are my bounding boxes / split planes?
*/
static inline int kdtree_treetype(const kdtree_t* kd) {
	return kd->treetype & KDT_TREE_MASK;
}

void kdtree_memory_report(kdtree_t* kd);

kdtree_t* kdtree_new(int N, int D, int Nleaf);

void kdtree_print(kdtree_t* kd);

/*
  Reinitialize the table of function pointers "kd->fun".
*/
void kdtree_update_funcs(kdtree_t* kd);

void kdtree_set_limits(kdtree_t* kd, double* low, double* high);

void* kdtree_get_data(const kdtree_t* kd, int i);

void kdtree_copy_data_double(const kdtree_t* kd, int i, int N, double* dest);

const char* kdtree_kdtype_to_string(int kdtype);

const char* kdtree_build_options_to_string(int opts);

int kdtree_kdtype_parse_data_string(const char* str);
int kdtree_kdtype_parse_tree_string(const char* str);
int kdtree_kdtype_parse_ext_string(const char* str);

int kdtree_kdtypes_to_treetype(int exttype, int treetype, int datatype);

int kdtree_permute(const kdtree_t* tree, int ind);

/*
  Compute the inverse permutation of tree->perm and place it in "invperm".
 */
void kdtree_inverse_permutation(const kdtree_t* tree, int* invperm);

/* Free results */
void kdtree_free_query(kdtree_qres_t *res);

/* Free a tree; does not free kd->data */
void kdtree_free(kdtree_t *kd);

int kdtree_is_node_empty(const kdtree_t* kd, int nodeid);

int kdtree_is_leaf_node_empty(const kdtree_t* kd, int nodeid);

/* The leftmost point owned by this node. */
int kdtree_left(const kdtree_t* kd, int nodeid);

/* The rightmost point owned by this node. */
int kdtree_right(const kdtree_t* kd, int nodeid);

/* Shortcut kdtree_{left,right} for leaf nodes. */
int kdtree_leaf_right(const kdtree_t* kd, int nodeid);
int kdtree_leaf_left(const kdtree_t* kd, int nodeid);


/* How many points are owned by node "nodeid"? */
int kdtree_npoints(const kdtree_t* kd, int nodeid);

/*
  Returns the node index of the first/last leaf within the subtree
  rooted at "nodeid".
*/
int kdtree_first_leaf(const kdtree_t* kd, int nodeid);
int kdtree_last_leaf(const kdtree_t* kd, int nodeid);

/*
 Return the first and last node id (resp) of a given level in the
 tree.  The root is level 0.
 */
int kdtree_level_start(const kdtree_t* kd, int level);
int kdtree_level_end(const kdtree_t* kd, int level);

/*
 Returns the level of the given nodeid; 0=root.
 */
int kdtree_get_level(const kdtree_t* kd, int nodeid);

/*
 How many levels are in a tree with "Nnodes" nodes?

 A tree with one node (Nnodes = 1) has one level.
 */
int kdtree_nnodes_to_nlevels(int Nnodes);

/* Nearest neighbour: returns the index _in the kdtree_ of the nearest point;
 * the point is at  (kd->data + ind * kd->ndim)  and its permuted index is
 * (kd->perm[ind]).
 *
 * If "bestd2" is non-NULL, the distance-squared to the nearest neighbour
 * will be placed there.
 */
int kdtree_nearest_neighbour(const kdtree_t* kd, const void *pt, double* bestd2);

/* Nearest neighbour (if within a maximum range): returns the index
 * _in the kdtree_ of the nearest point, _if_ its distance is less than
 * maxd2.  (Otherwise, -1).
 *
 * If "bestd2" is non-NULL, the distance-squared to the nearest neighbour
 * will be placed there.
 */
int kdtree_nearest_neighbour_within(const kdtree_t* kd, const void *pt,
                                    double maxd2, double* bestd2);

/*
 * Finds the set of non-leaf nodes that are completely contained
 * within the given query rectangle, plus the leaf nodes that
 * overlap with the query.  (In other words, all nodes that overlap
 * the query, without recursing down to leaf nodes unnecessarily.)
 * Calls one of two callbacks for fully-contained and
 * partly-contained nodes.
 */
void kdtree_nodes_contained(const kdtree_t* kd,
							const void* querylow, const void* queryhi,
							void (*callback_contained)(const kdtree_t* kd, int node, void* extra),
							void (*callback_overlap)(const kdtree_t* kd, int node, void* extra),
							void* cb_extra);

#define KD_IS_LEAF(kd, i)       ((i) >= ((kd)->ninterior))
#define KD_IS_LEFT_CHILD(i)    ((i) & 1)
#define KD_PARENT(i)     (((i)-1)/2)
#define KD_CHILD_LEFT(i)  (2*(i)+1)
#define KD_CHILD_RIGHT(i)  (2*(i)+2)

/*
 * Copies the bounding box of the given node into the given arrays,
 * which are of the external type.
 *
 * Returns FALSE if the tree does not have bounding boxes.
 */
int kdtree_get_bboxes(const kdtree_t* kd, int node, void* bblo, void* bbhi);

double kdtree_get_splitval(const kdtree_t* kd, int nodeid);

int kdtree_get_splitdim(const kdtree_t* kd, int nodeid);

double kdtree_node_node_mindist2(const kdtree_t* kd1, int node1,
                                 const kdtree_t* kd2, int node2);

double kdtree_node_node_maxdist2(const kdtree_t* kd1, int node1,
                                 const kdtree_t* kd2, int node2);

int kdtree_node_node_mindist2_exceeds(const kdtree_t* kd1, int node1,
									   const kdtree_t* kd2, int node2,
									   double dist2);

int kdtree_node_node_maxdist2_exceeds(const kdtree_t* kd1, int node1,
									   const kdtree_t* kd2, int node2,
									   double dist2);

double kdtree_node_point_mindist2(const kdtree_t* kd, int node, const void* pt);

double kdtree_node_point_maxdist2(const kdtree_t* kd, int node, const void* pt);

int kdtree_node_point_mindist2_exceeds(const kdtree_t* kd, int node,
                                        const void* pt, double dist2);

int kdtree_node_point_maxdist2_exceeds(const kdtree_t* kd, int node,
                                        const void* pt, double dist2);


/* Sanity-check a tree. 0=okay. */
int kdtree_check(const kdtree_t* t);

void kdtree_fix_bounding_boxes(kdtree_t* kd);

#if 0
/* Range seach using callback */
void kdtree_rangesearch_callback(kdtree_t *kd, real *pt, real maxdistsquared,
								 void (*rangesearch_callback)(kdtree_t* kd, real* pt, real maxdist2, real* computed_dist2, int indx, void* extra),
								 void* extra);

/* Counts points within range. */
int kdtree_rangecount(kdtree_t* kd, real* pt, real maxdistsquared);

/* Output Graphviz .dot format version of the tree */
void kdtree_output_dot(FILE* fid, kdtree_t* kd);
#endif



// include dimension-generic versions of the dimension-specific code.
#define KD_DIM_GENERIC 1

#endif /* KDTREE_H */


#if defined(KD_DIM) || defined(KD_DIM_GENERIC)

#if defined(KD_DIM)
  #undef KDID
  #undef GLUE2
  #undef GLUE

  #define GLUE2(a, b) a ## b
  #define GLUE(a, b) GLUE2(a, b)
  #define KDID(x) GLUE(x ## _, KD_DIM)
#else
  #define KDID(x) x
#endif
#define KDFUNC(x) KDID(x)

/*
 kdtree_build()

 Build a tree from an array of data, of size N*D*sizeof(real).
   "options" is a bitfield of kd_build_options values.

 kd: NULL to allocate a new kdtree_t* structure, or the address of the
     structure in which to store the result.

 data: your N x D-dimensional data, stored in N-major direction:
    data[n*D + d] is the address of data item "n", dimension "d".
    If 3-dimensional data, eg, order is x0,y0,z0,x1,y1,z1,x2,y2,z2.

 N: number of vectors

 D: dimensionality of vectors

 Nleaf: number of element in a kd-tree leaf node.  Typical value would
    be about 32.

 treetype: if you data are doubles, KDTT_DOUBLE
           if you data are floats,  KDTT_FLOAT
     For fancier options, see kd_tree_types above.

 options: Specify one of:
   KD_BUILD_BBOX: keep a full bounding-box at each node;
   KD_BUILD_SPLIT: just keep the split dimension and value at each node.
   see kd_build_options above for additional fancy stuff.


 When you're done with your tree, kdtree_free() it.

*/
kdtree_t* KDFUNC(kdtree_build)
	 (kdtree_t* kd, void *data, int N, int D, int Nleaf,
	  int treetype, unsigned int options);


kdtree_t* KDFUNC(kdtree_build_2)
	 (kdtree_t* kd, void *data, int N, int D, int Nleaf,
	  int treetype, unsigned int options,
      double* minval, double* maxval);




/* Range seach for a single point.

 kdtree_rangesearch()

 kd: kd-tree object.

 pt: pointer to the query point -- the thing you are searching for.
 The data type of this depends on the "treetype" of the kd-tree.  For
 a KDTT_DOUBLE, it must be a D-dimensional array of doubles.  For
 KDTT_FLOAT, an array of floats.

 maxd2: maximum distance-squared of the search.

 The resulting kdtree_qres_t* object will be sorted by distance
 (nearest first), and you can get the results.  Again, the type
 depends on the kd-tree's "treetype"; for KDTT_DOUBLE, the "results.d"
 field contains the results; "nres" is the number of points within
 range.  "sdists" are the squared-distances, and "inds" are the
 indices of the matches.

 Free the query results with kdtree_free_query().
*/
kdtree_qres_t* KDFUNC(kdtree_rangesearch)(const kdtree_t *kd, const void *pt, double maxd2);

/*
 Like kdtree_rangesearch(), but don't sort the results by distance.
 */
kdtree_qres_t* KDFUNC(kdtree_rangesearch_nosort)(const kdtree_t *kd, const void *pt, double maxd2);

/*
 Like kdtree_rangesearch, but you get to call the shots; see
 kd_rangesearch_options for what the "options" are.
 */
kdtree_qres_t* KDFUNC(kdtree_rangesearch_options)(const kdtree_t *kd, const void *pt, double maxd2, int options);

/*
 Like kdtree_rangesearch_options, except reuse a kdtree_qres_t* from a
 previous call, to avoid a lot of freeing and allocating memory.
 */
kdtree_qres_t* KDFUNC(kdtree_rangesearch_options_reuse)(const kdtree_t *kd, kdtree_qres_t* res, const void *pt, double maxd2, int options);

#if !defined(KD_DIM)
#undef KD_DIM_GENERIC
#endif

#endif