Home
last modified time | relevance | path

Searched refs:max_bucket_size (Results 1 – 1 of 1) sorted by relevance

/petsc/src/vec/is/utils/
H A Dkdtree.c23 PetscInt max_bucket_size; // Maximum number of points stored at each leaf member
146 if (end - start <= tree->max_bucket_size) { in PetscKDTreeBuildStemAndLeaves()
236 …Int dim, const PetscReal coords[], PetscCopyMode copy_mode, PetscInt max_bucket_size, PetscKDTree … in PetscKDTreeCreate() argument
254 tree->max_bucket_size = max_bucket_size == PETSC_DECIDE ? 32 : max_bucket_size; in PetscKDTreeCreate()
281 PetscInt num_leaves = (PetscInt)PetscCeilInt64(num_coords, tree->max_bucket_size); in PetscKDTreeCreate()