size of subdivison buffer now a parameter

This commit is contained in:
Paul M. Sutter 2025-05-22 09:13:19 -04:00
parent 8e6c9d3bed
commit 8730193e71
2 changed files with 7 additions and 9 deletions

View file

@ -46,20 +46,19 @@ logDir = os.path.join(workDir,"logs","example_observation")
# output directory for figures
# optimization: maximum number of parallel threads to use
numZobovThreads = 8
numZobovThreads = 1
# optimization: number of subdivisions of the volume
numZobovDivisions = 2
# buffer size (in fraction of the boz size) when sub-diving volumes
zobovBuffer = 0.1
# Maximum density for merging voids
# 0 (equivalent to infinitely large value) -> Merge everything (no threshold)
# 1e-9 (or smaller, but != 0) -> Do not merge anything
mergingThreshold = 1e-9
# when trimming away voids near the bounaries, what multiple of the radius to
# use for safety
boundaryTolerance = 1.0
# don't change this
dataSampleList = []