Skip to content

Commit 065e3d6

Browse files
committed
[BUG] Add taped_interpolation_input as a propertly
1 parent 4d88363 commit 065e3d6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

gempy/core/data/geo_model.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ class GeoModel(BaseModel):
7171

7272
# endregion
7373
_solutions: Solutions = PrivateAttr(init=False, default=None) #: The computed solutions of the geological model.
74+
_taped_interpolation_input: InterpolationInput | None = PrivateAttr(default=None)
7475

7576
def __repr__(self):
7677
# TODO: Improve this
@@ -220,6 +221,14 @@ def interpolation_input_copy(self):
220221
def input_data_descriptor(self) -> InputDataDescriptor:
221222
# TODO: This should have the exact same dirty logic as interpolation_input
222223
return self.structural_frame.input_data_descriptor
224+
225+
@property
226+
def taped_interpolation_input(self) -> InterpolationInput:
227+
return self._taped_interpolation_input
228+
229+
@taped_interpolation_input.setter
230+
def taped_interpolation_input(self, value: InterpolationInput):
231+
self._taped_interpolation_input = value
223232

224233
# endregion
225234
# region Constructors

0 commit comments

Comments
 (0)