Skip to content

Commit 933a0dd

Browse files
authored
[BUG] fix docstrings of benchmark toy experiments (#171)
The docstrings of the benchmark toy experiments got broken accidentally. Quick merge due to problem on `main`.
1 parent b282691 commit 933a0dd

3 files changed

Lines changed: 0 additions & 6 deletions

File tree

src/hyperactive/experiment/bench/_ackley.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88

99
class Ackley(BaseExperiment):
10-
"""Ackley class."""
11-
1210
r"""Ackley function, common benchmark for optimization algorithms.
1311
1412
The Ackley function is a non-convex function used to test optimization algorithms.

src/hyperactive/experiment/bench/_parabola.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55

66

77
class Parabola(BaseExperiment):
8-
"""Parabola class."""
9-
108
r"""2D parabola, common benchmark for optimization algorithms.
119
1210
Parabola parameterized by the formula:

src/hyperactive/experiment/bench/_sphere.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88

99
class Sphere(BaseExperiment):
10-
"""Sphere class."""
11-
1210
r"""Simple Sphere function, common benchmark for optimization algorithms.
1311
1412
Sphere function parameterized by the formula:

0 commit comments

Comments
 (0)