Skip to content

Commit

Permalink
fixed typo in name
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasWeise committed Sep 27, 2024
1 parent 5513d4e commit 5ec6ad1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion moptipy/algorithms/so/ffa/eafea_c.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, op0: Op0, op1: Op1, log_h_tbl: bool = False) -> None:
:param op1: the unary search operator
:param log_h_tbl: should we log the H table?
"""
super().__init__("eafeaB", op0, op1)
super().__init__("eafeaC", op0, op1)
if not isinstance(log_h_tbl, bool):
raise type_error(log_h_tbl, "log_h_tbl", bool)
#: True if we should log the H table, False otherwise
Expand Down
2 changes: 1 addition & 1 deletion moptipy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from typing import Final

#: the version string of `moptipy`
__version__: Final[str] = "0.9.119"
__version__: Final[str] = "0.9.120"

0 comments on commit 5ec6ad1

Please sign in to comment.