Skip to content

Commit 16987c9

Browse files
author
Miguel de la Varga
committed
clean
1 parent df0f450 commit 16987c9

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

gempy_engine/API/dual_contouring/multi_scalar_dual_contouring.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ def dual_contouring_multi_scalar(
6868
)
6969

7070
# Process each scalar field
71-
all_active_cells = []
7271
all_stack_intersection = []
7372
all_valid_edges = []
7473
all_left_right_codes = []

tests/test_common/test_api/test_faults/test_one_fault.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_one_fault_model_pykeops(one_fault_model):
7676
A_matrix = yield_covariance(solver_input, options.kernel_options)
7777

7878

79-
def test_one_fault_model_thickness(one_fault_model, n_oct_levels=2):
79+
def test_one_fault_model_thickness(one_fault_model, n_oct_levels=5):
8080
interpolation_input: InterpolationInput
8181
structure: InputDataDescriptor
8282
options: InterpolationOptions
@@ -94,12 +94,12 @@ def test_one_fault_model_thickness(one_fault_model, n_oct_levels=2):
9494
# TODO: Grab second scalar and create fault kernel
9595
outputs: list[OctreeLevel] = solutions.octrees_output
9696

97-
if False:
97+
if True:
9898
plot_block_and_input_2d(0, interpolation_input, outputs, structure.stack_structure, ValueType.squeeze_mask)
9999
plot_block_and_input_2d(1, interpolation_input, outputs, structure.stack_structure, ValueType.squeeze_mask)
100100
plot_block_and_input_2d(2, interpolation_input, outputs, structure.stack_structure, ValueType.squeeze_mask)
101101

102-
if plot_pyvista or False:
102+
if plot_pyvista or True:
103103
helper_functions_pyvista.plot_pyvista(
104104
solutions.octrees_output,
105105
dc_meshes=solutions.dc_meshes

tests/test_common/test_modules/test_dual_II.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from tests.conftest import plot_pyvista
1010

1111

12-
def test_dual_contouring_on_fault_model(one_fault_model, n_oct_levels=5):
12+
def test_dual_contouring_on_fault_model(one_fault_model, n_oct_levels=4):
1313
interpolation_input: InterpolationInput
1414
structure: InputDataDescriptor
1515
options: InterpolationOptions

0 commit comments

Comments
 (0)