I've read about and understand floating point round-off issues such as:
>>> sum([0.1] * 10) == 1.0
False
>>> 1.1 + 2.2 == 3.3
False
>>> sin(radians(45)) == sqrt(2) / 2
False
I also know how to work around these issues with math.isclose() and cmath.isclose().
The question is how to apply those work arounds to Python's match/case statement. I would like this to work:
match 1.1 + 2.2:
case 3.3:
print('hit!') # currently, this doesn't match
The key to the solution is to build a wrapper that overrides the
__eq__
method and replaces it with an approximate match:It creates approximate equality tests for both float values and complex values:
Here is how to use it in a match/case statement:
This outputs: