GreatestARYx
PreorderAR
IncludesAY
x∈Y
AboveARAx
Notation.
GreatestARYx can be written GreatestYx when A and R are clear from the context.
GreatestYx can be written x=maxY.
pred Greatest(A: set univ, R: univ->univ, Y: set univ, x: univ) {
Preorder[A,R]
Includes[A,Y]
x in Y
Above[A,R,A,x]
}
JoinARSx
AboveARSx
∀(y:AboveARSy:R.x.y)
pred Join(A: set univ, R: univ->univ, S: set univ, x: univ) {
Above[A,R,S,x]
all y: univ | Above[A,R,S,y] implies x->y in R
}
JoinARS
{x:JoinARSx}
fun Join(A: set univ, R: univ->univ, S: set univ) : set univ {
{ x: univ | Join[A,R,S,x] }
}