Closed chaburkland closed 2 years ago
Pretty sure this is a duplicate of #5. Note that these lines are not doing the same thing, and automap
's behavior is consistent with Python's built-in hash table types:
>>> {float("nan") for _ in range(3)}
{nan, nan, nan}
>>> {np.float64("nan") for _ in range(3)}
{nan, nan, nan}
>>> {np.nan for _ in range(3)}
{nan}
(Feel free to reopen if I missed something!)