048151487e
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
15 lines
615 B
Text
15 lines
615 B
Text
variable f : Type -> Bool
|
||
print forall a b : Type, (f a) = (f b)
|
||
variable g : Bool -> Bool -> Bool
|
||
print forall (a b : Type) (c : Bool), g c ((f a) = (f b))
|
||
print exists (a b : Type) (c : Bool), g c ((f a) = (f b))
|
||
print forall (a b : Type) (c : Bool), (g c (f a) = (f b)) -> (f a)
|
||
check forall (a b : Type) (c : Bool), g c ((f a) = (f b))
|
||
print ∀ (a b : Type) (c : Bool), g c ((f a) = (f b))
|
||
print ∀ a b : Type, (f a) = (f b)
|
||
print ∃ a b : Type, (f a) = (f b) ∧ (f a)
|
||
print ∃ a b : Type, (f a) = (f b) ∨ (f b)
|
||
variable a : Bool
|
||
print (f a) ∨ (f a)
|
||
print (f a) = a ∨ (f a)
|
||
print (f a) = a ∧ (f a)
|