Skip to content

Commit 4c1aed9

Browse files
committed
[TEST] Fixing some tests in gempy by correcting a dataclass and make by default not to compute gradient of the scalar field
1 parent eae9d05 commit 4c1aed9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

gempy_engine/core/data/options/interpolation_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __init__(
4848
number_octree_levels: int = 1,
4949
kernel_function: AvailableKernelFunctions = AvailableKernelFunctions.cubic,
5050
mesh_extraction: bool = True,
51-
compute_scalar_gradient: bool = True,
51+
compute_scalar_gradient: bool = False,
5252
compute_condition_number: bool = False,
5353
):
5454

gempy_engine/core/data/regular_grid.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
import numpy as np
55

6-
from .transforms import Transform
76
from ..utils import _check_and_convert_list_to_array, cast_type_inplace
87
from .kernel_classes.server.input_parser import GridSchema
98

0 commit comments

Comments
 (0)