test(tests/lean/run): define tree_list length function using recursive equations

tree_list is part of a mutually inductive datatype.
This commit is contained in:
Leonardo de Moura 2015-01-06 11:55:31 -08:00
parent 559ee3e3e1
commit fb1cb3c623

29
tests/lean/run/eq23.lean Normal file
View file

@ -0,0 +1,29 @@
open nat
inductive tree (A : Type) :=
leaf : A → tree A,
node : tree_list A → tree A
with tree_list :=
nil : tree_list A,
cons : tree A → tree_list A → tree_list A
namespace tree_list
definition len {A : Type} : tree_list A → nat,
len (nil A) := 0,
len (cons t l) := len l + 1
theorem len_nil {A : Type} : len (nil A) = 0 :=
rfl
theorem len_cons {A : Type} (t : tree A) (l : tree_list A) : len (cons t l) = len l + 1 :=
rfl
variables (A : Type) (t1 t2 t3 : tree A)
example : len (cons t1 (cons t2 (cons t3 (nil A)))) = 3 :=
rfl
print definition len
end tree_list