2014-08-24 19:58:48 -07:00
|
|
|
import logic struc.function
|
2014-09-03 16:00:38 -07:00
|
|
|
open function num bool
|
2014-07-24 16:29:39 -07:00
|
|
|
|
|
|
|
|
|
|
|
variable f : num → bool
|
|
|
|
variable g : num → num
|
|
|
|
|
|
|
|
check f ∘ g ∘ g
|
|
|
|
|
|
|
|
check typeof id : num → num
|
|
|
|
check num → num ⟨is_typeof⟩ id
|
|
|
|
|
|
|
|
variable h : num → bool → num
|
|
|
|
|
|
|
|
check flip h
|
2014-07-28 19:58:57 -07:00
|
|
|
check flip h ff zero
|
2014-07-24 16:29:39 -07:00
|
|
|
|
2014-07-28 19:58:57 -07:00
|
|
|
check typeof flip h ff zero : num
|
2014-07-24 16:29:39 -07:00
|
|
|
|
|
|
|
variable f1 : num → num → bool
|
|
|
|
variable f2 : bool → num
|
|
|
|
|
2014-07-28 19:58:57 -07:00
|
|
|
check (f1 on f2) ff tt
|