lean4-htt/tests/compiler/t4.lean.expected.out
Leonardo de Moura 4d2837430a fix(library/compiler/emit_cpp): tail call
Add temporary hack to fix `emit_tail_call`.
TODO: find a cleaner solution for the new IR compiler.
2019-05-21 23:07:10 -07:00

7 lines
169 B
Text

(x + (x * (x * (x + x))))
1 count: 9
(1 + ((x * ((2 * x) + (x + x))) + (x * (x + x))))
2 count: 10
((4 * x) + ((2 * x) + (x + (x + ((2 * x) + (x + x))))))
3 count: 1
12