lean4-htt/tests/lean/run/mutwf3.lean
2021-10-06 16:38:42 -07:00

33 lines
754 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.

mutual
def f : Nat → ααα
| 0, a, b => a
| n, a, b => g a n b |>.1
def g : α → Nat → α → (α × α)
| a, 0, b => (a, b)
| a, n, b => (h a b n, a)
def h : αα → Nat → α
| a, b, 0 => b
| a, b, n+1 => f n a b
end
termination_by
invImage
(fun
| Sum.inl ⟨_, n, _, _⟩ => (n, 2)
| Sum.inr <| Sum.inl ⟨_, _, n, _⟩ => (n, 1)
| Sum.inr <| Sum.inr ⟨_, _, _, n⟩ => (n, 0))
(Prod.lex sizeOfWFRel sizeOfWFRel)
decreasing_by
simp [invImage, InvImage, Prod.lex, sizeOfWFRel, measure, Nat.lt_wfRel]
first
| apply Prod.Lex.left
apply Nat.lt_succ_self
| apply Prod.Lex.right
decide
#eval f 5 'a' 'b'
#print f
#print g
#print h
#print f._unary._mutual