57c0006916
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
11 lines
248 B
Text
11 lines
248 B
Text
import cast
|
|
variable Vector : Nat -> Type
|
|
variable n : Nat
|
|
variable v1 : Vector n
|
|
variable v2 : Vector (n + 0)
|
|
variable v3 : Vector (0 + n)
|
|
axiom H1 : v1 == v2
|
|
axiom H2 : v2 == v3
|
|
check htrans H1 H2
|
|
set_option pp::implicit true
|
|
check htrans H1 H2
|