BKDConfig

data class BKDConfig(val numDims: Int, val numIndexDims: Int, val bytesPerDim: Int, val maxPointsInLeafNode: Int)

Basic parameters for indexing points on the BKD tree.

Parameters

numDims

How many dimensions we are storing at the leaf (data) node

numIndexDims

How many dimensions we are indexing in the internal nodes

bytesPerDim

How many bytes each value in each dimension takes.

maxPointsInLeafNode

max points allowed on a Leaf block

Constructors

Link copied to clipboard
constructor(numDims: Int, numIndexDims: Int, bytesPerDim: Int, maxPointsInLeafNode: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

(numDims * bytesPerDim) + Integer.BYTES (packedBytesLength plus docID size)

Link copied to clipboard

numDims * bytesPerDim

Link copied to clipboard

numIndexDims * bytesPerDim