Hi,
What's the proper way of specifying any two different elements from a set? Currently I am doing something like this (i.e. check x = y in addition to real conditions)
Inv == /\ \A x, y \in Nodes: (x = y \/ values[x] \cap values[y] = {})
(values is not relevant here)
I'm curious, Is there a more concise way?
thanks.
Han