11"""
2- FullGridCellList(; min_corner, max_corner, search_radius = 0.0,
3- periodicity = false, backend = DynamicVectorOfVectors{Int32},
2+ FullGridCellList(; min_corner, max_corner,
3+ search_radius = zero(eltype(min_corner)),
4+ backend = DynamicVectorOfVectors{Int32},
45 max_points_per_cell = 100)
56
67A simple cell list implementation where each (empty or non-empty) cell of a rectangular
@@ -15,12 +16,8 @@ See [`copy_neighborhood_search`](@ref) for more details.
1516# Keywords
1617- `min_corner`: Coordinates of the domain corner in negative coordinate directions.
1718- `max_corner`: Coordinates of the domain corner in positive coordinate directions.
18- - `search_radius = 0.0`: Search radius of the neighborhood search, which will determine the
19- cell size. Use the default of `0.0` to create a template (see above).
20- - `periodicity = false`: Set to `true` when using a [`PeriodicBox`](@ref) with the
21- neighborhood search. When using [`copy_neighborhood_search`](@ref),
22- this option can be ignored an will be set automatically depending
23- on the periodicity of the neighborhood search.
19+ - `search_radius`: Search radius of the neighborhood search, which will determine the
20+ cell size. Use the default of zero to create a template (see above).
2421- `backend = DynamicVectorOfVectors{Int32}`: Type of the data structure to store the actual
2522 cell lists. Can be
2623 - `Vector{Vector{Int32}}`: Scattered memory, but very memory-efficient.
0 commit comments