We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad7a3d2 commit f951d56Copy full SHA for f951d56
1 file changed
adaptive/learner/learnerND.py
@@ -219,8 +219,8 @@ def ip(self):
219
220
@property
221
def tri(self):
222
- """A `adaptive.learner.Triangulation` instance with all the points
223
- of the learner."""
+ """An `adaptive.learner.triangulation.Triangulation` instance
+ with all the points of the learner."""
224
if self._tri is not None:
225
return self._tri
226
@@ -230,8 +230,8 @@ def tri(self):
230
231
except ValueError:
232
# A ValueError is raised if we do not have enough points or
233
- # the provided points are coplanar, so we need more points to create
234
- # a valid triangulation
+ # the provided points are coplanar, so we need more points to
+ # create a valid triangulation
235
return None
236
237
0 commit comments