Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions autoarray/preloads.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,16 @@ def __init__(
inversion, with the other component being the pixelization's pixels. These are fixed when the lens light
is fixed to the maximum likelihood solution, allowing the blurred mapping matrix to be preloaded, but
the intensity values will still be solved for during the inversion.
use_voronoi_areas
Whether to use Voronoi areas during Delaunay triangulation. When True, computes areas for each Voronoi
region which can be used in certain regularization schemes. Default is True.
areas_factor
Factor used to scale the Voronoi areas during split point computation. Default is 0.5.
skip_areas
Whether to skip Voronoi area calculations and split point computations during Delaunay triangulation.
When True, the Delaunay interface returns only the minimal set of outputs (points, simplices, mappings)
without computing split_points or splitted_mappings. This optimization is useful for regularization
schemes like Matérn kernels that don't require area-based calculations. Default is False.
"""
self.mapper_indices = None
self.source_pixel_zeroed_indices = None
Expand Down