edit : isSame --> is_same.

pull/45/head
sadrasabouri 2021-10-07 09:25:53 +03:30
rodzic 3e0de846f7
commit 4666c5b3f5
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -134,5 +134,5 @@ def is_same_data(data1, data2, precision=10**-5):
:type precision: float
:return: True if they are the same
"""
isSame = map(lambda x, y: abs(x - y) < precision, data1, data2)
return all(isSame)
is_same = map(lambda x, y: abs(x - y) < precision, data1, data2)
return all(is_same)