sig A { R: set A }
check {
{ Preorder[A,R]
} implies {
all x,y: A {
Below[A,R,x,y]
iff
y->x in R
}
}
} for 10 expect 0
Range Disjunction
BelowAR(SāŖT)yā”BelowARSyā§BelowARTy
sig A { R: set A }
sig S,T in A {}
check {
{ Preorder[A,R]
} implies {
all y: A {
Below[A,R,S+T,y]
iff
Below[A,R,S,y] and Below[A,R,T,y]
}
}
} for 10 expect 0
Empty Range
BelowARā yā”true
sig A { R: set A }
check {
{ Preorder[A,R]
} implies {
all y: A {
Below[A,R,none,y]
}
}
} for 10 expect 0