Is there a cleaner way of writing the following:
(a > b) and (a > c)
The following doesn't work, but this might illustrate the kind of thing I'm looking for:
a > [b, c]
One option, use max:
max
a > max(b, c)