Check if fractal volume starts beyond upper bound

这个提交包含在:
Nathan Mannall
2025-04-29 13:47:05 +01:00
父节点 4882927c4b
当前提交 51abdf31c0

查看文件

@@ -261,7 +261,9 @@ class MPIFractalVolume(FractalVolume):
# The size of a fractal volume can increase if a Fractal Surface
# is attached. Hence the check needs to happen here once that
# has happened.
if any(self.stop < 0):
# TODO: Check if this should be any(self.start > self.upper_bound)
# or any(self.start >= self.upper_bound)
if any(self.stop < 0) or any(self.start > self.upper_bound):
self.comm.Split(MPI.UNDEFINED)
return False
else: