mirror of
https://github.com/opendatalab/MinerU.git
synced 2026-09-21 12:42:22 +08:00
9 lines
177 B
Python
9 lines
177 B
Python
def float_gt(a, b):
|
|
if 0.0001 >= abs(a -b):
|
|
return False
|
|
return a > b
|
|
|
|
def float_equal(a, b):
|
|
if 0.0001 >= abs(a-b):
|
|
return True
|
|
return False |