Skip to content

Commit 7de4c72

Browse files
v0.0.10 Debug return val y
1 parent fe722e3 commit 7de4c72

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "spotPython"
10-
version = "0.0.9"
10+
version = "0.0.10"
1111
authors = [
1212
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
1313
]

src/spotPython/spot/spot.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,8 @@ def run(self):
294294
else:
295295
X_all = X0
296296
self.y = self.fun(X=X_all, fun_control=self.fun_control)
297+
# TODO: Error if only nan values are returned
298+
logger.debug("New y value: %s", self.y)
297299
self.X, self.y = remove_nan(self.X, self.y)
298300
self.update_stats()
299301
# (S-4): Imputation:

0 commit comments

Comments
 (0)