2014-08-21 23:42:59 +00:00
|
|
|
import data.nat data.prod
|
2014-09-03 23:00:38 +00:00
|
|
|
open nat prod
|
2014-08-21 23:42:59 +00:00
|
|
|
|
|
|
|
variable R : nat → nat → Prop
|
|
|
|
variable f (a b : nat) (H : R a b) : nat
|
|
|
|
axiom Rtrue (a b : nat) : R a b
|
|
|
|
|
|
|
|
|
|
|
|
check f 1 0 (Rtrue (pr1 (pair 1 0)) 0)
|