forked from google/latexify_py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregression_test.py
281 lines (216 loc) · 7.3 KB
/
regression_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
"""End-to-end test cases of function."""
from __future__ import annotations
from collections.abc import Callable
import math
from typing import Any
from latexify import frontend
def _check_function(
fn: Callable[..., Any],
latex: str,
**kwargs,
) -> None:
"""Helper to check if the obtained function has the expected LaTeX form.
Args:
fn: Function to check.
latex: LaTeX form of `fn`.
**kwargs: Arguments passed to `frontend.function`.
"""
# Checks the syntax:
# @function
# def fn(...):
# ...
if not kwargs:
latexified = frontend.function(fn)
assert str(latexified) == latex
assert latexified._repr_latex_() == rf"$$ \displaystyle {latex} $$"
# Checks the syntax:
# @function(**kwargs)
# def fn(...):
# ...
latexified = frontend.function(**kwargs)(fn)
assert str(latexified) == latex
assert latexified._repr_latex_() == rf"$$ \displaystyle {latex} $$"
# Checks the syntax:
# def fn(...):
# ...
# latexified = function(fn, **kwargs)
latexified = frontend.function(fn, **kwargs)
assert str(latexified) == latex
assert latexified._repr_latex_() == rf"$$ \displaystyle {latex} $$"
def test_quadratic_solution() -> None:
def solve(a, b, c):
return (-b + math.sqrt(b**2 - 4 * a * c)) / (2 * a)
latex = r"\mathrm{solve}(a, b, c) = \frac{-b + \sqrt{b^{{2}} - {4} a c}}{{2} a}"
_check_function(solve, latex)
def test_sinc() -> None:
def sinc(x):
if x == 0:
return 1
else:
return math.sin(x) / x
latex = (
r"\mathrm{sinc}(x) = "
r"\left\{ \begin{array}{ll} "
r"{1}, & \mathrm{if} \ "
r"{x = {0}} \\ \frac{\sin{\left({x}\right)}}{x}, & \mathrm{otherwise} "
r"\end{array} \right."
)
_check_function(sinc, latex)
def test_x_times_beta() -> None:
def xtimesbeta(x, beta):
return x * beta
latex_without_symbols = r"\mathrm{xtimesbeta}(x, beta) = x beta"
_check_function(xtimesbeta, latex_without_symbols)
_check_function(xtimesbeta, latex_without_symbols, use_math_symbols=False)
latex_with_symbols = r"\mathrm{xtimesbeta}(x, {\beta}) = x {\beta}"
_check_function(xtimesbeta, latex_with_symbols, use_math_symbols=True)
def test_sum_with_limit_1arg() -> None:
def sum_with_limit(n):
return sum(i**2 for i in range(n))
latex = (
r"\mathrm{sum_with_limit}(n) = \sum_{i = {0}}^{{n - 1}}"
r" \mathopen{}\left({i^{{2}}}\mathclose{}\right)"
)
_check_function(sum_with_limit, latex)
def test_sum_with_limit_2args() -> None:
def sum_with_limit(a, n):
return sum(i**2 for i in range(a, n))
latex = (
r"\mathrm{sum_with_limit}(a, n) = \sum_{i = a}^{{n - 1}} "
r"\mathopen{}\left({i^{{2}}}\mathclose{}\right)"
)
_check_function(sum_with_limit, latex)
def test_sum_with_reducible_limit() -> None:
def sum_with_limit(n):
return sum(i for i in range(n + 1))
latex = (
r"\mathrm{sum_with_limit}(n) = \sum_{i = {0}}^{{n}} "
r"\mathopen{}\left({i}\mathclose{}\right)"
)
_check_function(sum_with_limit, latex)
def test_sum_with_irreducible_limit() -> None:
def sum_with_limit(n):
return sum(i for i in range(n * 3))
latex = (
r"\mathrm{sum_with_limit}(n) = \sum_{i = {0}}^{{n {3} - 1}} "
r"\mathopen{}\left({i}\mathclose{}\right)"
)
_check_function(sum_with_limit, latex)
def test_prod_with_limit_1arg() -> None:
def prod_with_limit(n):
return math.prod(i**2 for i in range(n))
latex = (
r"\mathrm{prod_with_limit}(n) = "
r"\prod_{i = {0}}^{{n - 1}} \mathopen{}\left({i^{{2}}}\mathclose{}\right)"
)
_check_function(prod_with_limit, latex)
def test_prod_with_limit_2args() -> None:
def prod_with_limit(a, n):
return math.prod(i**2 for i in range(a, n))
latex = (
r"\mathrm{prod_with_limit}(a, n) = "
r"\prod_{i = a}^{{n - 1}} \mathopen{}\left({i^{{2}}}\mathclose{}\right)"
)
_check_function(prod_with_limit, latex)
def test_prod_with_reducible_limits() -> None:
def prod_with_limit(n):
return math.prod(i for i in range(n - 1))
latex = (
r"\mathrm{prod_with_limit}(n) = "
r"\prod_{i = {0}}^{{n - {2}}} \mathopen{}\left({i}\mathclose{}\right)"
)
_check_function(prod_with_limit, latex)
def test_prod_with_irreducible_limit() -> None:
def prod_with_limit(n):
return math.prod(i for i in range(n * 3))
latex = (
r"\mathrm{prod_with_limit}(n) = "
r"\prod_{i = {0}}^{{n {3} - 1}} \mathopen{}\left({i}\mathclose{}\right)"
)
_check_function(prod_with_limit, latex)
def test_nested_function() -> None:
def nested(x):
return 3 * x
_check_function(nested, r"\mathrm{nested}(x) = {3} x")
def test_double_nested_function() -> None:
def nested(x):
def inner(y):
return x * y
return inner
_check_function(nested(3), r"\mathrm{inner}(y) = x y")
def test_use_raw_function_name() -> None:
def foo_bar():
return 42
_check_function(foo_bar, r"\mathrm{foo_bar}() = {42}")
_check_function(
foo_bar,
r"\mathrm{foo_bar}() = {42}",
use_raw_function_name=False,
)
_check_function(
foo_bar,
r"\mathrm{foo\_bar}() = {42}",
use_raw_function_name=True,
)
def test_reduce_assignments() -> None:
def f(x):
a = x + x
return 3 * a
_check_function(
f,
r"\begin{array}{l} a = x + x \\ \mathrm{f}(x) = {3} a \end{array}",
)
_check_function(
f,
r"\mathrm{f}(x) = {3} \mathopen{}\left( x + x \mathclose{}\right)",
reduce_assignments=True,
)
def test_reduce_assignments_double() -> None:
def f(x):
a = x**2
b = a + a
return 3 * b
latex_without_option = (
r"\begin{array}{l} "
r"a = x^{{2}} \\ "
r"b = a + a \\ "
r"\mathrm{f}(x) = {3} b "
r"\end{array}"
)
_check_function(f, latex_without_option)
_check_function(f, latex_without_option, reduce_assignments=False)
_check_function(
f,
r"\mathrm{f}(x) = {3} \mathopen{}\left( x^{{2}} + x^{{2}} \mathclose{}\right)",
reduce_assignments=True,
)
def test_reduce_assignments_with_if() -> None:
def sigmoid(x):
p = 1 / (1 + math.exp(-x))
n = math.exp(x) / (math.exp(x) + 1)
if x > 0:
return p
else:
return n
_check_function(
sigmoid,
(
r"\mathrm{sigmoid}(x) = \left\{ \begin{array}{ll} "
r"\frac{{1}}{{1} + \exp{\left({-x}\right)}}, & "
r"\mathrm{if} \ {x > {0}} \\ "
r"\frac{\exp{\left({x}\right)}}{\exp{\left({x}\right)} + {1}}, & "
r"\mathrm{otherwise} "
r"\end{array} \right."
),
reduce_assignments=True,
)
def test_sub_bracket() -> None:
def solve(a, b):
return ((a + b) - b) / (a - b) - (a + b) - (a - b) - (a * b)
latex = (
r"\mathrm{solve}(a, b) = "
r"\frac{a + b - b}{a - b} - \mathopen{}\left( "
r"a + b \mathclose{}\right) - \mathopen{}\left( "
r"a - b \mathclose{}\right) - a b"
)
_check_function(solve, latex)