From e12b371451314bdf4e6ce82fbb7501f7693e1d48 Mon Sep 17 00:00:00 2001 From: Bill Huang Date: Tue, 26 Mar 2024 15:40:32 +0800 Subject: [PATCH] fix: typo --- src/evox/core/problem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/evox/core/problem.py b/src/evox/core/problem.py index 918de677..9ec44b5a 100644 --- a/src/evox/core/problem.py +++ b/src/evox/core/problem.py @@ -8,7 +8,7 @@ class Problem(Stateful): """Base class for all algorithms""" - stateful_functions = ["evalutate"] + stateful_functions = ["evaluate"] def evaluate(self, state: State, pop: jax.Array) -> Tuple[jax.Array, State]: """Evaluate the fitness at given points