Skip to content

Commit

Permalink
update public-API
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBlanke committed Dec 31, 2023
1 parent 0b537b6 commit 92bb499
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions surfaces/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,12 @@

__version__ = "0.0.7"
__license__ = "MIT"

from .mathematical_functions import mathematical_functions
from .machine_learning_functions import machine_learning_functions


__all__ = [
"mathematical_functions",
"machine_learning_functions",
]
2 changes: 1 addition & 1 deletion surfaces/machine_learning_functions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"KNeighborsRegressorFunction",
]

all = [
machine_learning_functions = [
KNeighborsClassifierFunction,
GradientBoostingRegressorFunction,
KNeighborsRegressorFunction,
Expand Down
2 changes: 1 addition & 1 deletion surfaces/mathematical_functions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"ThreeHumpCamelFunction",
]

all = [
mathematical_functions = [
AckleyFunction,
BealeFunction,
BoothFunction,
Expand Down

0 comments on commit 92bb499

Please sign in to comment.