Skip to content

Commit d564e0c

Browse files
committed
2D: remove data_combined
1 parent 5d122ba commit d564e0c

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

adaptive/learner/learner2D.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,6 @@ class Learner2D(BaseLearner):
248248
triangles will be stretched along ``x``, otherwise
249249
along ``y``.
250250
251-
Methods
252-
-------
253-
data_combined : dict
254-
Sampled points and values so far including
255-
the unknown interpolated points in `pending_points`.
256-
257251
Notes
258252
-----
259253
Adapted from an initial implementation by Pauli Virtanen.
@@ -408,13 +402,6 @@ def _data_combined(self):
408402
values_combined = np.vstack([values, values_interp])
409403
return points_combined, values_combined
410404

411-
def data_combined(self):
412-
"""Like `data`, however this includes the points in
413-
`pending_points` for which the values are interpolated."""
414-
# Interpolate the unfinished points
415-
points, values = self._data_combined()
416-
return {tuple(k): v for k, v in zip(points, values)}
417-
418405
def ip(self):
419406
"""Deprecated, use `self.interpolate()`"""
420407
return self.interpolate(scaled=True)

0 commit comments

Comments
 (0)