To be specific. For the example,
CONSTANT Foos
\* ...
variables x \in Foos, y \in Foos;
begin
print <<x, y>>;
end algorithm;
where Foos = {a, b} and declared symmetric.
Then only <<a, b>>, and <<a, a>> will be outputted. but not <<b, b>>.
Why is that?