Skip to content

Commit

Permalink
eval
Browse files Browse the repository at this point in the history
  • Loading branch information
jrapin committed Jan 26, 2020
1 parent f495458 commit da0b33e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nevergrad/functions/functionlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def _multifunc(self, x: np.ndarray) -> np.ndarray:
def _monofunc(self, x: np.ndarray) -> float:
return float(np.sum(self._multifunc(x)))

def evalution_function(self, x: np.ndarray) -> float:
def evaluation_function(self, x: np.ndarray) -> float:
return self._monofunc(x)

@classmethod
Expand Down

0 comments on commit da0b33e

Please sign in to comment.