first commit
This commit is contained in:
4
helix/functions.py
Normal file
4
helix/functions.py
Normal file
@@ -0,0 +1,4 @@
|
||||
def fequal(x, y, delta=1e-6):
|
||||
if x == y:
|
||||
return True
|
||||
return abs(x - y) < delta
|
||||
Reference in New Issue
Block a user