Skip to content

Commit 93cbf33

Browse files
committed
fix method name
1 parent 71e3cf5 commit 93cbf33

File tree

1 file changed

+1
-1
lines changed
  • src/gradient_free_optimizers/optimizers/global_opt/powells_method

1 file changed

+1
-1
lines changed

src/gradient_free_optimizers/optimizers/global_opt/powells_method/direction.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, position_1, position_2) -> None:
1414
self.position_1 = position_1
1515
self.position_2 = position_2
1616

17-
def get_position_on_vector(self, t):
17+
def get_new_position(self, t):
1818
"""
1919
Calculate a position on the line (vector) between two positions using parameter t.
2020

0 commit comments

Comments
 (0)