Skip to content

Commit d88c6bd

Browse files
committed
fix: Remove unreliable __hash__ from ConfigurationSpace
1 parent ac906a4 commit d88c6bd

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/ConfigSpace/configuration_space.py

-4
Original file line numberDiff line numberDiff line change
@@ -822,10 +822,6 @@ def __eq__(self, other: Any) -> bool:
822822

823823
return NotImplemented
824824

825-
def __hash__(self) -> int:
826-
"""Override the default hash behavior (that returns the id or the object)."""
827-
return hash(self.__repr__())
828-
829825
def __repr__(self) -> str:
830826
retval = io.StringIO()
831827
retval.write("Configuration space object:\n Hyperparameters:\n")

0 commit comments

Comments
 (0)