Skip to content

Commit d8bd904

Browse files
committed
[BUG] Disable voxel overlap check by setting condition to False
1 parent 16987c9 commit d8bd904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gempy_engine/API/dual_contouring/multi_scalar_dual_contouring.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def dual_contouring_multi_scalar(
134134

135135
# endregion
136136
# Check for repeated voxels across stacks
137-
if (options.debug or len(all_left_right_codes) > 1) and True:
137+
if (options.debug or len(all_left_right_codes) > 1) and False:
138138
voxel_overlaps = find_repeated_voxels_across_stacks(foo)
139139
if voxel_overlaps and options.debug:
140140
print(f"Found voxel overlaps between stacks: {voxel_overlaps}")

0 commit comments

Comments
 (0)