4ba097a141
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
6 lines
191 B
Text
6 lines
191 B
Text
import Int.
|
|
axiom PlusComm(a b : Int) : a + b == b + a.
|
|
variable a : Int.
|
|
check (Abst (fun x : Int, (PlusComm a x))).
|
|
setoption pp::implicit true.
|
|
check (Abst (fun x : Int, (PlusComm a x))).
|