2015-02-11 20:49:27 +00:00
|
|
|
VISIT auto_comp.lean
|
|
|
|
SYNC 8
|
|
|
|
prelude
|
2015-02-26 01:00:10 +00:00
|
|
|
inductive nat := zero : nat | succ : nat → nat
|
|
|
|
inductive bool := ff | tt
|
2015-02-11 20:49:27 +00:00
|
|
|
namespace nat
|
|
|
|
inductive le : nat → nat → Type.{0} := refl : Π a, le a a
|
|
|
|
|
|
|
|
end nat
|
|
|
|
|
|
|
|
WAIT
|
|
|
|
FINDP 6
|
|
|
|
rec_on
|
|
|
|
FINDP 8
|
|
|
|
rec_on
|