Skip to content

Commit

Permalink
add classes to modules
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBlanke committed Dec 29, 2023
1 parent 46d9611 commit cb9dbd2
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
12 changes: 12 additions & 0 deletions surfaces/machine_learning/machine_learning_functions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,15 @@
GradientBoostingRegressorFunction,
KNeighborsRegressorFunction,
)

__all__ = [
"KNeighborsClassifierFunction",
"GradientBoostingRegressorFunction",
"KNeighborsRegressorFunction",
]

all = [
KNeighborsClassifierFunction,
GradientBoostingRegressorFunction,
KNeighborsRegressorFunction,
]
19 changes: 19 additions & 0 deletions surfaces/test_functions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,22 @@
"McCormickFunction",
"BukinFunctionN6",
]

all = [
SphereFunction,
AckleyFunction,
RastriginFunction,
RosenbrockFunction,
BealeFunction,
HimmelblausFunction,
HölderTableFunction,
CrossInTrayFunction,
SimionescuFunction,
EasomFunction,
BoothFunction,
GoldsteinPriceFunction,
StyblinskiTangFunction,
MatyasFunction,
McCormickFunction,
BukinFunctionN6,
]

0 comments on commit cb9dbd2

Please sign in to comment.