08718e33dc
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))).
|