lean4-htt/tests/lean/div_eqn.lean.expected.out
Leonardo de Moura 438ce08748 feat(library/equations_compiler/util): cleanup equation rhs
The idea is to remove hints used to define a function by well founded
recursion. See new div_eqn.lean test for an example.
2017-05-25 13:09:13 -07:00

1 line
96 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Div.equations._eqn_1 : ∀ (x y : ), Div x y = ite (0 < y ∧ y ≤ x) (Div (x - y) y + 1) 0