Skip to content

Commit d4586b2

Browse files
committed
Increase error tolerance in backtracking.
1 parent 92a17bf commit d4586b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/texterrors_align.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ typedef int32_t int32;
1414

1515

1616
bool isclose(double a, double b) {
17-
return abs(a - b) < 0.0001;
17+
return abs(a - b) < 0.01;
1818
}
1919

2020
struct Pair {

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import setuptools
55
import sys
66

7-
__version__ = "1.0.9"
7+
__version__ = "1.0.10"
88

99

1010
class get_pybind_include(object):

0 commit comments

Comments
 (0)